Example #1
0
 /**
  * Creates a new Riskhead model.
  * If creation is successful, the browser will be redirected to the 'view' page.
  * @return mixed
  */
 public function actionCreate()
 {
     $model = new Riskhead();
     if ($model->load(Yii::$app->request->post())) {
         $this->Uploadsph(false);
         if ($model->save()) {
             return $this->redirect(['view', 'id' => $model->risk_id]);
         }
     } else {
         $model->ref = substr(Yii::$app->getSecurity()->generateRandomString(), 10);
     }
     return $this->render('create', ['model' => $model, 'prodetail' => []]);
 }