Ejemplo n.º 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]);
 }
 /**
  * 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.');
     }
 }