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