Sostituisci html.tpl.php per tipo di nodo


17

Nel mio file template.php per il mio tema ho provato quanto segue:

function media_preprocess_page(&$vars, $hook) {
  if (isset($vars['node'])) 
  {
      // If the node type is "blog" the template suggestion will be "html--blog.tpl.php".
       $vars['theme_hook_suggestions'][] = 'html__'.$vars['node']->type;

      // If the node type is "blog" the template suggestion will be "page--blog.tpl.php".
       $vars['theme_hook_suggestions'][] = 'page__'.$vars['node']->type;

      // If the node id is "33" the template suggestion will be "page--33.tpl.php".
       $vars['theme_hook_suggestions'][] = 'page__'.$vars['node']->nid;    
  }

    //Create page suggestion for first part of url-alias
    $url_alias = drupal_get_path_alias($_GET['q']);
    $parts = explode('/', $url_alias);

    $vars['theme_hook_suggestions'][] = 'page__'.$parts[0].'__alias';  
}

Questo funziona per pagina - nodetype.tpl.php, ma non per html - nodetype.tpl.php

Potresti chiederti perché è necessario sostituire il modello html.tpl.php per tipo di nodo. È perché esiste un markup che non voglio includere per questo nodo particolare.

Risposte:


28

Il nome di una funzione di preelaborazione si basa sul tema / modello che viene elaborato. Per preelaborare il file html.tpl.php dovrai usare hook_preprocess_html():

function media_preprocess_html(&$vars) {
  $node = menu_get_object();

  if ($node && $node->nid) {
    $vars['theme_hook_suggestions'][] = 'html__' . $node->type;
  }
}

3

L'approccio @Clive è molto intelligente.

Nota anche quando sei nel file html.tpl.php, puoi leggere il tipo di contenuto con cui hai a che fare $variables['classes'], che ti darà qualcosa di similehtml not-front not-logged-in no-sidebars page-node page-node- page-node-5638 node-type-CONTENT-TYPE-NAME

Con ciò, puoi cambiare il comportamento del file html.tpl.php con questo:

if (strpos($variables['classes'],'node-type-YOUR-CONTENT-TYPE') == true ) {
  echo 'Do something special  for YOUR-CONTENT-TYPE ';
}
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.