當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Category::getCatalogPath方法代碼示例

本文整理匯總了PHP中common\models\Category::getCatalogPath方法的典型用法代碼示例。如果您正苦於以下問題:PHP Category::getCatalogPath方法的具體用法?PHP Category::getCatalogPath怎麽用?PHP Category::getCatalogPath使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在common\models\Category的用法示例。


在下文中一共展示了Category::getCatalogPath方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: isset

<?php

/* @var $this yii\web\View */
$this->registerCssFile('@web/css/category.css', ['depends' => \frontend\assets\AppAsset::className()]);
$arrayPath = \common\models\Category::getCatalogPath($model->id, $allCategory);
array_pop($arrayPath);
foreach ($arrayPath as $path) {
    $category = \common\models\Category::findOne($path);
    $this->params['breadcrumbs'][] = ['label' => $category->name, 'url' => ['/category/view', 'id' => $category->id]];
}
$this->params['breadcrumbs'][] = $model->name;
$rootId = \common\models\Category::getRootCatalogId($model->id, $allCategory);
$this->title = $model->name;
?>

<div id="wrapper">
<!-- main body -->
<?php 
echo \yii\widgets\Breadcrumbs::widget(['links' => isset($this->params['breadcrumbs']) ? $this->params['breadcrumbs'] : [], 'options' => ['class' => 'here cle'], 'tag' => 'div', 'itemTemplate' => ' &gt; {link}', 'activeItemTemplate' => ' &gt; {link}']);
?>

<div class="main cle">
<!-- left -->
<div class="sidebar">
    <div class="cate-menu" id="cate-menu">
        <h3><a href="<?php 
echo Yii::$app->urlManager->createUrl(['category/view', 'id' => $rootId]);
?>
"><strong><?php 
echo $arrayCategoryIdName[$rootId];
?>
開發者ID:CTaiDeng,項目名稱:funshop,代碼行數:31,代碼來源:view.php


注:本文中的common\models\Category::getCatalogPath方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。