You are here

function theme_facetapi_deactivate_widget in Facet API 6.3

Same name and namespace in other branches
  1. 7.2 facetapi.theme.inc \theme_facetapi_deactivate_widget()
  2. 7 facetapi.theme.inc \theme_facetapi_deactivate_widget()

Returns HTML for the deactivation widget.

Parameters

$variables: An associative array containing:

  • text: The text of the facet link.
1 theme call to theme_facetapi_deactivate_widget()
theme_facetapi_link_active in ./facetapi.theme.inc
Returns HTML for an inactive facet item.

File

./facetapi.theme.inc, line 125
Theme functions for the Facet API module.

Code

function theme_facetapi_deactivate_widget($variables = array()) {
  return '(-)';
}