3

为了在我的站点中设置特定页面的主题,我创建了一个名为 node--2.tpl.php 的文件。根据我阅读的其他一些教程,我将其添加到我的 template.php 文件中:

function mtheme_preprocess_node(&$vars) {
  if (request_path() == 'node/2') {
    $vars['theme_hook_suggestions'][] = 'node__2';
  }
}

在这个页面上,我希望渲染名为schools_landing 的区域。因此,node--2.tpl.php 看起来像这样,仅此而已:

<?php print render($page['schools_landing']); ?>

这样做之后,我开始在管理员覆盖的顶部看到以下错误消息:

Warning: Cannot use a scalar value as an array in include() (line 1 of /home/something/public_html/project/sites/all/themes/mtheme/node--2.tpl.php).

此外,我可以在 node--2.tpl.php 文件中写入文本,它显示得很好(而不是默认的页面内容),但我根本无法在该区域内渲染块。如果我为schools_landing 块分配一个块,我在页面上什么也看不到。

  1. 这是在特定页面上定义自定义内容的正确过程吗?
  2. 如何修复导致标量值作为数组错误消息的错误?
  3. 如何让我的块开始在该区域中渲染?
4

1 回答 1

2

节点模板中,$page是一个布尔值,而不是一个数组。这就是您收到该错误的原因。
template_preprocess_node()使用以下代码设置它。

$variables['page']      = $variables['view_mode'] == 'full' && node_is_page($node);

它是hook_preprocess_page()获取$page具有您期望值的变量。
template_preprocess_page()包含以下代码。

  foreach (system_region_list($GLOBALS['theme']) as $region_key => $region_name) {
    if (!isset($variables['page'][$region_key])) {
      $variables['page'][$region_key] = array();
    }
  }

page.tpl.php描述$page为:

地区:

  • $page['help']:动态帮助文本,主要用于管理页面。
  • $page['highlighted']:突出显示的内容区域的项目。
  • $page['content']:当前页面的主要内容。
  • $page['sidebar_first']:第一个侧边栏的项目。
  • $page['sidebar_second']:第二个侧边栏的项目。
  • $page['header']: 标题区域的项目。
  • $page['footer']: 页脚区域的项目。

额外的区域可以从主题中实现。

作为旁注,template_preprocess_node()已经建议了以下模板名称。

  $variables['theme_hook_suggestions'][] = 'node__' . $node->type;
  $variables['theme_hook_suggestions'][] = 'node__' . $node->nid;

无需为您的主题或自定义模块推荐它们。

于 2012-12-10T18:12:03.150 回答