You are here

function hs_content_taxonomy_views_hierarchical_select_root_level in Hierarchical Select 5.3

Implementation of hook_hierarchical_select_root_level().

File

modules/hs_content_taxonomy_views.module, line 337
Implementation of the Hierarchical Select API for the Content Taxonomy Views module.

Code

function hs_content_taxonomy_views_hierarchical_select_root_level($params) {
  $root_level = $params['optional'] ? array(
    '**ALL**' => '<' . t('all') . '>',
  ) : array();
  $root_level += hs_content_taxonomy_hierarchical_select_root_level($params);
  return $root_level;
}