| 1 menu.inc | menu_primary_local_tasks() | 
Returns the rendered local tasks at the top level.
Related topics
File
- core/includes/ menu.inc, line 2401 
- API for the Backdrop menu system.
Code
function menu_primary_local_tasks() {
  $links = menu_local_tasks(0);
  // Do not display single tabs.
  return ($links['tabs']['count'] > 1 ? $links['tabs']['output'] : '');
}
