Esempio n. 1
0
 protected function add_airline_post()
 {
     $this->post->code = strtoupper($this->post->code);
     if ($this->post->code == '' || $this->post->name == '') {
         $this->set('message', 'You must fill out all of the fields');
         $this->render('core_error.tpl');
         return;
     }
     if (OperationsData::GetAirlineByCode($this->post->code)) {
         $this->set('message', 'An airline with this code already exists!');
         $this->render('core_error.tpl');
         return;
     }
     OperationsData::AddAirline($this->post->code, $this->post->name);
     if (DB::errno() != 0) {
         if (DB::errno() == 1062) {
             // Duplicate entry
             $this->set('message', 'This airline has already been added');
         } else {
             $this->set('message', 'There was an error adding the airline');
         }
         $this->render('core_error.tpl');
         return;
     }
     $this->set('message', 'Added the airline "' . $this->post->code . ' - ' . $this->post->name . '"');
     $this->render('core_success.tpl');
     LogData::addLog(Auth::$userinfo->pilotid, 'Added the airline "' . $this->post->code . ' - ' . $this->post->name . '"');
 }
Esempio n. 2
0
 public static function SiteSetup()
 {
     /*$_POST['SITE_NAME'] == '' || $_POST['firstname'] == '' || $_POST['lastname'] == ''
     		|| $_POST['email'] == '' ||  $_POST['password'] == '' || $_POST['vaname'] == ''
     		|| $_POST['vacode'] == ''*/
     // first add the airline
     $_POST['vacode'] = strtoupper($_POST['vacode']);
     if (!OperationsData::AddAirline($_POST['vacode'], $_POST['vaname'])) {
         self::$error = DB::$error;
         return false;
     }
     // Add an initial airport/hub, because I love KJFK so much
     $data = array('icao' => 'KJFK', 'name' => 'Kennedy International', 'country' => 'USA', 'lat' => '40.6398', 'lng' => '-73.7787', 'hub' => false, 'fuelprice' => 0);
     $ret = OperationsData::AddAirport($data);
     // Add the user
     $data = array('firstname' => $_POST['firstname'], 'lastname' => $_POST['lastname'], 'email' => $_POST['email'], l, 'password' => $_POST['password'], 'code' => $_POST['vacode'], 'location' => 'US', 'hub' => 'KJFK', 'confirm' => true);
     if (!RegistrationData::AddUser($data)) {
         self::$error = DB::$error;
         return false;
     }
     // Add a rank
     RanksData::updateRank(1, 'New Hire', 0, fileurl('/lib/images/ranks/newhire.jpg'), 18.0);
     # Add to admin group
     $pilotdata = PilotData::GetPilotByEmail($_POST['email']);
     if (!PilotGroups::AddUsertoGroup($pilotdata->pilotid, 'Administrators')) {
         self::$error = DB::$error;
         return false;
     }
     # Add the final settings in
     SettingsData::SaveSetting('SITE_NAME', $_POST['SITE_NAME']);
     SettingsData::SaveSetting('ADMIN_EMAIL', $_POST['email']);
     SettingsData::SaveSetting('GOOGLE_KEY', $_POST['googlekey']);
     return true;
 }