コード例 #1
0
 /**
  * Creates a new TimePriceTicket model.
  * If creation is successful, the browser will be redirected to the 'view' page.
  * @return mixed
  */
 public function actionCreate()
 {
     $model = new TimePriceTicket();
     if ($model->load(Yii::$app->request->post())) {
         $post = Yii::$app->request->post();
         $post = $post["TimePriceTicket"];
         $model->startDateText = $post['startDateText'];
         $model->endDateText = $post['endDateText'];
         $model->save();
         return $this->redirect(['view', 'id' => $model->id]);
     } else {
         return $this->render('create', ['model' => $model]);
     }
 }