Drupal6:在theme_preprocess_page(&$vars)中,$vars从哪里来? (如何操作面包屑)

发布于 2024-08-04 06:30:28 字数 291 浏览 8 评论 0原文

当面包屑只有一个条目(“主页”)时,我想删除它。我在主题的 theme_preprocess_page(&$vars) 函数中。 $vars['breadcrumb'] 可用,但它只是 HTML。这使用起来有点笨拙。我宁愿将其作为面包屑列表中的项目数组获取,并执行以下操作:

if (count($breadcrumb) == 1) {
    unset($breadcrumb);
}

$vars 来自哪里?如何覆盖最初创建它的代码?

I want to remove the breadcrumb when it's just one entry ("Home"). I'm in my theme's theme_preprocess_page(&$vars) function. $vars['breadcrumb'] is available, but it's just HTML. This is a bit to clumsy to work with. I'd rather get it as an array of items in the breadcrumb list, and do something like this:

if (count($breadcrumb) == 1) {
    unset($breadcrumb);
}

Where does $vars come from? How can I override the code creating it originally?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

↘人皮目录ツ 2024-08-11 06:30:28

$vars 数组在所有预处理函数之间传递。对于 _preprocess_page 函数,$vars 中的大部分值都是在 template_preprocess_page 中创建的(请参阅 http://api.drupal.org/api/function/template_preprocess_page/6)。在该函数中,您将看到:

  $variables['breadcrumb']        = theme('breadcrumb', drupal_get_breadcrumb());

这里,drupal_get_breacrumb 返回一个面包屑元素数组,然后由 theme_breadcrumb() 函数(或其覆盖)设置主题。

获得所需内容的最简单方法是覆盖 theme_breadcrumb 函数。为此,您需要使用原始的 theme_breadcrumb 函数 (http://api.drupal.org /api/function/theme_breadcrumb/6),将其复制到您的 template.php,将函数名称中的“主题”替换为您的主题名称并更改代码,使其如下所示:

function THEMENAME_breadcrumb($breadcrumb) {
  if (count($breadcrumb) > 1) { // This was:  if (!empty($breadcrumb))
    return '<div class="breadcrumb">'. implode(' » ', $breadcrumb) .'</div>';
  }
}

为了更好地理解有关 Drupal 主题覆盖和预处理功能的信息,请参阅 关于覆盖主题输出设置在模板中使用的变量(预处理函数)

A $vars array is passed on between all preprocess functions. In case of the _preprocess_page functions, most of the values in $vars are created in template_preprocess_page (see http://api.drupal.org/api/function/template_preprocess_page/6). In that function, you'll see:

  $variables['breadcrumb']        = theme('breadcrumb', drupal_get_breadcrumb());

Here, drupal_get_breacrumb returns an array of breadcrumb elements, which is then themed by the theme_breadcrumb() function (or its override).

The easiest way to get what you want is to override the theme_breadcrumb function. To do that, you take the original theme_breadcrumb function (http://api.drupal.org/api/function/theme_breadcrumb/6), copy it to your template.php, replace 'theme' in the function name with the name of your theme and alter the code so it looks like this:

function THEMENAME_breadcrumb($breadcrumb) {
  if (count($breadcrumb) > 1) { // This was:  if (!empty($breadcrumb))
    return '<div class="breadcrumb">'. implode(' » ', $breadcrumb) .'</div>';
  }
}

For a better understanding of Drupal theme overrides and preprocess functions, see About overriding themable output and Setting up variables for use in a template (preprocess functions).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文