You are here

function theme_delta_blocks_action_links in Delta 7.3

Returns the rendered action items.

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

File

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

Code

function theme_delta_blocks_action_links($variables) {
  $actions = render($variables['action_links']);
  if (!empty($actions)) {
    return '<div id="action-links" class="clearfix"><ul class="action-links">' . $actions . '</ul></div>';
  }
}