/**
  * Creates a new Position model.
  * If creation is successful, the browser will be redirected to the 'view' page.
  * @return mixed
  */
 public function actionCreate()
 {
     $model = new Position();
     if ($model->load(Yii::$app->request->post()) && $model->save()) {
         return $this->redirect(['view', 'id' => $model->positio_id]);
     } else {
         return $this->render('create', ['model' => $model]);
     }
 }
 /**
  * Creates a new Position model.
  * If creation is successful, the browser will be redirected to the 'view' page.
  * @return mixed
  */
 public function actionCreate()
 {
     $model = new Position();
     $section_array = $this->getAllSection();
     $model->beforeSave(true);
     if ($model->load(Yii::$app->request->post()) && $model->save()) {
         return $this->redirect(['view', 'id' => $model->id]);
     } else {
         return $this->render('create', ['model' => $model, 'section_array' => $section_array]);
     }
 }
Beispiel #3
0
 public function run()
 {
     //copied from HackathonProjects.pdf
     $positions = array(array('abbr' => 'P'), array('abbr' => 'C'), array('abbr' => '1B'), array('abbr' => '2B'), array('abbr' => '3B'), array('abbr' => 'SS'), array('abbr' => 'LF'), array('abbr' => 'CF'), array('abbr' => 'RF'), array('abbr' => 'DH'), array('abbr' => 'PH'));
     foreach ($positions as $p) {
         $position = Position::where('abbr', $p['abbr'])->first();
         if (!$position) {
             $position = new Position();
             $position->abbr = $p['abbr'];
         }
         $position->save();
     }
 }