Posted by Benjamin S on January 20, 2011 at 3:39pm
3 followers
Jump to:
| Project: | Custom Breadcrumbs |
| Version: | 7.x-2.x-dev |
| Component: | Code |
| Category: | feature request |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | active |
Issue Summary
Is it possible to have the breadcrumb also on the edit of the node?
I search a patch like in http://drupal.org/node/303178 or just a workaround for the new Version 2.0.
Comments
#1
ok, now I use a workaround.
I add for each Content-Type an Custom Breadcrumb for Path with the specific path:
*/edit
For the Breadcrumb visibility I insert:
return ((node_load((int)str_replace(array('/','node','edit') ,'',$_SERVER["REQUEST_URI"]))->type) == 'news');
now I can insert the Titles an Paths.
works for me;-)
#2
I´m looking for the same kind of solution - especially for the user-profile-edit pages...
Maybe interesting: I already have the modules "me" (me-aliases) and content_profile in place... and now I need to change the breadcrumbs for the /user/[nid]/edit or /user/myaccount/edit pages.
Apart from using the version with the [nid] or the "myaccount" replacement I expected, that I could simply set up the breadcrumb for /user/*/edit (and others for user/*/edit/profile etc.) with the placeholder "*"...
Breadcrumbs for paths works perfectly for /user/myaccount but not for the user/*/edit or user/*/edit/*.
[edit]
aaaaaah.
took me a minute to find the "Use wildcard pattern matching in paths" in the settings... ok... that needs to be checked to make it work...
#3
Is there an equivalent solution for Drupal 7? Specifically the 7.x-2.x-dev branch? I haven't seen anything that could duplicate this functionality.