You are here

function theme_facetapi_facet_missing in Facet API 7.2

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

Returns HTML for a "missing" facet link.

Parameters

$variables: An associative array containing:

  • field_name: The name of the facet field.

File

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

Code

function theme_facetapi_facet_missing($variables) {
  return t('Missing %field_name', array(
    '%field_name' => $variables['field_name'],
  ));
}