{
// $this->toolbox = &$toolbox;
// $this->DB =& $toolbox->DB;
- $this->airports = array('DTW'=>'Detroit Metro','PLN'=>'Pellston');
+ $this->airports = array('DTW'=>'Detroit Metro','CIU'=>'Chippewa County');
$this->time_codes = array('A'=>'Actual','E'=>'Estimated','D'=>'Descision','S'=>'Scheduled','R'=>'In-range');
}
function get_arr_flight_data()
{
global $wpdb;
- $query = "select *, name AS airline from glm_flight, glm_airlines where flt_orig_date = current_date and flt_leg_dest = 'PLN' and glm_airlines.code = flt_airline order by cur_in_time;";
+ $query = "select *, name AS airline from glm_flight, glm_airlines where flt_orig_date = current_date and flt_leg_dest = 'CIU' and glm_airlines.code = flt_airline order by cur_in_time;";
if( $data = $wpdb->get_results( $query, ARRAY_A ) )
{
function get_dep_flight_data()
{
global $wpdb;
- $query = "select *, name AS airline from glm_flight, glm_airlines where flt_orig_date = current_date and flt_leg_orig = 'PLN' and glm_airlines.code = flt_airline order by cur_dep_time;";
+ $query = "select *, name AS airline from glm_flight, glm_airlines where flt_orig_date = current_date and flt_leg_orig = 'CIU' and glm_airlines.code = flt_airline order by cur_dep_time;";
if( $data = $wpdb->get_results( $query, ARRAY_A ) )
{
$this->dep_data = $data;
--- /dev/null
+<?php
+/*
+Template Name: Flight Data Template
+*/
+?>
+<?php include 'class_flight.php'; ?>
+<?php $flight = new glm_flight(); ?>
+<?php $flight->get_flight_data(); ?>
+<?php get_header(); ?>
+
+ <!-- kitchensink check - delete me before going live -->
+ <div id="content-wrapper">
+ <div id="arrival" class="row">
+ <div class="small-12 columns">
+ <h1>Arrivals:</h1>
+ <?php echo $flight->build_arrivals(); ?>
+<!--
+ <table class="footable arrival">
+ <thead>
+ <tr>
+ <th> From </th>
+ <th> Flight </th>
+ <th> Time </th>
+ <th> Status </th>
+ </tr>
+ </thead>
+ <tr>
+ <td>DETROIT METROPOLITAN WAYNE COUNTY DETROIT, MI</td>
+ <td>SKY WEST AIRLINES 7434</td>
+ <td>1:10 PM Scheduled</td>
+ <td><nobr>On Time</nobr></td>
+ </tr>
+ <tr>
+ <td>DETROIT METROPOLITAN WAYNE COUNTY DETROIT, MI</td>
+ <td>SKY WEST AIRLINES 7364</td>
+ <td>8:59 PM Scheduled</td>
+ <td><nobr>On Time</nobr></td>
+ </tr>
+ </table>
+-->
+ </div>
+ </div>
+ <div id="depart" class="row">
+ <div class="small-12 columns">
+ <h1>Departures:</h1>
+ <?php echo $flight->build_departures(); ?>
+<!--
+ <table class="footable departure">
+ <thead>
+ <tr>
+ <th> From </th>
+ <th> Flight </th>
+ <th> Time </th>
+ <th> Status </th>
+ </tr>
+ </thead>
+ <tr>
+ <td>DETROIT METROPOLITAN WAYNE COUNTY DETROIT, MI</td>
+ <td>SKY WEST AIRLINES<br>7411</td>
+ <td>6:50 AM Actual</td>
+ <td><nobr>Departed</nobr></td>
+ </tr>
+ </table>
+-->
+ <?php echo $flight->last_updated; ?>
+ </div>
+ </div>
+ </div>
+<?php get_footer(); ?>
\ No newline at end of file