menu_primary_local_tasks()
drupal/includes/menu.inc, line 1943
Returns the rendered local tasks at the top level.
| Name | Description |
|---|---|
| Menu system | Define the navigation menus, and route page requests to code based on URLs. |
function menu_primary_local_tasks() {
$links = menu_local_tasks(0);
// Do not display single tabs.
return ($links['tabs']['count'] > 1 ? $links['tabs']['output'] : '');
}