Ejemplo n.º 1
0
 /**
  * 生成菜单用缓存
  */
 private static function buildCache()
 {
     $nodes = SystemMenu::find()->orderBy('root,lft,sort')->all();
     $array = [];
     foreach ($nodes as $node) {
         $array[$node->id] = $node->attributes;
     }
     yii::$app->cache->set(SERVER_ENV_PREFIX . ':admin_menu', $array);
     return $array;
 }
Ejemplo n.º 2
0
<?php

$this->title = '菜单管理';
$this->params['breadcrumbs'][] = $this->title;
/**
 * @author oba.ou
 */
// VIEW - views/product/index.php
echo \kartik\tree\TreeView::widget(['query' => \app\core\models\SystemMenu::find()->addOrderBy('root, lft , sort'), 'headingOptions' => ['label' => '菜单管理'], 'rootOptions' => ['label' => '<span class="text-primary">顶级栏目</span>'], 'fontAwesome' => true, 'isAdmin' => false, 'displayValue' => 1, 'softDelete' => false, 'cacheSettings' => ['enableCache' => true], 'showIDAttribute' => false, 'nodeAddlViews' => [\kartik\tree\Module::VIEW_PART_1 => '@app/core/modules/system/views/menu/menu-form']]);