You are here

function theme_current_search_group_title in Facet API 7

Same name and namespace in other branches
  1. 6.3 contrib/current_search/current_search.theme.inc \theme_current_search_group_title()
  2. 7.2 contrib/current_search/current_search.theme.inc \theme_current_search_group_title()

Returns HTML for the group list title.

Parameters

$variables: An associative array containing:

  • title: The title of the group list.
1 theme call to theme_current_search_group_title()
CurrentSearchGroup::execute in contrib/current_search/plugins/current_search/item_group.inc
Implements CurrentSearchItem::execute().

File

contrib/current_search/current_search.theme.inc, line 49
Theme functions for the Current Search Blocks module.

Code

function theme_current_search_group_title(array $variables) {
  return '<h4 class="current-search-group-title">' . $variables['title'] . '</h4>';
}