本文整理汇总了PHP中commonModel::printTopBar方法的典型用法代码示例。如果您正苦于以下问题:PHP commonModel::printTopBar方法的具体用法?PHP commonModel::printTopBar怎么用?PHP commonModel::printTopBar使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类commonModel
的用法示例。
在下文中一共展示了commonModel::printTopBar方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: isset
?>
<![endif]-->
<?php
$template = $this->config->template->{$this->device}->name ? $this->config->template->{$this->device}->name : 'default';
$theme = $this->config->template->{$this->device}->theme ? $this->config->template->{$this->device}->theme : 'default';
$baseCustom = isset($this->config->template->custom) ? json_decode($this->config->template->custom, true) : array();
if (!empty($baseCustom[$template][$theme]['js'])) {
js::execute($baseCustom[$template][$theme]['js']);
}
?>
</head>
<body>
<div class='page-container page-blog'>
<header id='header' class='clearfix'>
<div id='headNav'><div class='wrapper'><?php
echo commonModel::printTopBar();
?>
</div></div>
<div id='headTitle'>
<div class="wrapper">
<?php
$logoSetting = isset($this->config->site->logo) ? json_decode($this->config->site->logo) : new stdclass();
?>
<?php
$logo = isset($logoSetting->{$template}->themes->{$theme}) ? $logoSetting->{$template}->themes->{$theme} : (isset($logoSetting->{$template}->themes->all) ? $logoSetting->{$template}->themes->all : false);
?>
<?php
if ($logo) {
?>
<div id='siteLogo'>
<?php
示例2:
?>
<?php
if (commonModel::isAvailable('shop')) {
?>
<a class='btn with-badge' href='<?php
echo $this->createLink('cart', 'browse');
?>
'><i class='icon icon-shopping-cart'></i><strong class='cart-count badge small text-danger circle hide'>12</strong></a>
<?php
}
?>
<div class='dropdown'>
<button type='button' class='btn' data-toggle='dropdown'><i class='icon-bars circle'></i></button>
<ul class='dropdown-menu dropdown-menu-right'>
<?php
echo commonModel::printTopBar(true);
?>
<?php
echo commonModel::printLanguageBar(true);
?>
</ul>
</div>
</div>
</header>
<nav class='appnav fix-top appnav-auto' id='appnav'>
<div class='mainnav'>
<ul class='nav'>
<?php
$subnavs = '';
?>