Created
January 4, 2013 23:56
-
-
Save micahw156/4458608 to your computer and use it in GitHub Desktop.
Add node delete links to tabs and context menus in Drupal 7.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Implements hook_menu_alter(). | |
*/ | |
function mysite_menu_alter(&$items) { | |
$items['node/%node/delete']['type'] = MENU_LOCAL_TASK; | |
$items['node/%node/delete']['context'] = MENU_CONTEXT_PAGE | MENU_CONTEXT_INLINE; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment