function taxonomy_title_locale in Taxonomy Title 6
Implementation of hook_locale().
File
- ./
taxonomy_title.module, line 229 - Enhanced control over the heading tag for the taxonomy term list pages.
Code
function taxonomy_title_locale($op = 'groups', $group = NULL) {
switch ($op) {
case 'groups':
return array(
'taxonomy_title' => t('Taxonomy title'),
);
case 'info':
$info['taxonomy_title']['refresh callback'] = 'taxonomy_title_locale_refresh';
return $info;
}
}