/**
  * Creates a new Cube model.
  * If creation is successful, the browser will be redirected to the 'view' page.
  * @return mixed
  */
 public function actionCreate()
 {
     $model = new Cube();
     if ($model->load(Yii::$app->request->post()) && $model->save()) {
         $friend = new Friend();
         $friend->name = $model->friendName;
         $friend->cube_id = $model->id;
         $friend->save(false);
         return $this->redirect(['view', 'id' => $model->id]);
     } else {
         return $this->render('create', ['model' => $model]);
     }
 }
示例#2
0
 public function getFriend()
 {
     return $this->hasOne(Friend::className(), ['cube_id' => 'id'])->from(Friend::tableName() . ' friend');
 }