예제 #1
0
 public function save()
 {
     $status = false;
     if ($this->validate()) {
         $newDispoModel = new Disposale();
         $newDispoModel->dispo_name = $this->dispo_name;
         $newDispoModel->phone_number = $this->phone_number;
         $newDispoModel->posted_data = $this->posted_data;
         $status = $newDispoModel->save();
     }
     return $status;
 }
 /**
  * Creates a new model.
  * If creation is successful, the browser will be redirected to the 'view' page.
  */
 public function actionCreate()
 {
     $model = new Disposale();
     // Uncomment the following line if AJAX validation is needed
     // $this->performAjaxValidation($model);
     if (isset($_POST['Disposale'])) {
         $model->attributes = $_POST['Disposale'];
         if ($model->save()) {
             $this->redirect(array('view', 'id' => $model->id));
         }
     }
     $this->render('create', array('model' => $model));
 }