Example #1
0
 public function getEmailConfig()
 {
     if (!$this->owner_name || !$this->owner_event) {
         return null;
     }
     return EmailConfig::findOne(['owner_name' => $this->owner_name, 'owner_event' => $this->owner_event]);
 }
 public function search($params)
 {
     $query = EmailConfig::find();
     $dataProvider = new ActiveDataProvider(['query' => $query]);
     if (!($this->load($params) && $this->validate())) {
         return $dataProvider;
     }
     $query->andFilterWhere(['id' => $this->id]);
     $query->andFilterWhere(['like', 'title', $this->title])->andFilterWhere(['like', 'subject', $this->subject])->andFilterWhere(['like', 'content', $this->content])->andFilterWhere(['like', 'owner_name', $this->owner_name])->andFilterWhere(['like', 'owner_event', $this->owner_event]);
     return $dataProvider;
 }
 /**
  * Finds the EmailConfig model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return EmailConfig the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = EmailConfig::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }