本文整理汇总了PHP中app\models\Category::listType方法的典型用法代码示例。如果您正苦于以下问题:PHP Category::listType方法的具体用法?PHP Category::listType怎么用?PHP Category::listType使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类app\models\Category
的用法示例。
在下文中一共展示了Category::listType方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
$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
示例2: function
<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>