Düğüm türü başına html.tpl.php'yi geçersiz kıl


17

Temam için template.php dosyamda aşağıdakileri denedim:

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

Bu sayfa için çalışır - nodetype.tpl.php, ancak html için değil - nodetype.tpl.php

Düğüm türü başına neden html.tpl.php şablonunu geçersiz kılmanız gerektiğini soruyor olabilirsiniz. Çünkü bu özel düğüm için dahil etmek istemediğim bir işaretleme var.

Yanıtlar:


28

Önişleme işlevinin adı, işlenmekte olan temayı / şablonu temel alır. Html.tpl.php dosyasını önceden işlemek için kullanmanız gerekir hook_preprocess_html():

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

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

3

@Clive yaklaşımı çok akıllı.

Html.tpl.php dosyasında, size gelen ilgileniyor içerik türünü okuyabilir Ayrıca not do $variables['classes']Size şöyle bir şey verecektirhtml not-front not-logged-in no-sidebars page-node page-node- page-node-5638 node-type-CONTENT-TYPE-NAME

Bununla, html.tpl.php dosyasının bu şekilde nasıl davrandığını değiştirebilirsiniz:

if (strpos($variables['classes'],'node-type-YOUR-CONTENT-TYPE') == true ) {
  echo 'Do something special  for YOUR-CONTENT-TYPE ';
}
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.