function theme_blockify_menu_local_tasks in Blockify 8
Same name and namespace in other branches
- 7 blockify.theme.inc \theme_blockify_menu_local_tasks()
Returns the rendered menu local tasks.
1 theme call to theme_blockify_menu_local_tasks()
- blockify_get_content in ./
blockify.module - Provides individual block content.
File
- ./
blockify.theme.inc, line 131 - Theme functions for the Blockify module.
Code
function theme_blockify_menu_local_tasks($variables) {
$tabs = theme('menu_local_tasks', $variables);
if (!empty($tabs)) {
return '<div id="tabs" class="clearfix">' . $tabs . '</div>';
}
}