Git Product home page Git Product logo

Comments (6)

rvanlaak avatar rvanlaak commented on May 25, 2024

Yes, you can add as many annotations per action as you want.

from apybreadcrumbtrailbundle.

rvanlaak avatar rvanlaak commented on May 25, 2024

Yes, you can add as many annotations per action as you want. You can see examples here: https://github.com/Abhoryo/APYBreadcrumbTrailBundle/blob/master/Resources/doc/annotation_configuration.md#basic-example

from apybreadcrumbtrailbundle.

mssimi avatar mssimi commented on May 25, 2024

Sorry, that is not what I need.

`

  • @route("/edit/{id}" ,name="_admin_product_edit", defaults={"clone" = false})
  • @breadcrumb("product.edit")
  • @route("/clone/{id}" ,name="_admin_product_clone", defaults={"clone" = true})
  • @breadcrumb("product.clone")

public function editAction(Request $request, Product $product, $clone) {
`

When I open /edit/1 I want to see breadcrumb "product.edit"
When I open /clone/1 I want to see breadcrumb "product.clone"

from apybreadcrumbtrailbundle.

rvanlaak avatar rvanlaak commented on May 25, 2024

No not possible via annotations given that they are cached, but handling two things (eg edit / clone) via a single action is a bad practice.

You can directly call the service in your action if you'd like:

$this->get('apy_breadcrumb_trail')->add('breadcrumb.product_clone');

from apybreadcrumbtrailbundle.

mssimi avatar mssimi commented on May 25, 2024

Why do you think it is bad practice since code for edit/clone is exactly same except one condition where I copy object. I think much worse practice is having two actions with same code.

from apybreadcrumbtrailbundle.

rvanlaak avatar rvanlaak commented on May 25, 2024

Think of seperation of concerns; you could easily refactor boilerplate code to a shared private function in the controller. Eventually it are two different actions right? Each action could have its own route and annotation.

from apybreadcrumbtrailbundle.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.