getStatuses() public static method

public static getStatuses ( boolean $status = false ) : array | mixed
$status boolean
return array | mixed
示例#1
0
文件: index.php 项目: iiyii/getyii
use yii\helpers\Html;
use yii\grid\GridView;
use common\models\Post;
/* @var $this yii\web\View */
/* @var $searchModel common\Models\PostSearch */
/* @var $dataProvider yii\data\ActiveDataProvider */
$this->title = 'Posts';
$this->params['breadcrumbs'][] = $this->title;
?>
<div class="post-index">

    <?php 
// echo $this->render('_search', ['model' => $searchModel]);
?>

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

    <?php 
echo GridView::widget(['dataProvider' => $dataProvider, 'filterModel' => $searchModel, 'columns' => [['attribute' => 'id', 'options' => ['width' => '10px']], 'title', ['attribute' => 'category_name', 'filter' => Html::activeTextInput($searchModel, 'category_name', ['class' => 'form-control']), 'format' => 'raw', 'value' => function ($data) {
    return $data->category['name'];
}], ['attribute' => 'username', 'filter' => Html::activeTextInput($searchModel, 'username', ['class' => 'form-control']), 'value' => function ($data) {
    return $data->user['username'];
}], ['attribute' => 'view_count', 'options' => ['width' => '10px']], ['attribute' => 'comment_count', 'options' => ['width' => '10px']], ['attribute' => 'order', 'options' => ['width' => '10px']], ['class' => \common\grid\EnumColumn::className(), 'attribute' => 'status', 'filter' => Post::getStatuses(), 'enum' => Post::getStatuses()], 'updated_at:datetime', ['class' => 'yii\\grid\\ActionColumn']]]);
?>

</div>