Пример #1
0
 /**
  * Creates a new Object model.
  * If creation is successful, the browser will be redirected to the 'view' page.
  * @return mixed
  */
 public function actionCreate()
 {
     $model = new Object();
     if ($model->load(Yii::$app->request->post()) && $model->save()) {
         return $this->redirect(['view', 'id' => $model->id]);
     } else {
         return $this->render('create', ['model' => $model]);
     }
 }
Пример #2
0
 public function beforeSave($insert)
 {
     if (parent::beforeSave($insert)) {
         if (!$this->id) {
             if (!$this->user_id) {
                 $this->user_id = Yii::$app->user->identity->id;
             }
             if ($this->object_id < 1) {
                 $object = new Object();
                 $object->save();
                 $this->object_id = $object->id;
             }
         }
         return true;
     }
     return false;
 }