Jump to content

Parkho

Moderators
  • Posts

    1381
  • Joined

  • Last visited

  • Days Won

    6

Everything posted by Parkho

  1. *More than 50 different destinations. *20 A/C types *Advanced flight booking system *Weekly events and group flights. *FSPassengers pirep system with all the positive and negative points counted for pilot ranking. Website: www.alvandair.com Picture:
  2. Hello Simpilot Just wanted to thank you for this and let you know that I managed the coding and it's now working like a charm. Here is my site for reference : www.alvandair.com Thanks again Cheers
  3. Hi Simpilot Is it possible to change the code to find the lowest or highest between the landing rates and show them as the best and the worst on daily PIREPS? Thanks
  4. Ok thanks I'll see what i can do.
  5. Well I just added the function to the Class and called it in my .tpl, does it mean that I have to assign the month and the year in the module?
  6. Hi Simpilot ok here is what I did: 1. I added the public function to TouchDownStats.class.data 2. The I changed the code of my table to the following: <?php $stats = TouchdownStatsData::get_monthly_landingrate($month, $year, '2'); <====== Here! foreach($stats as $stat) { $pilot = PilotData::getPilotData($stat->pilotid); $aircraft = OperationsData::getAircraftInfo($stat->aircraft); echo '<tr>'; echo '<td align="center">'.$pilot->firstname.' '.$pilot->lastname.'</td>'; echo '<td align="center">'.$aircraft->name.'</td>'; echo '<td align="center"><font color="red">'.$stat->landingrate.' ft/m</font></td>'; echo '</tr>'; } ?> But I get this error: Warning: Invalid argument supplied for foreach() in /home/alvandai/domains/alvandair.com/public_html/lib/skins/aqua/frontpage_main.tpl on line 204 and the table is empty. I don't know where I'm doing it wrong!
  7. Thanks a lot I'll give it a try see what happens.
  8. Thank you Simpilot Is it possible to implement this into TouchdownStats module? Cheers
  9. Hello All I have a question. Is it possible to get the pilot of the month by landing rate? Thanks
  10. Thank you Sir!
  11. Hi All I have created a set of pilot rank images based on FSPassengers pilot ranks (c0 - c23). If you're interested just download the ZIP file and place it in root directory of your site and just use the image links in Pilot Ranks inside Admin Center. Cheers Parkho Ranks.zip
  12. Hi guys I have a problem. When I add the event nothing shows up in Event Main page, but the news will show up! Any suggestions? Thanks -----PROBLEM SOLVED -------- Please disregard!
  13. I,ve enabled that in config.php but it doesn't work!
  14. yeah actually it does deduct the amount from pilot pay just doesn't show it in confirmation page!
  15. Hi there.<br /> Please try the attachment as I figured out a way for your pilots to pay for transfer. Please install and/or replace the new files in the order.<br /> Thanks core.zip
  16. Hi jelletjuh Please verify your "Current Location" and also make sure that there is a route from ESMS and the option "Disable bids on bid" is not set to true since this is option works when there is a bid on the route and basically doesn't show you the route. Thanks
  17. Hi Ephendi The FBS is based on pilot's last arrival and has nothing to do with the aircraft transfer. If you don't see schedules doesn't mean it has no aircraft but it means that route has either a bid on it or is not for that day of the week. Thanks
  18. Hi Ephendi If I'm following you, you need the aircraft to be transferred as well? or just the aircraft and no pilots! Cause RSL is based on pilot location since it only has one DB to store pilot location and basically has no mean to store Aircraft location in DB. If that's the case I would say the Flight Booking System can not locate aircraft location if you want that, why not using the RSL itself as it's pretty much complete and fulfill all your needs. Thanks
  19. Hello All I have been trying to find a way to implement pilots restrictions on Arcraft into the great Front Schedules add on made by Simpilot. So far, I managed to change the frontscheduledata.class to show me only the schedules with the proper pilot ranking but it shows me one route per pilot meaning if I have 10 pilots it shows me the same route 10 times in the schedules results. Here is the original code: <?php //simpilotgroup addon module for phpVMS virtual airline system // //simpilotgroup addon modules are licenced under the following license: //Creative Commons Attribution Non-commercial Share Alike (by-nc-sa) //To view full icense text visit http://creativecommons.org/licenses/by-nc-sa/3.0/ // //@author David Clark (simpilot) //@copyright Copyright (c) 2009-2010, David Clark //@license http://creativecommons.org/licenses/by-nc-sa/3.0/ class FrontSchedulesData extends CodonData { public function findschedules($arricao, $depicao, $airline, $aircraft) { $query = "SELECT phpvms_schedules.*, phpvms_aircraft.name AS aircraft, phpvms_aircraft.registration FROM phpvms_schedules, phpvms_aircraft WHERE phpvms_schedules.depicao LIKE '$depicao' AND phpvms_schedules.arricao LIKE '$arricao' AND phpvms_schedules.code LIKE '$airline' AND phpvms_schedules.aircraft LIKE '$aircraft' AND phpvms_aircraft.id LIKE '$aircraft'"; return DB::get_results($query); } public function findschedule($arricao, $depicao, $airline) { $query = "SELECT phpvms_schedules.*, phpvms_aircraft.name AS aircraft, phpvms_aircraft.registration FROM phpvms_schedules, phpvms_aircraft WHERE phpvms_schedules.depicao LIKE '$depicao' AND phpvms_schedules.arricao LIKE '$arricao' AND phpvms_schedules.code LIKE '$airline' AND phpvms_aircraft.id LIKE phpvms_schedules.aircraft"; return DB::get_results($query); } public function findaircrafttypes() { $query = "SELECT DISTINCT icao FROM phpvms_aircraft"; return DB::get_results($query); } public function findaircraft($aircraft) { $query = "SELECT id FROM phpvms_aircraft WHERE icao='$aircraft'"; return DB::get_results($query); } public function findcountries() { $query = "SELECT DISTINCT country FROM phpvms_airports"; return DB::get_results($query); } } And here is the part I changed: <?php //simpilotgroup addon module for phpVMS virtual airline system // //simpilotgroup addon modules are licenced under the following license: //Creative Commons Attribution Non-commercial Share Alike (by-nc-sa) //To view full icense text visit http://creativecommons.org/licenses/by-nc-sa/3.0/ // //@author David Clark (simpilot) //@copyright Copyright (c) 2009-2010, David Clark //@license http://creativecommons.org/licenses/by-nc-sa/3.0/ class FrontSchedulesData extends CodonData { public function findschedules($arricao, $depicao, $airline, $aircraft) { $query = "SELECT phpvms_schedules.*, phpvms_aircraft.name AS aircraft,phpvms_aircraft.registration,phpvms_pilots.ranklevel //added this FROM phpvms_schedules, phpvms_aircraft,phpvms_pilots /added this WHERE phpvms_schedules.depicao LIKE '$depicao' AND phpvms_schedules.arricao LIKE '$arricao' AND phpvms_schedules.code LIKE '$airline' AND phpvms_schedules.aircraft LIKE '$aircraft' AND phpvms_aircraft.ranklevel<=phpvms_pilots.ranklevel //added this line here AND phpvms_aircraft.id LIKE '$aircraft'"; return DB::get_results($query); } public function findschedule($arricao, $depicao, $airline) { $query = "SELECT phpvms_schedules.*, phpvms_aircraft.name AS aircraft, phpvms_aircraft.registration,phpvms_pilots.ranklevel //added this FROM phpvms_schedules, phpvms_aircraft,phpvms_pilots //added this WHERE phpvms_schedules.depicao LIKE '$depicao' AND phpvms_schedules.arricao LIKE '$arricao' AND phpvms_schedules.code LIKE '$airline' AND phpvms_aircraft.ranklevel<=phpvms_pilots.ranklevel / added this line AND phpvms_aircraft.id LIKE phpvms_schedules.aircraft"; return DB::get_results($query); } public function findaircrafttypes() { $query = "SELECT DISTINCT icao FROM phpvms_aircraft"; return DB::get_results($query); } public function findaircraft($aircraft) { $query = "SELECT id,phpvms_pilots.ranklevel FROM phpvms_aircraft, phpvms_pilots WHERE icao='$aircraft' AND phpvms_aircraft.ranklevel<=phpvms_pilots.ranklevel"; //Added this. return DB::get_results($query); } public function findcountries() { $query = "SELECT DISTINCT country FROM phpvms_airports"; return DB::get_results($query); } } Now here is the results: Can anyone tell me where I'm wrong? Cheers
  20. Hello All I have been trying to find a way to implement pilots restrictions on Arcraft into the great Front Schedules add on made by Simpilot. So far, I managed to change the frontscheduledata.class to show me only the schedules with the proper pilot ranking but it shows me one route per pilot meaning if I have 10 pilots it shows me the same route 10 times in the schedules results. Here is the original code: <?php //simpilotgroup addon module for phpVMS virtual airline system // //simpilotgroup addon modules are licenced under the following license: //Creative Commons Attribution Non-commercial Share Alike (by-nc-sa) //To view full icense text visit http://creativecommons.org/licenses/by-nc-sa/3.0/ // //@author David Clark (simpilot) //@copyright Copyright (c) 2009-2010, David Clark //@license http://creativecommons.org/licenses/by-nc-sa/3.0/ class FrontSchedulesData extends CodonData { public function findschedules($arricao, $depicao, $airline, $aircraft) { $query = "SELECT phpvms_schedules.*, phpvms_aircraft.name AS aircraft, phpvms_aircraft.registration FROM phpvms_schedules, phpvms_aircraft WHERE phpvms_schedules.depicao LIKE '$depicao' AND phpvms_schedules.arricao LIKE '$arricao' AND phpvms_schedules.code LIKE '$airline' AND phpvms_schedules.aircraft LIKE '$aircraft' AND phpvms_aircraft.id LIKE '$aircraft'"; return DB::get_results($query); } public function findschedule($arricao, $depicao, $airline) { $query = "SELECT phpvms_schedules.*, phpvms_aircraft.name AS aircraft, phpvms_aircraft.registration FROM phpvms_schedules, phpvms_aircraft WHERE phpvms_schedules.depicao LIKE '$depicao' AND phpvms_schedules.arricao LIKE '$arricao' AND phpvms_schedules.code LIKE '$airline' AND phpvms_aircraft.id LIKE phpvms_schedules.aircraft"; return DB::get_results($query); } public function findaircrafttypes() { $query = "SELECT DISTINCT icao FROM phpvms_aircraft"; return DB::get_results($query); } public function findaircraft($aircraft) { $query = "SELECT id FROM phpvms_aircraft WHERE icao='$aircraft'"; return DB::get_results($query); } public function findcountries() { $query = "SELECT DISTINCT country FROM phpvms_airports"; return DB::get_results($query); } } And here is the part I changed: <?php //simpilotgroup addon module for phpVMS virtual airline system // //simpilotgroup addon modules are licenced under the following license: //Creative Commons Attribution Non-commercial Share Alike (by-nc-sa) //To view full icense text visit http://creativecommons.org/licenses/by-nc-sa/3.0/ // //@author David Clark (simpilot) //@copyright Copyright (c) 2009-2010, David Clark //@license http://creativecommons.org/licenses/by-nc-sa/3.0/ class FrontSchedulesData extends CodonData { public function findschedules($arricao, $depicao, $airline, $aircraft) { $query = "SELECT phpvms_schedules.*, phpvms_aircraft.name AS aircraft,phpvms_aircraft.registration,phpvms_pilots.ranklevel //added this FROM phpvms_schedules, phpvms_aircraft,phpvms_pilots /added this WHERE phpvms_schedules.depicao LIKE '$depicao' AND phpvms_schedules.arricao LIKE '$arricao' AND phpvms_schedules.code LIKE '$airline' AND phpvms_schedules.aircraft LIKE '$aircraft' AND phpvms_aircraft.ranklevel<=phpvms_pilots.ranklevel //added this line here AND phpvms_aircraft.id LIKE '$aircraft'"; return DB::get_results($query); } public function findschedule($arricao, $depicao, $airline) { $query = "SELECT phpvms_schedules.*, phpvms_aircraft.name AS aircraft, phpvms_aircraft.registration,phpvms_pilots.ranklevel //added this FROM phpvms_schedules, phpvms_aircraft,phpvms_pilots //added this WHERE phpvms_schedules.depicao LIKE '$depicao' AND phpvms_schedules.arricao LIKE '$arricao' AND phpvms_schedules.code LIKE '$airline' AND phpvms_aircraft.ranklevel<=phpvms_pilots.ranklevel / added this line AND phpvms_aircraft.id LIKE phpvms_schedules.aircraft"; return DB::get_results($query); } public function findaircrafttypes() { $query = "SELECT DISTINCT icao FROM phpvms_aircraft"; return DB::get_results($query); } public function findaircraft($aircraft) { $query = "SELECT id,phpvms_pilots.ranklevel FROM phpvms_aircraft, phpvms_pilots WHERE icao='$aircraft' AND phpvms_aircraft.ranklevel<=phpvms_pilots.ranklevel"; //Added this. return DB::get_results($query); } public function findcountries() { $query = "SELECT DISTINCT country FROM phpvms_airports"; return DB::get_results($query); } } Now here is the results: Can anyone tell me where I'm wrong? Cheers
  21. Hello Mark J Please go the following link for Downloads. Thanks Parkho http://forum.phpvms.net/topic/4498-flightbookingsystem/
  22. Mr. Nadeem Thank you for your query. To be honest I haven't figured out that part yet but I'll see what I can do to make it work. Meanwhile, please stay in contact with me and I'll let you know of the results. Parkho
  23. Hi I was wondering if I could get a code to hide all schedules with the same A/C registration if it's been bid on. meaning, if someone places a bid on let's say KLAX to KSFO with A/C registration E-PA123. now another person is trying to bid on KSJC to KLAX with the same A/C registration E-PA123 but they can't because the A/C is already booked. Right now I have set it up to hide the schedule that has a bid on but can't figure it out for all the routes. Any help please?
  24. Parkho

    Fspax Log

    Hi All Recently, we have started using fspax to accept PIREPS. Now I need to know is there a way to view the reports just like the ones show in the FSPassengers website like the attached, image in our View Log section? Thanks
  25. Oh! thanks for letting me know. I'll change that.
×
×
  • Create New...