标签:style blog http color ar sp on 2014 log
什么是面包屑?
类似于这样就是
实现步骤:
1. 视图定义变量
2. 在布局通过显示
视图中代码:
<?php
//定义面包屑变量
$this -> breadcrumbs = array(
'用户中心'=>array('user/center'),
'用户登录'=>array('user/login'),
);
?><!-- <当前位置=---首页-----注册---->
<?php if(isset($this->breadcrumbs)):?>
<?php $this->widget('zii.widgets.CBreadcrumbs', array(
'homeLink'=>CHtml::link('首页',Yii::app()->homeUrl),
'links'=>$this->breadcrumbs,
'separator'=>' > ', //分隔符
)); ?><!-- breadcrumbs -->
<?php endif?>这样的:
标签:style blog http color ar sp on 2014 log
原文地址:http://blog.csdn.net/buyingfei8888/article/details/40628527