You are here

function theme_delta_blocks_tabs in Delta 7.3

Returns the rendered menu local tasks.

1 theme call to theme_delta_blocks_tabs()
delta_blocks_get_content in delta_blocks/delta_blocks.module
Provides individual block content.

File

delta_blocks/includes/delta_blocks.theme.inc, line 187
Theme functions for the Delta blocks module.

Code

function theme_delta_blocks_tabs($variables) {
  $tabs = theme('menu_local_tasks', $variables);
  if (!empty($tabs)) {
    return '<div id="tabs" class="clearfix">' . $tabs . '</div>';
  }
}