Example #1
0
    $parent = ArrayHelper::merge($parent, ArrayHelper::map(Category::find()->where("parent = 0 AND id <> :id", [':id' => $model->id])->all(), 'id', 'name'));
}
echo \backend\widgets\TinyMce::widget();
?>
<div class="category-form">

    <?php 
$form = ActiveForm::begin(['options' => ['enctype' => 'multipart/form-data']]);
?>

    <?php 
echo $form->field($model, 'parent')->dropDownList($parent);
?>

    <?php 
echo $form->field($model, 'type')->dropDownList(Category::listType());
?>

    <?php 
echo $form->field($model, 'name')->textInput(['maxlength' => true]);
?>
    <?php 
if (!$model->isNewRecord) {
    ?>
        <?php 
    echo $form->field($model, 'url')->textInput(['maxlength' => true]);
    ?>
    <?php 
}
?>
    <?php 
Example #2
0
    <h1><?php 
echo Html::encode($this->title);
?>
</h1>
    <?php 
// echo $this->render('_search', ['model' => $searchModel]);
?>

    <p>
        <?php 
echo Html::a(Yii::t('app', 'Create Category'), ['create'], ['class' => 'btn btn-success']);
?>
    </p>

    <?php 
echo GridView::widget(['dataProvider' => $dataProvider, 'filterModel' => $searchModel, 'columns' => [['class' => 'yii\\grid\\SerialColumn'], ['attribute' => 'img', 'format' => 'raw', 'value' => function ($data) {
    return $data->img ? '<img src="' . Category::getUrlImg($data->img) . '" style="max-height: 60px;">' : '';
}, 'filter' => false], 'id', ['attribute' => 'parent', 'format' => 'raw', 'value' => function ($data) {
    if (!$data->parent) {
        return Yii::t('app', 'Parent');
    }
    $current = Category::find()->where("id = :id", [':id' => $data->parent])->one();
    return isset($current->name) ? $current->name : '';
}, 'filter' => $parent], ['attribute' => 'type', 'format' => 'raw', 'value' => function ($data) {
    return Category::getType($data->type);
}, 'filter' => Category::listType()], 'name', 'url', 'created', ['class' => 'yii\\grid\\ActionColumn']]]);
?>

</div>