Riscrivi l'output di taxonomy_term_page () senza hacking core


10

In Drupal 7, taxonomy.pages.inc contiene taxonomy_term_page(), che posiziona un <div class="term-listing-heading">output intorno all'intestazione della tassonomia.

Come posso riscrivere l'output di taxonomy_term_page () nel mio tema, in modo da poter rimuovere il DIV senza hacking core?

Sono abbastanza sorpreso che non sia disponibile un file tpl.php in taxonomy_term_page()quanto ciò renderebbe il tema molto più semplice.


Risposte:


11

Puoi farlo con la pagina di preelaborazione in questo modo:

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']);
  }
}

nel tuo tema template.php

Credo che system_mainpotrebbe essere chiamato qualcos'altro, a seconda della configurazione del tuo sito.


6

Poiché si tratta di un callback di menu, è possibile implementare hook_menu_alter () in un modulo per modificare il callback di menu richiamato per quella pagina.

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;
}

Grazie! Preferisco il metodo di googletorp in quanto non ha bisogno di un modulo separato. Ma il tuo suggerimento è fantastico in quanto offre un maggiore controllo. Grazie!
big_smile,

Per quanto ricordo, hook_menu_alter()può essere implementato anche in un tema; in Drupal 7, i temi possono implementare alter hook.
kiamlaluno

2

Come nell'esempio precedente, tranne per il fatto che può essere più pulito e più a prova di futuro modificare i ritorni da taxonomy_term_page in un wrapper anziché copiare la funzione originale all'ingrosso:

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;
}

Questo è probabilmente il modo migliore per farlo.
Horatio Alderaan,
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.