You are here

function theme_blockify_local_actions in Blockify 7

Same name and namespace in other branches
  1. 8 blockify.theme.inc \theme_blockify_local_actions()

Returns the rendered action items.

1 theme call to theme_blockify_local_actions()
blockify_get_content in ./blockify.module
Provides individual block content.

File

./blockify.theme.inc, line 110
Theme functions for the Blockify module.

Code

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