/**
  * Creates a new model.
  * If creation is successful, the browser will be redirected to the 'view' page.
  */
 public function actionCreate()
 {
     $model = new UnitMeasurable();
     // Uncomment the following line if AJAX validation is needed
     // $this->performAjaxValidation($model);
     if (isset($_POST['UnitMeasurable'])) {
         $model->attributes = $_POST['UnitMeasurable'];
         if ($model->save()) {
             $this->redirect(array('view', 'id' => $model->id));
         }
     }
     $this->render('create', array('model' => $model));
 }
Example #2
0
 public function saveUnitMeasurable($name)
 {
     $id = null;
     $exists = Category::model()->exists('id=:id', array(':id' => (int) $name));
     if (!$exists) {
         $model = new UnitMeasurable();
         $model->name = $name;
         $model->save();
         $id = $model->id;
     }
     return $id;
 }