Jump to content

Parkho

Moderators
  • Posts

    1381
  • Joined

  • Last visited

  • Days Won

    6

Everything posted by Parkho

  1. Okay. Now try to put the image itself like <img src="<?php echo fileurl('/lib/images/ABD.gif') ;?>"> see if this shows the images.
  2. you could also use this free slideshow website where you can upload your images and customize them and get the html code for it. The website is www.slideful.com.
  3. Can you clear your browser's cache cause it should show you the images.
  4. Try this: <META HTTP-EQUIV="refresh" CONTENT="30"> <div style="position:relative"><h1>Flight Stats</h1> <p style="text-align: right; position:absolute; right:5px;top:0;"><strong>Share</strong><span class='st_blogger' ></span><span class='st_twitter' ></span><span class='st_facebook' ></span><span class='st_yahoo' ></span><span class='st_email' ></span></p> </div> <img alt="" border="1" height="136" src="http://www.airindiavirtual.com/images/flightstats_pg.jpg" width="950" /></p> <h3> Live Flight Departure/Arrival Board</h3> <table width="100%" cellspacing="0" cellpadding="4"> <tr class="title-row"> <th width="105">Airline</th> <th width="77"> Flight #</th> <!--<img src="http://airindiavirtual.com/lib/skins/aivirtual/images/logo.png"><th width="50" " height="22" background="" class="style1"><span class="tablesorterBIS"> <div align="center"> Aircraft</span></th>--> <th width="200">Depart</th> <th width="200">Arrival</th> <th width="80">Status</th> </tr> <?php $rowCounter = 1; ?> <?php $results = ACARSData::GetACARSData(); if (count($results) > 0) { foreach($results as $row) { $font = "<font color=''>"; // Standard font color if nothing below is TRUE if($row->phasedetail == 'Boarding') $font = "<font color='#2ba600'>"; //This should set the font color to red when Taxiing. if($row->phasedetail == 'Landed') $font = "<font color='#FFBF00'>"; //This should set the font color to red when Taxiing. if($row->phasedetail == 'En Route') $font = "<font color='#2A7F00'>"; //This should set the font color to green when Cruise. if($row->phasedetail == 'Departed') $font = "<font color='#FF0000'>"; //This should set the font color to red when Taxiing. if($row->phasedetail == 'Approach') $font = "<font color='#690d0d'>"; //This should set the font color to green when Cruise. if($row->phasedetail == 'Arrived') $font = "<font color='#e13838'>"; //This should set the font color to red when Taxiing. // You can add more checks here for whatever you wish ?> <tr class="listingTable <?php if( ($rowCounter % 2) == 0 ){ echo ' evenCol'; } $rowCounter++; ?>"> <td align="center"> <?php $airlines = OperationsData::getAllAirlines(); foreach($airlines as $airline) { ?> <img src="<?php echo fileurl('/lib/images/airlines/'.$airline->icao.'.gif'); ?>" alt="<?php echo $airline->name;?>" /> <?php } ?></td> <td align="center"><?php echo $row->flightnum;?></td> <!--<td align="center"><?php echo $row->aircraftname;?></td>--> <td align="center"><?php echo $row->depname;?></td> <td align="center"><?php echo $row->arrname;?></td> <td align="center"><?php echo $font.$row->phasedetail;?></td> </tr> <?php } } ?> </table> <?php if(!$results) { echo '<p align="center">No Online Flights Scheduled!</p>'; return; } ?>
  5. Okay. For that, you would write a code as a function like this and place it in the OperationsData.class.php:: public function airports() { $sql = "SELECT * FROM phpvms_airports ORDER by id "; return DB::get_results($sql); } Then you will need to call the function like this: $airports = OperationsData::airports(); Now you need to set it in a loop lik this: <?php foreach($airports as $airport) { echo $airport->name; } I don't know where you want to use this but this is basically the way. For your second request, you would do it like above instead, you have to change this part: $sql = "SELECT * FROM phpvms_airports ORDER by id "; To this: $sql = "SELECT DISTINCT depicao, arricao FROM phpvms_schedules ORDER by id "; Remember using above, will limit your query to depicao and arricao only, so you only have option to echo these 2.(ex. $airport->depicao, $airport->arricao).
  6. Okay. Where do you use the $airline->icao? You gotta have something like below: <?php $airlines = OperationsData::getAllairlines(); foreach($airlines as $airline) { ?> <img src="<?php echo fileurl('/lib/images/airlines/'.$airline->icao.'.gif'); ?>" alt="<?php echo $airline->name;?>" /> <?php } ?>
  7. Thanks for your respond. The module is now Available for download at Github. Enjoy.
  8. Your code should be fine and view the images but you may want to try changing "fileurl" to "SITE_URL" and see if it does make any differences. Also, make sure that you're directing to the correct path of the image.
  9. yw
  10. Replace the entire code in frontpage_recentbids.tpl with the following: <?php if(!$lastbids) { echo 'No bids have been made'; return; } foreach($lastbids as $lastbid); { ?> <table width="100%" border="0" align="center" cellpadding="5" cellspacing="0"> <tr> <td>Flight #</td> <td>Pilot</td> <td>Departure</td> <td>Arrival</td> <td>Aircraft</td> </tr> <tr> <td><?php echo $lastbid->code.$lastbid->flightnum ;?></td> <td> <?php $pilotid = $lastbid->pilotid; $pilot = PilotData::getPilotData($pilotid); echo $pilot->firstname.' '.$pilot->lastname ;?> </td> <td><?php echo $lastbid->depicao ;?></td> <td><?php echo $lastbid->arricao ;?></td> <td><?php echo $lastbid->aircraft ;?></td> </tr> </table> <?php } ?>
  11. I would do this in the following order. First, place this in your front page: <?php MainController::Run('FrontBids', 'RecentFrontPage', 10); ?> Secondly, go to frontpage_recentbids.tpl and put what you want to show there. Below is the default code in there: <?php if(!$lastbids) { echo 'No bids have been made'; return; } foreach($lastbids as $lastbid); { ?> <style type="text/css"> <!-- .style2 { font-family: Arial; font-size: 10px; } --> </style> <table width="100%" border="0" align="center" cellpadding="5" cellspacing="0"> <tr> <td><p class="style2"><?php echo $lastbid->bidid . ' - ' . $lastbid->code.$lastbid->flightnum.' - '.$lastbid->depicao.' to '.$lastbid->arricao?></a> </p> <?php } ?></p></td> </tr> </table> Remember you can put any number instead of 10 in the first code and that's the number of rows it will return.
  12. You have to create the module folder exactly the same as it was provided.( ex. core/modules/Fuelcalculator).
  13. right on
  14. airport_search.tpl and below is the code you're looking for: <tr> <td>Select An Aircraft Type</td> <td> <select class="search" name="aircraft"> <option value="">All</option> <?php foreach ($aircrafts as $aircraft) {echo '<option value="'.$aircraft->icao.'">'.$aircraft->icao.'</option>';} ?> </select> </td> </tr>
  15. Anytime man, I'm happy . I just realized that when a pirep gets rejected an email is sent to the pilot, so I went to the reject function, pulled the code, and placed in the accept function and Bingo.
  16. Nope. Here like this: protected function approve_pirep_post() { $pirepid = $this->post->id; if($pirepid == '') return; $pirep_details = PIREPData::GetReportDetails($pirepid); # See if it's already been accepted if(intval($pirep_details->accepted) == PIREP_ACCEPTED) return; # Update pilot stats SchedulesData::IncrementFlownCount($pirep_details->code, $pirep_details->flightnum); PIREPData::ChangePIREPStatus($pirepid, PIREP_ACCEPTED); // 1 is accepted PilotData::UpdateFlightData($pirep_details->pilotid, $pirep_details->flighttime, 1); PilotData::UpdatePilotPay($pirep_details->pilotid, $pirep_details->flighttime); RanksData::CalculateUpdatePilotRank($pirep_details->pilotid); PilotData::GenerateSignature($pirep_details->pilotid); StatsData::UpdateTotalHours(); LogData::addLog(Auth::$userinfo->pilotid, 'Approved PIREP #'.$pirepid); # Call the event CodonEvent::Dispatch('pirep_accepted', 'PIREPAdmin', $pirep_details); $this->set('firstname', $pirep_details->firstname); $this->set('lastname', $pirep_details->lastname); $this->set('pirepid', $pirepid); $message = Template::GetTemplate('email_pirep_accep.tpl', true); Util::SendEmail($pirep_details->email, 'PIREP Accepted.', $message); }
  17. What?
  18. okay man, I just found a very simple way that you wouldn't even believe it copy the following, go to admin/modules/PIREPAdmin/PIREPAdmin.php and find this function approve_pirep_post() and place it at the end before the bracket : It's tested. $this->set('firstname', $pirep_details->firstname); $this->set('lastname', $pirep_details->lastname); $this->set('pirepid', $pirepid); $message = Template::GetTemplate('email_pirep_accep.tpl', true); Util::SendEmail($pirep_details->email, 'Comment Added', $message); How easy was that!!!!???
  19. okay, remove the following and place it at the end right before the </body> and after ?>. Now it sends only one email to you when you hit it. <input type="button" onclick="<?php echo Util::SendEmail($email, $sub, $message);?>" value="Send Email">
  20. Okay. You see, I added a button to send an email once the pirep is accepted and that has to be done by the admin manually but I think it disappears when you hit the accept button. Now if you go to view recent pireps the button should be there right next to the status field.
  21. Okay. Do you see the email button?
  22. good
  23. Did it work?
  24. I know, I'm working on someone's website and it's been like this lately. That website is also on fivedev.
  25. Did you change this part to this?: $rep = PIREPData::getLastReports($pilotid, 1);
×
×
  • Create New...