Example #1
0
 /**
  * Add new airport from pop up by ajax
  * CODE:airport_create
  */
 public function executeUpdateAjax(sfWebRequest $request)
 {
     # security
     if (!$this->getUser()->hasCredential(array('Administrator'), false)) {
         $this->getUser()->setFlash("warning", 'You don\'t have permission to access this url ' . $request->getReferer());
         $this->redirect('dashboard/index');
     }
     //    $this->setLayout(false);
     $airport = new Airport();
     $this->airport = $airport;
     $this->form = new AirportForm($airport);
     $this->back = $request->getReferer();
     if ($request->isMethod('post')) {
         $this->referer = $request->getReferer();
         $this->form->bind($request->getParameter('airp'));
         if ($this->form->isValid() && $this->form->getValue('ident')) {
             if ($this->form->getValue('ident') && $request->getParameter('id')) {
                 $is_used = AirportPeer::getByIdent($this->form->getValue('ident'));
                 $airport->setIdent($is_used->getIdent());
             } elseif ($this->form->getValue('ident') && !$request->getParameter('id')) {
                 //new
                 $is_used = AirportPeer::getByIdent($this->form->getValue('ident'));
                 if (isset($is_used)) {
                     if ($is_used->getIdent() == $this->form->getValue('ident')) {
                         if ($request->getParameter('back') == null) {
                             $last = $request->getReferer();
                         } else {
                             $last = $request->getParameter('back');
                         }
                         if (strstr($last, 'camp/create')) {
                             $back_url = $last;
                         } elseif (strstr($last, 'fbo/create')) {
                             $back_url = $last;
                         } else {
                             $back_url = 'airport';
                         }
                         $this->getUser()->setFlash('success', 'This Airport Ident has already used. Please confirm else!');
                         $this->redirect($back_url);
                     }
                 } elseif ($this->form->getValue('ident') == 'null') {
                     $airport->setIdent(null);
                 } else {
                     $airport->setIdent($this->form->getValue('ident'));
                 }
             }
             $airport->setName($this->form->getValue('name'));
             $airport->setCity($this->form->getValue('city'));
             $airport->setState($this->form->getValue('state'));
             $airport->setLatitude($this->form->getValue('latitude'));
             $airport->setLongitude($this->form->getValue('longitude'));
             $airport->setRunwayLength($this->form->getValue('runway_length'));
             if ($this->form->getValue('wing_id') == 0) {
                 $airport->setWingId(null);
             } else {
                 $airport->setWingId($this->form->getValue('wing_id'));
             }
             $airport->setGmtOffset($this->form->getValue('gmt_offset'));
             $airport->setDstOffset($this->form->getValue('dst_offset'));
             $airport->setZipcode($this->form->getValue('zipcode'));
             if ($this->form->getValue('closed') == null) {
                 $airport->setClosed(0);
             } else {
                 $airport->setClosed($this->form->getValue('closed'));
             }
             if ($airport->isNew()) {
                 $content = $this->getUser()->getName() . ' added new Airport: ' . $airport->getName() . ' (' . $airport->getIdent() . ')';
                 ActivityPeer::log($content);
             }
             $airport->save();
             $str = '<script type="text/javascript">' . 'var a = $id;' . "window.\$('#back_airport_id').val('');" . "window.\$('#back_airport_id').val(a);" . "window.\$('#back1').val(\$('#camp_agency_id').val());" . "window.location.reload();" . '</script>';
             $this->getUser()->setFlash('success', 'New Airport created successfully!');
             $this->formValid = true;
             $this->airportName = $airport->getName();
             //return $this->renderText($str);
         } else {
             $str = '<script type="text/javascript">' . "//window.setTimeout(\\'window.location.reload()\\', 1500);" . 'window.location.reload();' . '</script>';
             $this->getUser()->setFlash('success', 'Can not create new Airport without datas!');
             $this->formNotValid = true;
             //return $this->renderText($str);
         }
     } else {
         # Set referer URL
         $this->referer = $request->getReferer() ? $request->getReferer() : '@airport';
     }
     $this->airport = $airport;
 }