You are here

function theme_current_search_deactivate_widget in Facet API 7

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

Returns HTML for the deactivation widget.

Parameters

$variables: An associative array containing the keys 'text', 'path', and 'options'. See the l() function for information about these variables.

See also

l()

theme_facetapi_link_active()

1 theme call to theme_current_search_deactivate_widget()
theme_current_search_link_active in contrib/current_search/current_search.theme.inc
Returns HTML for an active facet item.

File

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

Code

function theme_current_search_deactivate_widget($variables) {
  return '(-)';
}