menu_local_tabs()
Returns a renderable element for the primary and secondary tabs.
Related topics
- Menu system
- Define the navigation menus, local actions and tasks, and contextual links.
File
- core/includes/menu.inc, line 146
- API for the Drupal menu system.
Code
1 2 3 4 5 6 7 8 | function menu_local_tabs() { $build = array ( '#theme' => 'menu_local_tasks' , '#primary' => menu_primary_local_tasks(), '#secondary' => menu_secondary_local_tasks(), ); return ! empty ( $build [ '#primary' ]) || ! empty ( $build [ '#secondary' ]) ? $build : array (); } |
Please login to continue.