2

現在のノードの分類用語に body css クラスを追加する方法を知っているか、正しい方向に導くことができる人はいますか? つまり<body class="term-dogs">、「犬」は分類用語名です。用語 ID だけの場合もあります。どちらの方法でも問題ありません。解決策が必要です。これは Drupal 7 zen サブテーマ用です

4

3 に答える 3

2

この答えは、私が理解するのに予想以上に時間がかかりました。ノードに関連するすべての分類関数が削除またはリファクタリングされたため、難しい部分はノードの用語を収集することでした。最終的に、Pro Drupal 7 Development の 355 ページは、taxonomy_node_get_terms によって以前に処理されたジョブを実行するスニペットで 1 日を節約しました。

以下は私のために働いたコードです(「MAGIC BEGINS HERE」と書かれた部分を探してください)。Zen のサブテーマを作成していると仮定すると、これをサブテーマの template.php ファイルに移動し、名前を YOURSUBTHEMENAME_preprocess_html に変更します。

/**
 * Override or insert variables into the html template.
 *
 * @param $vars
 *   An array of variables to pass to the theme template.
 * @param $hook
 *   The name of the template being rendered ("html" in this case.)
 */
function zen_preprocess_html(&$vars, $hook) {
  // If the user is silly and enables Zen as the theme, add some styles.
  if ($GLOBALS['theme'] == 'zen') {
    include_once './' . drupal_get_path('theme', 'zen') . '/zen-internals/template.zen.inc';
    _zen_preprocess_html($vars, $hook);
  }

  // Classes for body element. Allows advanced theming based on context
  // (home page, node of certain type, etc.)
  if (!$vars['is_front']) {
    // Add unique class for each page.
    $path = drupal_get_path_alias($_GET['q']);
    // Add unique class for each website section.
    list($section, ) = explode('/', $path, 2);
    if (arg(0) == 'node') {
      if (arg(1) == 'add') {
        $section = 'node-add';
      }
      elseif (is_numeric(arg(1)) && (arg(2) == 'edit' || arg(2) == 'delete')) {
        $section = 'node-' . arg(2);
      }
      // MAGIC BEGINS HERE
      $node = node_load(arg(1));
      $results = field_view_field('node', $node, 'field_tags', array('default'));
      foreach ($results as $key => $result) {
        if (is_numeric($key)) {
          $vars['classes_array'][] = strtolower($result['#title']);
        }
      }
      // MAGIC ENDS HERE
    }
    $vars['classes_array'][] = drupal_html_class('section-' . $section);
  }
  if (theme_get_setting('zen_wireframes')) {
    $vars['classes_array'][] = 'with-wireframes'; // Optionally add the wireframes style.
  }
  // Store the menu item since it has some useful information.
  $vars['menu_item'] = menu_get_item();
  switch ($vars['menu_item']['page_callback']) {
    case 'views_page':
      // Is this a Views page?
      $vars['classes_array'][] = 'page-views';
      break;
    case 'page_manager_page_execute':
    case 'page_manager_node_view':
    case 'page_manager_contact_site':
      // Is this a Panels page?
      $vars['classes_array'][] = 'page-panels';
      break;
  }
}
于 2011-01-10T07:53:02.957 に答える
1

これを行う方法を知る必要があり、Matt V のソリューションは完全に機能しました。私は彼の作品にいくつかの追加を行いました. スペースと無効な文字を置き換える drupal_html_class を呼び出しました。また、ターム ID を追加して、タームの名前が変わってもターゲティングできるようにしました。

// MAGIC BEGINS HERE
$node = node_load(arg(1));
$results = field_view_field('node', $node, 'field_tags', array('default'));
foreach ($results as $key => $result) {
    if (is_numeric($key)) {
    // Call drupal_html_class to make safe for a css class (remove spaces, invalid characters)
    $vars['classes_array'][] = "taxonomy-" . strtolower(drupal_html_class( $result['#title']) );
    // Add taxonomy ID. This will allow targeting of the taxonomy class even if the title changes
    $vars['classes_array'][] = "taxonomy-id-" . $result['#options']['entity']->tid  ;
    }
}
// MAGIC ENDS HERE
于 2011-01-28T04:24:01.863 に答える
0

body タグの意味はわかりませんが、ノードのクラスは次のように生成されます。

http://api.drupal.org/api/drupal/modules--node--node.module/function/template_preprocess_node/7

yourmodule_preprocess_node($vars) を実装してさらに追加し、必要なものを $vars['classes_array'] に追加できます

于 2011-01-10T05:57:05.027 に答える