Example #1
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = CmsPages::find();
     $dataProvider = new ActiveDataProvider(['query' => $query]);
     $this->load($params);
     if (!$this->validate()) {
         // uncomment the following line if you do not want to return any records when validation fails
         // $query->where('0=1');
         return $dataProvider;
     }
     $query->andFilterWhere(['id' => $this->id, 'created_at' => $this->created_at, 'updated_at' => $this->updated_at, 'is_active' => $this->is_active, 'sort_order' => $this->sort_order]);
     $query->andFilterWhere(['like', 'cms_pages_lang.title', $this->title])->andFilterWhere(['like', 'content', $this->content])->andFilterWhere(['like', 'content_heading', $this->content_heading])->andFilterWhere(['like', 'identifier', $this->identifier])->andFilterWhere(['like', 'code_id', $this->code_id])->andFilterWhere(['like', 'category_id', $this->category_id])->andFilterWhere(['like', 'mapping_id', $this->mapping_id])->andFilterWhere(['like', 'meta_keywords', $this->meta_keywords])->andFilterWhere(['like', 'meta_description', $this->meta_description]);
     $query->joinWith(['cmsPagesLangs' => function ($query) {
         $query->where(['language' => Yii::$app->language]);
     }]);
     return $dataProvider;
 }
Example #2
0
use yii\helpers\ArrayHelper;
use yii\widgets\ActiveForm;
use backend\models\CmsPages;
/* @var $this yii\web\View */
/* @var $model backend\models\GeneralSettings */
/* @var $form yii\widgets\ActiveForm */
?>

<div class="general-settings-form">

    <?php 
$form = ActiveForm::begin();
?>

    <?php 
echo $form->field($model, '[]value')->dropDownList(ArrayHelper::map(CmsPages::find()->all(), 'id', 'title'), ['prompt' => Yii::t('backend', 'Select Page')])->label(false);
?>

    <?php 
echo $form->field($model, '[]id')->hiddenInput()->label(false);
?>


    <div class="form-group">
        <?php 
echo Html::submitButton($model->isNewRecord ? Yii::t('backend', 'Create') : Yii::t('backend', 'Update'), ['class' => $model->isNewRecord ? 'btn btn-success' : 'btn btn-primary']);
?>
    </div>

    <?php 
ActiveForm::end();
Example #3
0
 /**
  * Finds the CmsPages model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return CmsPages the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = CmsPages::find()->where(['id' => $id])->multilingual()->one()) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }