Exemplo n.º 1
0
    <?php 
$form = ActiveForm::begin(['id' => 'permission-form', 'options' => ['class' => 'form-horizontal']]);
?>

    <?php 
echo $form->field($model, 'id')->textInput(['maxlength' => true]);
?>

    <?php 
echo $form->field($model, 'name')->textInput(['maxlength' => true]);
?>


    <?php 
echo $form->field($model, 'form')->radioList(Permission::getFormItems());
?>

    <?php 
echo $form->field($model, 'default_value')->textarea(['rows' => 6]);
?>

    <?php 
echo $form->field($model, 'rule')->dropDownList(Rule::getRules(), ['prompt' => '请选择']);
?>

    <?php 
echo $form->field($model, 'description')->textarea(['rows' => 6]);
?>
    
    <?php 
Exemplo n.º 2
0
<?php

use yii\helpers\Html;
use source\core\grid\GridView;
use source\LuLu;
use source\modules\rbac\models\Permission;
/* @var $this yii\web\View */
/* @var $searchModel app\modules\rbac\models\search\PermissionSearch */
/* @var $dataProvider yii\data\ActiveDataProvider */
$categoryId = LuLu::getGetValue('category');
$this->title = '权限管理';
$this->params['breadcrumbs'][] = $this->title;
$columns = [['attribute' => 'id', 'width' => '150px'], ['attribute' => 'name', 'width' => '250px'], ['attribute' => 'description', 'width' => 'auto'], ['attribute' => 'form', 'value' => function ($model) {
    return Permission::getFormItems($model->form);
}], ['class' => 'source\\core\\grid\\SortColumn'], ['class' => 'source\\core\\grid\\ActionColumn']];
$this->toolbars([Html::a('新建权限', ['create', 'category' => $categoryId], ['class' => 'btn btn-xs btn-primary mod-site-save'])]);
?>
<style>
.ui-tabs .ui-tabs-panel{padding:0px;}
</style>
    <div class="da-ex-tabs">
        <ul>
            <!-- <li><a href="#tabs-<?php 
echo Permission::Category_Basic;
?>
">基本权限</a></li> -->
            <li><a href="#tabs-<?php 
echo Permission::Category_Controller;
?>
">控制器权限</a></li>
            <li><a href="#tabs-<?php