节点类型上的Drupal页面模板
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了节点类型上的Drupal页面模板相关的知识,希望对你有一定的参考价值。
Only this portion needed// Add page template suggestions based on node type, if we aren't editing the node.
if ($vars['node'] && arg(2) != 'edit') {
$vars['template_files'][] = 'page-nodetype-'. $vars['node']->type;
}
/** * Override or insert phpTemplate variables into the templates. */ function _phptemplate_variables($hook, $vars) { if ($hook == 'page') { // Add page template suggestions based on node type, if we aren't editing the node. if ($vars['node'] && arg(2) != 'edit') { $vars['template_files'][] = 'page-nodetype-'. $vars['node']->type; } if ($secondary = menu_secondary_local_tasks()) { $output = '<span class="clear"></span>'; $output .= "<ul class="tabs secondary"> ". $secondary ."</ul> "; $vars['tabs2'] = $output; } // Hook into color.module if (module_exists('color')) { _color_page_alter($vars); } return $vars; } }
以上是关于节点类型上的Drupal页面模板的主要内容,如果未能解决你的问题,请参考以下文章