Example #1
0
 /**
  * example categoryName + className
  * @return array|\yii\db\ActiveRecord[]
  */
 public function getNameCatAndClass()
 {
     $cat_model = HotelCategory::find()->all();
     if ($cat_model) {
         foreach ($cat_model as $cat) {
             $cat->name = $cat->name . '-' . $cat->class->name;
         }
         return $cat_model;
     }
     return false;
 }
Example #2
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = HotelCategory::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, 'class_id' => $this->class_id, 'created_at' => $this->created_at, 'updated_at' => $this->updated_at, 'status' => $this->status, 'order' => $this->order]);
     $query->andFilterWhere(['like', 'name', $this->name]);
     return $dataProvider;
 }