function taxonomy_pathauto in Pathauto 6
Same name and namespace in other branches
- 5.2 pathauto_taxonomy.inc \taxonomy_pathauto()
- 5 pathauto_taxonomy.inc \taxonomy_pathauto()
- 6.2 pathauto.module \taxonomy_pathauto()
- 7 pathauto.module \taxonomy_pathauto()
Implements hook_pathauto().
File
- ./
pathauto_taxonomy.inc, line 13 - Hook implementations for taxonomy module integration.
Code
function taxonomy_pathauto($op) {
switch ($op) {
case 'settings':
$settings = array();
$settings['module'] = 'taxonomy';
$settings['token_type'] = 'taxonomy';
$settings['groupheader'] = t('Taxonomy term paths');
$settings['patterndescr'] = t('Default path pattern (applies to all vocabularies with blank patterns below)');
$settings['patterndefault'] = 'category/[vocab-raw]/[catpath-raw]';
$patterns = token_get_list('taxonomy');
foreach ($patterns as $type => $pattern_set) {
if ($type != 'global') {
foreach ($pattern_set as $pattern => $description) {
$settings['placeholders']['[' . $pattern . ']'] = $description;
}
}
}
$settings['supportsfeeds'] = '0/feed';
$settings['bulkname'] = t('Bulk generate aliases for terms that are not aliased');
$settings['bulkdescr'] = t('Generate aliases for all existing terms which do not already have aliases.');
$vocabularies = taxonomy_get_vocabularies();
if (sizeof($vocabularies) > 0) {
$settings['patternitems'] = array();
$forum_vid = variable_get('forum_nav_vocabulary', '');
foreach ($vocabularies as $vocab) {
if ($vocab->vid != $forum_vid) {
$vocabname = $vocab->name;
$fieldlabel = t('Pattern for all %vocab-name paths', array(
'%vocab-name' => $vocabname,
));
$settings['patternitems'][$vocab->vid] = $fieldlabel;
}
}
}
return (object) $settings;
default:
break;
}
}