Timpa html.tpl.php per jenis simpul


17

Dalam file template.php saya untuk tema saya, saya telah mencoba yang berikut:

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

Ini berfungsi untuk halaman - nodetype.tpl.php, tetapi tidak untuk html - nodetype.tpl.php

Anda mungkin bertanya mengapa Anda perlu mengganti template html.tpl.php per jenis node. Itu karena ada markup yang saya tidak ingin sertakan untuk node khusus ini.

Jawaban:


28

Nama fungsi preproses didasarkan pada tema / templat yang sedang diproses. Untuk memproses ulang file html.tpl.php Anda harus menggunakan hook_preprocess_html():

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

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

3

Pendekatan @Clive sangat cerdas.

Juga perhatikan ketika di file html.tpl.php, Anda dapat membaca dari tipe konten yang Anda hadapi $variables['classes'], yang akan memberi Anda sesuatu sepertihtml not-front not-logged-in no-sidebars page-node page-node- page-node-5638 node-type-CONTENT-TYPE-NAME

Dengan itu, Anda dapat mengubah perilaku file html.tpl.php dengan ini:

if (strpos($variables['classes'],'node-type-YOUR-CONTENT-TYPE') == true ) {
  echo 'Do something special  for YOUR-CONTENT-TYPE ';
}
Dengan menggunakan situs kami, Anda mengakui telah membaca dan memahami Kebijakan Cookie dan Kebijakan Privasi kami.
Licensed under cc by-sa 3.0 with attribution required.