เขียนเอาต์พุตของ taxonomy_term_page () อีกครั้งโดยไม่แฮ็คคอร์


10

ใน Drupal 7 taxonomy.pages.inc มีส่วนtaxonomy_term_page()ที่วาง<div class="term-listing-heading">เอาท์พุตส่วนหัว taxonomy

ฉันจะเขียนเอาต์พุตของtaxonomy_term_page () อีกครั้งในธีมของฉันได้อย่างไรดังนั้นฉันสามารถลบ DIV โดยไม่แฮ็คคอร์ได้อย่างไร

ฉันค่อนข้างประหลาดใจที่ไม่มีไฟล์ tpl.php อยู่taxonomy_term_page()เพราะจะทำให้การใช้งานง่ายขึ้นมาก


คำตอบ:


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

เท่าที่ฉันจำได้hook_menu_alter()ก็สามารถนำไปใช้ในธีมได้เช่นกัน ใน Drupal 7 ธีมสามารถใช้ hooks hooks แก้ไขได้
kiamlaluno

2

เช่นเดียวกับตัวอย่างก่อนหน้ายกเว้นอาจสะอาดกว่าและมีหลักฐานเพิ่มเติมในอนาคตที่จะแก้ไขการส่งคืนจาก taxonomy_term_page ใน wrapper แทนที่จะคัดลอกฟังก์ชันดั้งเดิม wholesale:

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
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.