Jump to content

Parkho

Moderators
  • Posts

    1381
  • Joined

  • Last visited

  • Days Won

    6

Everything posted by Parkho

  1. Okay I got it! this goes to your .tpl anywhere in the table: <tr> <td align="center">DH8:</td> <td align="center"><?php echo OperationsData::getAircraftByName(DH8);?></td> </tr> Now change this in your OperationsData.class.php : public static function getAircraftByName($name) { $name = DB::escape(strtoupper($name)); $sql = 'SELECT * FROM ' . TABLE_PREFIX .'aircraft WHERE UPPER(`name`)=\''.$name.'\''; return DB::get_row($sql); } To this: public static function getAircraftByName($icao) { $query = "SELECT * FROM " . TABLE_PREFIX ."aircraft WHERE icao ='".$icao."'"; $results = DB::get_results($query); return DB::num_rows($results); } Remember to put aircraft icao (A322) instead of aircraft name (A320-200) in the .tpl
  2. okay! wait i'm testing it
  3. how many a/c do you have?
  4. Okay here you go: <?php foreach ($fleet as $aircraft) { $amount = OperationsData::getAircraftByName($aircraft->name); echo count($amount) ; } ?> Now if you want to put that in the table then <?php foreach ($fleet as $aircraft) { $amount = OperationsData::getAircraftByName($aircraft->name); ?> <tr><td align="center"><?php echo count($amount) ;?></td></tr> <?php } ?> Tested and working.
  5. Don't know, didn't test it and waiting for Taylor.
  6. Wait! <?php $amount = OperationsData::getAircraftByName(DH8); foreach($fleet as $aircraft) { if($aircraft->name == "DH8") { echo $amount ; } } ?> Try this
  7. change the $aircrafts to $allaircrafts, I think that might be it.
  8. <?php $amount = OperationsData::getAircraftByName(DH8); foreach($aircrafts as $aircraft) { if($aircraft->name == DH8) { echo $amount ; } } ?> Try this. But I haven't tested it.
  9. Remove the util::formatduration() every where you see it in the results.tpl. You can use notepad++(search web) to open it and see if it's fixed.
  10. Okay. Now we're talking, so you want to show how many aircraft of a certain type you got in your fleet? or please explain what exactly do you want to show in fleet page?
  11. Are you using any add-on for the fleet page? if yes, then we can write a little piece to pull out the number of fleet. here is an add-on that I'm using: http://forum.phpvms.net/topic/1522-fleet-table
  12. Your code was written wrong, so I just corrected it for you not knowing what you're trying to pull out. If you can post the entire codes for that fleet page of yours, then we can see where the problem is and fix it for you.
  13. Try this <?php if($aircraft->name == DH8) { echo $amount ; } ?>
  14. To all the people who are using this add-on I added a print option to the bottom of the result.tpl. Now you can print the data if you want.
  15. You're welcome, Hope you enjoy it.
  16. Great! I'm happy that it works for you.
  17. What version of phpvms are you running?
  18. Well! to be honest it's working just fine on my side. Look into result.tpl, the problem comes from there. Also, the timing is not a function it's just a simple division and the result goes into the util::formatduration() cammand.
  19. You're welcome, hope this works fine
  20. This is a flight duration calculator. The results are of course estimated but with this you could have an idea of how to manage your schedules when adding them. This is an open source module, so feel free if you want to make changes. Install: 1. Download the zip. 2. Unzip & upload in the order of folder structure. 3, Make a link to access it by <?php echo url('duration') ;?>. Pix: Download at Github: Github.com/parkho
  21. Hi Edwin Unfortunately that's not possible with this one but I'm working on simpilot's realschedulelite add-on to be a mixture of this and his, so hang in there until then. thanks
  22. Okay! How do I call that function in a .tpl form? or is it possible?
  23. I installed your skin on a test website and first off it's not coming up correctly. Secondly, I tried to open the acars page, but I get an error that the Google map has an invalid key inserted and then gives me the web address to obtain a key. I think the template has been set in a way that the browser can't register the Google map from it. I also tried to look into the template files and style.css but didn't see anything strange there. Now, you need to get in contact with the guy who did this template for you and ask him to fix this since he knows what he did but I'll work on it more and let you know if I could resolve the problem.
  24. Thanks a lot.
  25. Are you entering 10000 in both fields or just the one on top?
×
×
  • Create New...