Jump to content

Parkho

Moderators
  • Posts

    1381
  • Joined

  • Last visited

  • Days Won

    6

Everything posted by Parkho

  1. The table you need to look at is phpvms_pilots.
  2. The code is looking for all aircraft that has the same name and checks if they're enabled or disabled, so I think it should work just fine with aircraft name. Check if Nigeria aircraft has the same name as "B737-700" if not change it so that it works.
  3. Add the following function to your StasData.class.php: public function TotalCargoCarried($airline_code = '') { return self::getTotalForCol(array( 'table' => 'pireps', 'column' => 'load', 'airline_code' => $airline_code, 'where' => array( 'accepted' => PIREP_ACCEPTED, 'flighttype' => 'C', ), 'func' => 'SUM', ) ); } Add the following line to your <div> : <strong>Cargo Carried: </strong><?php echo StatsData::TotalCargoCarried(); ?> lbs<br> Screenshot:
  4. Perfect.
  5. Sorry. I changed the code: if($route->enabled == "0") { continue; }
  6. The FBS V3 is not yet available as it has had some issues for a long time and I need to resolve those issues before I can release it but once it's gonna be available I think I might release it as payware.
  7. Yes there is. Open schedule results.tpl and right after the "foreach()" loop add the following code: if($route->disabled == "1") //The $route variable might be something different in your schedule_results.tpl, so make sure of that. { continue; }
  8. yw
  9. Try this: 1. In your OperationsData.class.php add the following function: public function get_aircraft_by_name($name) { $sql = "SELECT * FROM phpvms_aircraft WHERE name='$name'"; return DB::get_row($sql); } 2. In your schedule_results.tpl after "foreach" loop add the following: $enable = OperationsData::get_aircraft_by_name($route->aircraft); if($enable->enabled == "0") { continue; } I have not tested this so just give it a try and if it has an issue let me know.
  10. yes it's possible. You need to get the route's aircraft, put it in a function to see if it's enabled. The results will be 0 for disabled or 1 for enabled then you say if the route's aircraft enabled is equal to 0 (disabled) then continue showing the next route meaning hiding the route from the results.
  11. You can use it in your default schedule search.
  12. Where you want to use it. Normally people will add that to their website's front page.
  13. You need to remove the pagination if you want to show all pilots. Replace the attached file in admin/templates/pm folder. pilot_manager.zip
  14. PIREPS report aircraft ID in the table, so add the following to your "OperationsData.class.php": public function GetAircraftById($id) { $sql="SELECT * FROM phpvms_aircraft WHERE id='$id' "; return DB::get_row($sql); } And: $aircraft = OperationsData::GetAircraftById($pirep->aircraft); <?php echo $aircraft->fullname; ?> This will give you aircraft full name.
  15. Wait for 15 seconds!
  16. Wait for 15 seconds!
  17. Sure!
  18. A new version of PilotManager is now available. Change Log: -New look. -Sending email is now from a drop down. (Thanks to aarbee for the idea). -Pagination styles has been changed. Download & Install: Get the new version and instructions from Github. Try-Out: Visit my website and click "Module Test"
  19. That's because your ACARS reports the fuel amount in KG.
  20. Can you email me your pilot_manager.tpl file to parkho@parkho.ir?
  21. I just noticed a bug in pilot_manager.tpl and fixed the links to images. Please re download that particular file. Thanks
  22. Images are supposed to go to admin/lib/images folder.
  23. I think you have skin problem. In that area, unfortunately, I can't help you.
  24. You can add this to your page: <?php $pilotid = Auth::$userinfo->pilotid; $report = PIREPData::getlasreports($pilotid, 1); $aircraft = OperationsData::getaircraftinfo($report->aircraft); ?> <table> <tr><td>Aircraft</td><td>Aircraft Location</td></tr> <tr><td><?php echo $aircraft->name ;?></td><td><?php echo $report->arricao ;?></td></tr> </table> You can add this to any page that you want.
×
×
  • Create New...