cszchen/alte
最新稳定版本:v2.0.2
Composer 安装命令:
composer require cszchen/alte
包简介
Widgets for AdminLTE theme
关键字:
README 文档
README
The Bootstrap template AdminLTE widgets for yii2 framework. It make it easy to build a bootstrap admin panel.
Install
composer require "cszchen/alte": ">=2.0.0"
How to Use
layout sample file: @vendor/cszchen/alte/views/main-layout.php
example:
controllers/SiteController.php
class SiteController extends \yii\web\Controller { public $layout = '@vendor/cszchen/alte/veiws/main-layout.php'; public function actionIndex() { return $this->render('index'); } }
views/site/index.php
use cszchen\alte\widgets\Box; $this->title = "Title here!"; Box::begin([ 'type' => 'primary', 'title' => 'Box title', 'refreshUrl' => '/userinfo', 'tools' => ['refresh', 'collapse', 'remove'], 'collapsed' => false ]); echo "cszchen/alte"; Box::end();
NavBar
NavBar::begin([ 'brandLabel' => 'cszchen/alte', 'brandLabelSm' => 'Alte', 'items' => [ [ 'label' => 'Home', 'url' => ['/site/index'], 'icon' => 'fa fa-dashboard test-green', 'items'=>[ ['label' => 'child#1', 'icon' => 'fa fa-user'], ['label' => 'child#2', 'url' => '#'] ] ], ['label' => 'About', 'small' => 15, 'url' => ['/site/about']] ] ]); NavBar::end();
SideBar
echo Sidebar::widget([ //'search' => false, 'items' => [ [ 'label' => 'level1', 'url' => '#', 'small' => 1, 'icon' => 'fa fa-dashboard text-green', 'items' => [ ['label' => 'level2', 'url' => '#', 'icon' => 'fa fa-user text-red'], ['label' => 'level2', 'url' => '#', 'items' => [['label' => 'level3']]] ] ] ], ]);
Box
Box::begin([ 'type' => 'primary', 'title' => 'Box title', 'refreshUrl' => '/userinfo', 'tools' => ['refresh', 'collapse', 'remove'], 'collapsed' => false ]); echo "cszchen/alte"; Box::end();
统计信息
- 总下载量: 919
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 19
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-11-08