예제 #1
0
파일: Tour.php 프로젝트: phplego/testwork1
 public function afterSave($insert, $changedAttributes)
 {
     parent::afterSave($insert, $changedAttributes);
     // Create fields for columns
     foreach (Booking::getTableSchema()->columnNames as $column) {
         $field = new TourField();
         $field->tour_id = $this->id;
         $field->name = $column;
         $field->title = "";
         try {
             $field->save(false);
         } catch (Exception $e) {
         }
     }
 }
예제 #2
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = TourField::find();
     // add conditions that should always apply here
     $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;
     }
     // grid filtering conditions
     $query->andFilterWhere(['id' => $this->id, 'tour_id' => $this->tour_id, 'sort' => $this->sort]);
     $query->andFilterWhere(['like', 'name', $this->name]);
     $query->andFilterWhere(['like', 'title', $this->title]);
     $query->addOrderBy("sort, id");
     return $dataProvider;
 }
예제 #3
0
 /**
  * Finds the TourField model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return TourField the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = TourField::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }
예제 #4
0
 public function getFields()
 {
     return $this->hasMany(TourField::className(), ['tour_id' => 'tour_id'])->orderBy('sort');
 }