Jump to content

Parkho

Moderators
  • Posts

    1381
  • Joined

  • Last visited

  • Days Won

    6

Everything posted by Parkho

  1. Have you changed the codes cause I see numbers with a lot of digits.
  2. Yes it's always the case which is normal.
  3. Yes. Okay I will look into it.
  4. Yes I know what you mean but don't you think that would make a long list?!
  5. YW
  6. they all work just fine. Have you installed every part correctly? Also I didn't get what to amend!!
  7. Are you on free website? Cause I think your web hosting is out of service.
  8. Use the kACARS-free instead.
  9. Make a file named GetPilotData.class.php. Inside that file write the followng and save it. Now upload it into core/common folder. <?php class GetPilotData extends CodonData { public function getallpilots($limit) { $sql='SELECT * FROM phpvms_pilots ORDER BY pilotid DESC LIMIT '.intval($limit); return DB::get_results($sql); } } ?> Now in the following code <table width="40%"> <tr> <th align="center">Country (Flag) </th> <th align="center">|</th> <th align="center">Pilot ID - Pilot Name </th> <th align="center">|</th> <th align="center">HUB</th> </tr> <?php $pilotinfo = PilotData::getallpilots(); foreach($pilotinfo as $pilot) { ?> <tr> <td align ="center"><?php echo Countries::getCountryName($pilot->location);?> ( <img src="<?php echo Countries::getCountryImage($pilot->location);?>"> )</td> <td align="center">|</td> [b]<td align ="center"><a href="<?php echo url('/profile/view/'.$pilot->pilotid);?>"><?php echo $pilot->code.$pilot->pilotid.' - '.$pilot->firstname.' '.$pilot->lastname ;?></a></td>[/b] <td align="center">|</td> <td align ="center"><?php echo $pilot->hub ;?></td> </tr> <?php } ?> </table> replace this: $pilotinfo = PilotData::getallpilots(); With this: $pilotinfo = GetPilotData::getallpilots(3); 3 is the number of rows the function returns. Thanks
  10. Okay good!
  11. Open core/local.config.php and find the following 3 lines. Change the width and height as desired. # Google Map Options Config::Set('MAP_WIDTH', '800px'); Config::Set('MAP_HEIGHT', '600px');
  12. Not working!!!???? Where did you upload the .js files?
  13. Pagination added to the module. Please merge the new files and pilot_manager.tpl.
  14. I used a pagination for one of my add on which I got from Google search, I can offer you that if you want.
  15. Hello, I can design a system for your new airline but would you be interested to pay for your request?
  16. I think you have used the date function and that counts the days from Jan 1st, 1970. Try using the following to calculate the days: <?php echo $pilot->lastpirep ;?>
  17. What's wrong?
  18. Hi All, The Pilot Manager V2.0 is now ready for download at github. Change Log: 1. Images removed and changed to buttons. 2. blank email, and edit buttons have been added. 3. The edit button will open a table where you can edit the pilot at the same page. 4. Email confirmation page has been added. Update: 5. Pagination added. Screenshots: ------------------ --------- ----------- --------
  19. Well to start off, you need to set up a module with tpl files. if you have let's say 2 airlines you'll need schedule_results.tpl and another tpl to show to your pilots at first when they open the booking page with airline selection. Then pass the value of selected airline to a function to filter out the schedules.
  20. Yes you can do that for sure but it requires a knowledge of php and html coding.
  21. Hey there, What you need is not just some codes it's actually a lot of codes and require a quiet amount of time.
  22. Nope, that I can't do.
  23. The error says that the system can't read the tpl files from their location cause they don't exist. Have you installed a new skin? if yes make sure the TPL files are inside the skin folder specially the header and the footer.
  24. You're welcome.
×
×
  • Create New...