/**
  * Creates a new model.
  * If creation is successful, the browser will be redirected to the 'view' page.
  */
 public function actionCreate()
 {
     $model = new Equipos();
     // Uncomment the following line if AJAX validation is needed
     // $this->performAjaxValidation($model);
     if (isset($_POST['Equipos'])) {
         $model->attributes = $_POST['Equipos'];
         $model->Estado = "Activo";
         if ($model->save()) {
             $this->redirect(array('view', 'id' => $model->id));
         }
     }
     $this->render('create', array('model' => $model));
 }
 public function InsertarEquipo($device, $ipaddress, $numinventory, $location, $fabricante, $tipo)
 {
     $equipo = new Equipos();
     $equipo->name = "{$device}";
     $equipo->ifaddr = "{$ipaddress}";
     $equipo->otherserial = "{$numinventory}";
     $equipo->FK_glpi_enterprise = $fabricante;
     $equipo->location = $location;
     $equipo->type = $tipo;
     $equipo->save();
 }