コード例 #1
0
ファイル: DefaultController.php プロジェクト: tejrajs/setting
 public function actionSaveEmail()
 {
     $model = new EmailForm();
     if ($model->load(Yii::$app->request->post()) && $model->update()) {
         return $this->redirect(['default/index']);
     }
 }
コード例 #2
0
ファイル: EmailController.php プロジェクト: tejrajs/setting
 public function actionIndex()
 {
     $model = new EmailForm();
     if ($model->load(Yii::$app->request->post()) && $model->update()) {
         return $this->redirect(['index']);
     } else {
         return $this->render('index', ['model' => $model]);
     }
 }