function menu_local_actions
7.x menu.inc | menu_local_actions() |
Returns the rendered local actions at the current level.
Related topics
1 call to menu_local_actions()
- template_preprocess_page in drupal-7.x/
includes/ theme.inc - Preprocess variables for page.tpl.php
File
- drupal-7.x/
includes/ menu.inc, line 2245 - API for the Drupal menu system.
Code
function menu_local_actions() {
$links = menu_local_tasks();
return $links['actions']['output'];
}