ThomasH Posted April 13, 2010 Report Share Posted April 13, 2010 Does somebody know from you FSAirlines.net? There one can also select with the flight schedule choice which airplane one would like to take. Could one insert also with phpvms? Example: I have the possibility to make the flight KMIA-KBOS with a B738, A320, B753. I can choose this with the flight schedule choice? Quote Link to comment Share on other sites More sharing options...
M-Queiroz Posted April 13, 2010 Report Share Posted April 13, 2010 Does somebody know from you FSAirlines.net? There one can also select with the flight schedule choice which airplane one would like to take. Could one insert also with phpvms? Example: I have the possibility to make the flight KMIA-KBOS with a B738, A320, B753. I can choose this with the flight schedule choice? Oh yes very good so your suggestion would reduce the amount of routes and also work for all administrators. ae I will dare to complement the day of the week would deploy a button to select every day of the week while flights leaving every day in most cases. pt Ai sim muito boa a sua sugestão assim diminuiria a quantidade de rotas e também o trabalho para todos os administradores. a e vou me atrever em complementar no dias da semana teria como implantar um botão que selecionar todos os dias da semana sempre os voos saem todos os dias na maioria das vezes. Quote Link to comment Share on other sites More sharing options...
ThomasH Posted April 14, 2010 Author Report Share Posted April 14, 2010 I would find it good if the flights are also practicable by different airplanes. Quite a lot of amateur pilot has thus his predilections. One there fly dear airbus, the other dear Boeing. Thus one could avoid that then every flight must be given three times or more. With the flight choice the pilot can decide which airplane he would like to take with pleasure. Though is unrealistic a little bit, but it offers a high flexibility for the pilots. Quote Link to comment Share on other sites More sharing options...
Guest lorathon Posted April 14, 2010 Report Share Posted April 14, 2010 If you use the newest kACARS_Free the pilot has the option of flying any aircraft in your fleet on any flight. This may be the easiest way to solve your situation. It is designed for 915+. It is still in Beta but should be done by tomorrow evening. I have not heard any complainants so I am assuming all is working well. Quote Link to comment Share on other sites More sharing options...
ThomasH Posted April 14, 2010 Author Report Share Posted April 14, 2010 Thank you, this I will test with opportunity sometimes. Quote Link to comment Share on other sites More sharing options...
Artjom Posted April 14, 2010 Report Share Posted April 14, 2010 At a very good idea, let's try to create such a module, I have been to do something on the similarity but I have not come, it rouses very convenient in that there is no need to be created for each separate type of aircraft flight, I visited this code,but it does not work, can some one can modify admin/templates/ops_scheduleform.tpl Repace this code: (Line 125) <select name="aircraft"> <?php foreach($allaircraft as $aircraft) { if($aircraft->registration == $schedule->registration) $sel = 'selected'; else $sel = ''; echo '<option value="'.$aircraft->id.'" '.$sel.'>'.$aircraft->name.' ('.$aircraft->registration.')</option>'; } ?> </select> To this code: <?php foreach($allaircraft as $aircraft) { if($aircraft->registration == $schedule->registration) $sel = 'selected'; else $sel = ''; echo '<input name="aircraft" type="checkbox" value="'.$aircraft->id.'" '.$sel.'>'.$aircraft->name.' ('.$aircraft->registration.')<br>'; } ?> And you get in this form (but how to keep two aircraft about the trip has not been done, can anyone ever be able to help us in this issue?) Quote Link to comment Share on other sites More sharing options...
ThomasH Posted April 15, 2010 Author Report Share Posted April 15, 2010 This would be nice if somebody could try this. Quote Link to comment Share on other sites More sharing options...
ThomasH Posted April 17, 2010 Author Report Share Posted April 17, 2010 I have tried out it. However, the choice would also have to be there with the flight schedule choice. Then there only one airplane is in it. Quote Link to comment Share on other sites More sharing options...
Jiko Posted January 12, 2021 Report Share Posted January 12, 2021 these days i try the same think .... i was modify just a little the ops_scheduleform.php line 105 to get the multiple choice : <tr> <td><strong>Equipment: </strong></td> <td><select name="aircraft" multiple > <?php foreach($allaircraft as $aircraft) { if($aircraft->registration == $schedule->registration) $sel = 'selected'; else $sel = ''; echo '<option value="'.$aircraft->id.'" '.$sel.'>'.$aircraft->name.' ('.$aircraft->registration.')</option>'; } ?> </select> </td> </tr> Now i think must change some lines to the operations.php Can anybody help with this ? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.