Пример #1
0
 /**
  * Finds the Page model based on alias value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param string $alias
  * @return Page the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($alias)
 {
     $model = Page::find()->where(['alias' => $alias, 'published' => Page::PUBLISHED_YES])->one();
     if ($model !== null) {
         return $model;
     }
     throw new NotFoundHttpException(Module::t('PAGE_NOT_FOUND'));
 }
Пример #2
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = Page::find();
     $dataProvider = new ActiveDataProvider(['query' => $query]);
     $this->load($params);
     if (!$this->validate()) {
         // uncomment the following line if you do not want to any records when validation fails
         // $query->where('0=1');
         return $dataProvider;
     }
     $query->andFilterWhere(['id' => $this->id, 'published' => $this->published, 'created_at' => $this->created_at, 'updated_at' => $this->updated_at]);
     $query->andFilterWhere(['like', 'title', $this->title])->andFilterWhere(['like', 'alias', $this->alias]);
     return $dataProvider;
 }
Пример #3
0
 /**
  * Finds the Page model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return Page the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = Page::findOne($id)) !== null) {
         return $model;
     }
     throw new NotFoundHttpException(Module::t('PAGE_NOT_FOUND'));
 }
Пример #4
0
<?php

use yii\helpers\Html;
use yii\grid\GridView;
use bupy7\pages\Module;
use bupy7\pages\models\Page;
/* @var $this yii\web\View */
/* @var $searchModel bupy7\pages\models\PageSearch */
/* @var $dataProvider yii\data\ActiveDataProvider */
$this->title = Module::t('MODULE_NAME');
$this->params['breadcrumbs'][] = $this->title;
?>
<div class="page-header">
    <h1><?php 
echo Html::encode($this->title);
?>
</h1>
</div>
<p>
    <?php 
echo Html::a(Module::t('CREATE'), ['create'], ['class' => 'btn btn-success']);
?>
</p>
<?php 
echo GridView::widget(['tableOptions' => ['class' => 'table table-striped'], 'dataProvider' => $dataProvider, 'filterModel' => $searchModel, 'columns' => [['class' => 'yii\\grid\\SerialColumn'], 'id', 'title', 'alias', 'created_at:datetime', 'updated_at:datetime', ['attribute' => 'published', 'filter' => Page::publishedDropDownList(), 'value' => function ($model) {
    return Yii::$app->formatter->asBoolean($model->published);
}], ['class' => 'yii\\grid\\ActionColumn', 'template' => "{update}\n{delete}"]]]);