コアをハッキングせずにtaxonomy_term_page()の出力を書き直します


10

Drupalの7では、taxonomy.pages.incは含まtaxonomy_term_page()置いた、<div class="term-listing-heading">分類の見出し出力周り。

コアのハッキングを行わずにDIVを削除できるように、テーマのtaxonomy_term_page()の出力を書き直すにはどうすればよいですか?

taxonomy_term_page()これによりテーマ設定がはるかに簡単になるので、tpl.phpファイルを使用できないことにかなり驚いています。


:それを読んで与えるrarepattern.com/nodes/2011/...
CAPI Etheriel

回答:


11

次のような前処理ページでそれを行うことができます:

function themename_preprocess_page(&$vars) {
  if  (arg(0) == 'taxonomy' && arg(1) == 'term' && is_numeric(arg(2))) {
    unset($vars['page']['content']['system_main']['term_heading']['#prefix']);
    unset($vars['page']['content']['system_main']['term_heading']['#suffix']);
  }
}

あなたのテーマの template.php

私は信じてsystem_mainあなたのサイトの設定に応じて、何かを呼び出すことができます。


6

これはメニューコールバックなので、モジュールにhook_menu_alter()を実装して、そのページに対して呼び出されるメニューコールバックを変更できます。

function mymodule_menu_alter(&$items) {
  if (!empty($items['taxonomy/term/%taxonomy_term'])) {
    $items['taxonomy/term/%taxonomy_term']['page callback'] = 'mymodule_term_page';
  }
}

function mymodule_term_page($term) {
  // Build breadcrumb based on the hierarchy of the term.
  $current = (object) array(
    'tid' => $term->tid,
  );
  $breadcrumb = array();

  while ($parents = taxonomy_get_parents($current->tid)) {
    $current = array_shift($parents);
    $breadcrumb[] = l($current->name, 'taxonomy/term/' . $current->tid);
  }
  $breadcrumb[] = l(t('Home'), NULL);
  $breadcrumb = array_reverse($breadcrumb);
  drupal_set_breadcrumb($breadcrumb);
  drupal_add_feed('taxonomy/term/' . $term->tid . '/feed', 'RSS - ' . $term->name);

  $build = array();

  $build['term_heading'] = array(
    'term' => taxonomy_term_view($term, 'full'),
  );

  if ($nids = taxonomy_select_nodes($term->tid, TRUE, variable_get('default_nodes_main', 10))) {
    $nodes = node_load_multiple($nids);
    $build += node_view_multiple($nodes);
    $build['pager'] = array(
      '#theme' => 'pager', 
      '#weight' => 5,
    );
  }
  else {
    $build['no_content'] = array(
      '#prefix' => '<p>', 
      '#markup' => t('There is currently no content classified with this term.'), 
      '#suffix' => '</p>',
    );
  }
  return $build;
}

ありがとう!個別のモジュールを必要としないため、私はgoogletorpの方法を好みます。しかし、それはより多くの制御を与えるので、あなたの提案は素晴らしいです。ありがとう!
big_smile 2011年

私が思い出す限りhook_menu_alter()、テーマにも実装できます。Drupal 7では、テーマは変更フックを実装できます。
kiamlaluno

2

前の例と同様に、元の関数のホールセールをコピーするのではなく、ラッパーでtaxonomy_term_pageからの戻り値を変更する方がより明確で将来の可能性があることを除いて:

function mymodule_menu_alter(&$items) {
  if (!empty($items['taxonomy/term/%taxonomy_term'])) {
    $items['taxonomy/term/%taxonomy_term']['page callback'] = '_custom_taxonomy_term_page';
  }
}

function _custom_taxonomy_term_page ( $term ) {

   $build = taxonomy_term_page( $term );

   // Make customizations then return
   unset( $build['term_heading']['#prefix'] ); 
   unset( $build['term_heading']['#suffix'] );

   return $build;
}

これはおそらくそれを行うための最良の方法です。
Horatio Alderaan 2012
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.