-
Posts
1381 -
Joined
-
Last visited
-
Days Won
6
Content Type
Profiles
Forums
phpVMS Resources
Downloads
Everything posted by Parkho
-
FlightBookingSystem_V2.0 (Removed from Github due to some issues)
Parkho replied to Parkho's topic in Parkho's Addons
Yes I coded it to place the new pilots at their HUB since they have no PIREPS yet and the old pilots at their last PIREP arrival airport. -
<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>
-
Sure there is. My PilotManager add-on.
-
Open Finance.php in admin/modules/Finance and look for the following: $this->set('title', 'Balance Sheet for Last 3 Months');
-
If I understood your question correctly, you want your pilots to have a pilot id like "PR002" and your flight routes are like "PAL123". For this you can add an airline in admin center with code "PR" and name "Philippine Airlines" and restrict your pilots to only use the "PR" airline at registration stage. For "PAL" all you need to do is to add your schedules with "PAL" airlines and that should do it. For restricting your pilots at registration stage open registration_mainform.tpl and find the following: <dt>Select Airline: *</dt> <dd> <select name="code" id="code"> <?php foreach($allairlines as $airline) { echo '<option value="'.$airline->code.'">'.$airline->code.' - '.$airline->name.'</option>'; } ?> </select> </dd> Then change it to the following: <dt>Select Airline: *</dt> <dd> <select name="code" id="code"> <?php foreach($allairlines as $airline) { if($airline->code == "PR") { echo '<option value="'.$airline->code.'">'.$airline->code.' - '.$airline->name.'</option>'; } } ?> </select> </dd>
-
<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> <td align ="center"><?php echo $pilot->code.$pilot->pilotid.' - '.$pilot->firstname.' '.$pilot->lastname ;?></td> <td align="center">|</td> <td align ="center"><?php echo $pilot->hub ;?></td> </tr> <?php } ?> </table> Screenshot:
-
FlightBookingSystem_V2.0 (Removed from Github due to some issues)
Parkho replied to Parkho's topic in Parkho's Addons
The V2.0 has been removed due to some issues, so I'm trying to get it fixed ASAP. Have you replaced yours with V2.0? -
If you don't want to use the bidding system then you'll have to restrict your pilots on PIREP submission.
-
-
I can give you a static map that only shows the departure and arrival if you want and nothing more.
-
What do you intend to do then? Cause if you're trying to restrict some routes for higher ranks then that goes to schedule_results.tpl which will be showed when you are to bid on a flight.
-
Are you using any shared hosts or free websites? Cause normally people with those will get such error message.
-
This means the TPL file is not where it's supposed to be. Add-ons normally have TPL files stored either in a folder (ex. core/templates/xxx/xxx_xxx.tpl) or directly in the templates folder (ex. core/templates/xxx_xxx.tpl) but some add-ons modify the core TPL files which upon uploading get overwritten, so it's better to place the TPL files in the skin folder instead (ex. lib/skin/crystal/xxx_xxx.tpl). I hope this helps you.
-
Are you using the default booking system? If yes, I have a module which is based on 2 different modules which I mixed them. That module has aircraft restrictions and the pilot who's rank is not high enough won't be able to see those heavy aircraft to begin with. Here is the link: FlightBookingSystem_V1.0
-
Switch to kACARS-Free and all the issues will be gone. Great interface as well as really good support, Jeff did a really great job on kACARS. You can see the link in the forum's first page for the software.
-
FlightBookingSystem_V2.0 (Removed from Github due to some issues)
Parkho replied to Parkho's topic in Parkho's Addons
Yes, unfurtunately my website has been down for a week now. I'm trying to get it up and running. -
I have changed the codes in the common file as attached, those of you who installed the module and have the error, replace the attached file. install the module and address to www.yoursite.com/index.php/pfinance/pilots for all pilots. PilotFinance.class.php
-
When I try to import flights by csv the day is only Monday
Parkho replied to Guy1300's topic in Support Forum
Try 0123456 instead. Cause as I recall, phpvms used to recognize 0 as Sunday. -
You need to create a folder called "Fleet" in core/module and inside that folder make a file called "Fleet.php" then open the fleet.php and paste the above code in there. Also, you need to place the "fleet_main.tpl" in you skin folder or in core/templates if you're using the default skin. Remember, the module folder and the file inside that are case sensitive. To create a link to call the module use the following code: < a hre="<?php echo url('/fleet') ;?>">Fleet Page</a>
-
NOOOOO! LOL I was writing a new reply then I realized my answer isn't appropriate and normally since you can't delete your post, you write delete instead meaning this post has to be deleted.
-
Okay, so you want to divide the planes into classes and basically at the last tab show the details. Do you have any templates already made? or you want to do this from scratch?
-
Do you wanna show the number of planes only or the details as well?
-
What status are you talking about?