本文整理汇总了PHP中Column::navbar方法的典型用法代码示例。如果您正苦于以下问题:PHP Column::navbar方法的具体用法?PHP Column::navbar怎么用?PHP Column::navbar使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Column
的用法示例。
在下文中一共展示了Column::navbar方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: array
<li id="nav-index"><?php
echo CHtml::link($this->areaInfo['title'] . '<span class="caret"></span>', array('index/show', 'areaid' => $this->areaInfo['id']));
?>
</li>
<?php
} else {
?>
<li id="nav-index"><?php
echo CHtml::link(zmf::t('indexPage') . '<span class="caret"></span>', array('index/all'));
?>
</li>
<?php
}
?>
<?php
$topcols = Column::navbar($this->theAreaId, $this->areaInfo['title'], $this->likeAreas);
foreach ($topcols as $col) {
?>
<li class="<?php
echo $col['active'] ? 'active' : '';
?>
"><?php
echo CHtml::link($col['title'], $col['url']);
?>
</li>
<?php
}
?>
</ul>
<?php
示例2: array
if (!empty($this->areaInfo)) {
?>
<?php
echo CHtml::link($this->areaInfo['title'], array('index/show', 'areaid' => $this->areaInfo['id']), array('class' => 'header-center'));
?>
<?php
}
?>
<a class="header-right" href="javascript:;"><ul><li><span></span></li><li><span></span></li><li><span></span></li></ul></a>
</h2>
<div class="header-select-holder">
<div class="ui-scroller header-select">
<ul style="transition: 0ms cubic-bezier(0.1, 0.57, 0.1, 1); -webkit-transition: 0ms cubic-bezier(0.1, 0.57, 0.1, 1); transform: translate(0px, 0px) translateZ(0px);" class="ui-list ui-list-text ui-list-link ui-border-b">
<?php
$topcols = Column::navbar($this->theAreaId);
foreach ($topcols as $col) {
?>
<li class="ui-border-t" data-href="<?php
echo $col['url'];
?>
"><h4 class="ui-nowrap"><?php
echo $col['title'];
?>
</h4></li>
<?php
}
?>
<?php
if (Yii::app()->user->isGuest) {
?>