You are here

function theme_facetapi_deactivate_widget in Facet API 7

Same name and namespace in other branches
  1. 6.3 facetapi.theme.inc \theme_facetapi_deactivate_widget()
  2. 7.2 facetapi.theme.inc \theme_facetapi_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_facetapi_deactivate_widget()
theme_facetapi_link_active in ./facetapi.theme.inc
Returns HTML for an active facet item.

File

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

Code

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