我有一个词汇类别,里面有四个术语。我想要做的是,如果内容被标记为一个终端,特别是说“term1”,将url生成为word1 / [node:title],而所有其他标签只标记为标准url格式。
如果我想要网址中的术语显然是id使用模式替换但我想要使用另一个单词如果使用特定标签
答案 0 :(得分:5)
我无法想到实现这一目标的简单即插即用方式。您可能必须在Pathauto的URL别名设置中为“默认路径模式”创建自己的令牌:
/**
* Implementation of hook_token_info().
*/
function MODULE_token_info() {
$info['tokens']['node']['node-term-path'] = array(
'name' => t('Node path by term'),
'description' => t('The path to a node based on its taxonomy terms.'),
);
return $info;
}
/**
* Implementation of hook_tokens().
*/
function MODULE_tokens($type, $tokens, array $data = array(), array $options = array()) {
$replacements = array();
if ($type == 'node' && !empty($data['node'])) {
$node = $data['node'];
foreach ($tokens as $name => $original) {
switch ($name) {
case 'node-term-path':
$items = field_get_items('node', $node, 'TAXONOMY_FIELD_NAME');
foreach ($items as $item) {
$tids[] = $item['tid'];
}
if (in_array(TID_OF_TERM1, $tids)) {
// Path for nodes with term1
$replacements[$original] = 'word1/'. pathauto_cleanstring($node->title);
}
else {
// Path for other nodes
$replacements[$original] = 'content/'. pathauto_cleanstring($node->title);
}
break;
}
}
}
return $replacements;
}
答案 1 :(得分:0)
实际上,任何需要类似解决方案的人都可以使用模块实体参考找到一种简单的方法。
http://drupal.org/project/entityreference
我刚刚为用户帐户选择实体引用创建了一个新字段,然后您可以选择drupal中的任何实体来引用。 (即你可以选择一个术语/内容/任何东西)