将类添加到drupal体

时间:2018-04-10 12:28:25

标签: drupal drupal-7

如何将与节点相关的所有术语的术语ID添加到drupal站点中的该节点主体类?

例如,名为stackoverflow的节点标有四个术语

term1
term2
term3
term4
term5

我想将这些分类添加到节点体类......

article-term-(term1tid) 
article-term-(term2tid)
article-term-(term3tid) 
article-term-(term4tid)
article-term-(term5tid)

这些是我想要更改其姓名的页面:

3 个答案:

答案 0 :(得分:2)

由于@ P1ratRuleZZZ已经指出template_preprocess_html(从你的子主题template.php文件实现)是添加身体类的功能。

事实是,在这个函数中,你需要先加载实际的节点对象,然后获取该术语引用字段的值,最后将它们作为类添加到body标签中。

MYTHEMEfield_MYFIELD替换为您的姓名。

/**
 * Implements template_preprocess_html().
 */
function MYTHEME_preprocess_html(&$variables) {

  // Get the node.
  if ($node = menu_get_object()) {

    // Check node type.
    if ($node->type === 'article') {

      // Get taxonomy terms.
      $terms = field_get_items('node', $node, 'field_MYFIELD');

      foreach ($terms as $term) {
        // Add body class.
        $variables['classes_array'][] = 'article-term-' . $term['tid'];
      }
    }        
  }
}

答案 1 :(得分:2)

leymannx代码非常完整而且很好。

但它不包含节点的所有术语。

我自己写这段代码,我希望我对你有用。

function YOURTHEME_preprocess_html(&$variables) {

    if (arg(0) == 'node' && is_numeric(arg(1))) {
        $node    = node_load(arg(1));
        $results = stackoverflow_taxonomy_node_get_terms($node);
        if (is_array($results)) {
            foreach ($results as $item) {
                $variables['classes_array'][] = "article-term-" . $item->tid;
            }
        }
    }

}

有一个名为"" stackoverflow_taxonomy_node_get_terms""返回附加到节点的所有术语。

function stackoverflow_taxonomy_node_get_terms($node, $key = 'tid'){
    static $terms;
    if (!isset($terms[$node->vid][$key])) {
        $query   = db_select('taxonomy_index', 'r');
        $t_alias = $query->join('taxonomy_term_data', 't', 'r.tid = t.tid');
        $v_alias = $query->join('taxonomy_vocabulary', 'v', 't.vid = v.vid');
        $query->fields($t_alias);
        $query->condition("r.nid", $node->nid);
        $result                  = $query->execute();
        $terms[$node->vid][$key] = array();
        foreach ($result as $term) {
            $terms[$node->vid][$key][$term->$key] = $term;
        }
    }
    return $terms[$node->vid][$key];
}

我希望这段代码可能是最好的。

在主题中的template.php文件中写下所有这些代码。

如果你只想要一些节点有类名,请添加替换这部分代码。

> if (arg(0) == 'node' && is_numeric(arg(1)) && ( arg(1)==X || arg(1)==Y
> )  ) {

答案 2 :(得分:0)

尝试使用template_preprocess_html()

这是在你主题的template.php文件中:

YOURTHEMENAME_preprocess_html(&$variables) {
  $term_id = arg(1); // For example, or use some &drupal_static() to store a value while preprocessing from module
  $variables['classes_array'][] = 'article-term-' . $term_id;
}

因此,您可以看到它,然后将模板_更改为您的themename_ first