You are here

function theme_blockify_menu_local_tasks in Blockify 7

Same name and namespace in other branches
  1. 8 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>';
  }
}