Esempio n. 1
0
 public function postAddFuncion()
 {
     $funcion = new Funcion();
     $funcion->nombre = Input::get('nombre');
     $funcion->save();
     foreach (Input::get('grupos') as $grupo) {
         $funcion->grupos()->attach($grupo);
     }
     foreach (Input::get('areas') as $area) {
         $funcion->areas()->attach($area);
     }
     return Redirect::to('gestor/funciones#edit-funcion');
 }
Esempio n. 2
0
 /**
  * Creates a new model.
  * If creation is successful, the browser will be redirected to the 'view' page.
  */
 public function actionCreate()
 {
     $model = new Funcion();
     // Uncomment the following line if AJAX validation is needed
     // $this->performAjaxValidation($model);
     if (isset($_POST['Funcion'])) {
         $model->attributes = $_POST['Funcion'];
         if ($model->save()) {
             $this->redirect(array('view', 'id' => $model->id));
         }
     }
     $this->render('create', array('model' => $model));
 }