/**
  * Creates a new Objeto model.
  * If creation is successful, the browser will be redirected to the 'view' page.
  * @return mixed
  */
 public function actionCreate()
 {
     $this->comprobarPermiso();
     $model = new Objeto();
     $objetos = new CategoriasObjetos();
     $categorias = $objetos->getCategorias();
     $ubicacion = new Ubicaciones();
     $ubicaciones = $ubicacion->getUbicaciones();
     $tc = new TipoCategorias();
     $tiposCategorias = $tc->getTipoCategorias();
     if ($model->load(Yii::$app->request->post()) && $model->save()) {
         return $this->redirect(['view', 'id' => $model->id]);
     } else {
         return $this->render('create', ['model' => $model, 'categorias' => $categorias, 'ubicaciones' => $ubicaciones, 'tiposCategorias' => $tiposCategorias, 'estados' => Objeto::$estados]);
     }
 }