Jump to content

Recent Arrivals


JohnMck93

Recommended Posts

I'm probably the wrong guy to be giving advise, but here is how I did it.

First copy frontpage_reports.tpl to your skin folder. 

I edited mine to look like this

<style type="text/css">

a:link {
color: ##FFCC33;
}
a:visited {
color: ##FFCC33;
}
a:hover {
color: ##FF9933;
}
a:active {
color: ##FF9933;
}
.style2 {color: #FFFFFF}
.style3 {color: #000000; }
</style>


  <table width="100%" class="tablesorter" id="tabledlist">
    <thead>
    <td colspan="6">
      <div align="center"><img src="<?php echo SITE_URL?>/lib/skins/valujet2/images/arrivals.png">      </div></td>
    <tr>
      <th bgcolor="#666666"><div align="center" class="style2">Flight Number</div></th>
      <th bgcolor="#666666"><div align="center" class="style2">Depart</div></th>
      <th bgcolor="#666666"><div align="center" class="style2">Arrive</div></th>
      <th bgcolor="#666666" class="style2">Pilot Name</th>
      <th bgcolor="#666666"><div align="center" class="style2">Aircraft</div></th>
      <th bgcolor="#666666"><div align="center" class="style2">Flight Time</div></th>
      </tr>
    </thead>
    <tbody>
<?php
if(!$reports)
{
echo 'No reports have been filed';
return;
}

foreach($reports as $report)
{
?>
      <tr>
        <td align="center" bgcolor="#CCCCCC"><table border="0" cellpadding="0" cellspacing="0">
          <tr>
            <td><a href="<?php echo url('/pireps/view/'.$report->pirepid);?>" class="style3"><img src="<?php echo SITE_URL?>/lib/skins/valujet2/images/smallplane.png"></a></td>
          </tr>
        </table>          <a href="<?php echo url('/pireps/view/'.$report->pirepid);?>" class="style3"><?php echo $report->code . $report->flightnum; ?></a> </td>
        <td align="center" bgcolor="#CCCCCC"><span class="style1 style3"><?php echo $report->depicao; ?></span></td>
        <td align="center" bgcolor="#CCCCCC"><span class="style1 style3"><?php echo $report->arricao; ?></span></td>
        <td align="center" bgcolor="#CCCCCC"><a href="<?php echo url('/profile/view/'.$report->pilotid);?>"><?php echo $report->firstname . ' ' . $report->lastname?></td>
        <td align="center" bgcolor="#CCCCCC"><span class="style1 style3"><?php echo $report->aircraft . " ($report->registration)"; ?></span></td>
        <td align="center" bgcolor="#CCCCCC"><span class="style1 style3"><?php echo $report->flighttime; ?> Hours</span></td>
      </tr>
      <?php
}
?>
    </tbody>
  </table>

  

Then Just place  this where ever you want it to be displayed

<?php MainController::Run('PIREPS', 'RecentFrontPage', 5); ?>

Someone correct me if I'm wrong. There might be a more correct way to do it.

  • Like 1
Link to comment
Share on other sites

Err read the post again give me one sec to update lol

Okay changed the coding and It says Recent reports then the error below still on the line of the echo, I dont see any error on it though

two quick things do i place the first code ( all the css and stuff ) in the header, or the pirep page..... also im getting a php error Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING

the line of code is echo 'No reports have been filed';

Link to comment
Share on other sites

Well the css you can ignore I should have that in an external style sheet... it is just in my .tpl though...

Now the error. I am not sure that was just copied out of the old (frontpage_reports.tpl)

<?php
if(!$reports)
{
   echo 'No reports have been filed';
   return;
}

foreach($reports as $report)
{
?>

Maybe someone better with php could help us out here?

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...