You are here

function termstatus_preprocess_taxonomy_term in Taxonomy Term Status 7

Implemens hook_preprocess_HOOK().

File

./termstatus.module, line 160
Hook implementations and API for the taxonomy term status module.

Code

function termstatus_preprocess_taxonomy_term(&$variables) {
  if (isset($variables['term']->status) && empty($variables['term']->status)) {
    $variables['classes_array'][] = 'term-unpublished';
  }
}