当前位置: 首页>>代码示例>>PHP>>正文


PHP Category::listType方法代码示例

本文整理汇总了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 
开发者ID:comaw,项目名称:hashtag,代码行数:31,代码来源:_form.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>
开发者ID:comaw,项目名称:hashtag,代码行数:29,代码来源:index.php


注:本文中的app\models\Category::listType方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。