继续Drupal分享精神 QQ群:107748121 站长QQ:2275288328 skype: hellodrupal【drupal交流+drupal 建站+theme制作】
登录 注册

theme_breadcrumb Drupal theme(主题)API

可以重写的面包屑,文件位于
includes/theme.inc, 1226 行

Drupal版本
4.6 – 7
theme_breadcrumb($breadcrumb)

返回一个面包屑位置
参数:$breadcrumb 一个包含面包屑衔接的数组
返回值: 面包屑HTML输出文本

代码:

<?php
function theme_breadcrumb($breadcrumb) {
  if (!empty(
$breadcrumb)) {
    return
'<div class="breadcrumb">'. implode(' » ', $breadcrumb) .'</div>';
  }
}
?>

实例:可以使用 theme('breadcrumb', $links)
在主题模板文件template.php 重写 面包屑

<?php
function yourthemename_breadcrumb($breadcrumb) {//把youthemename替换为你的开启的drupal主题名称。
    
if (!empty($breadcrumb)) {
         return
'<div class="breadcrumb">'. implode('>>> ', $breadcrumb).'</div>';
     }
}
?>

评论

发表新评论

此内容将保密,不会被其他人看见。
  • 自动将网址与电子邮件地址转变为链接。
  • 自动断行和分段。
  • You can use BBCode tags in the text.
  • You may post code using <code>...</code> (generic) or <?php ... ?> (highlighted PHP) tags.

更多关於格式化选项的信息

CAPTCHA
This question is for testing whether you are a human visitor and to prevent automated spam submissions.
Image CAPTCHA
Enter the characters shown in the image.