function theme_facetapi_title in Facet API 6
Same name and namespace in other branches
- 6.3 facetapi.theme.inc \theme_facetapi_title()
- 7.2 facetapi.theme.inc \theme_facetapi_title()
- 7 facetapi.theme.inc \theme_facetapi_title()
Themes the facet title.
Parameters
$title: A string containing the facet title.
Return value
A string containing the themed title.
1 theme call to theme_facetapi_title()
- theme_facetapi_item_list in ./
facetapi.theme.inc - Wrapper around theme_item_list(), accepts render array as an argument.
File
- ./
facetapi.theme.inc, line 45 - Theme functions for the Facet API module.
Code
function theme_facetapi_title($title) {
return t('Filter by @title:', array(
'@title' => drupal_strtolower($title),
));
}