Jump to content

Recommended Posts

Posted

Open /public_html/admin/templates/pireps_list.tpl

After this code:

<?php
# If there was an error, don't allow the PIREP to go through
if($pirep->aircraft == '')
{
	$error = true;
}	
?>

Remove all other coding, and paste this in there.

<table width="100%" style="border: none;">
<tr>
<td style="border: none;" align="left">

<button class="{button:{icons:{primary:'ui-icon-arrowthick-1-s'}}}"
	href="#" onclick="$('#details_dialog_<?php echo $pirep->pirepid;?>').toggle()">Details</button>

<button class="jqModal {button:{icons:{primary:'ui-icon-script'}}}" id="dialog_details"
	href="<?php echo SITE_URL?>/admin/action.php/pirepadmin/viewlog?pirepid=<?php echo $pirep->pirepid;?>">Log</button>

<button class="jqModal {button:{icons:{primary:'ui-icon-comment'}}}" id="dialog_comments" 
	href="<?php echo SITE_URL?>/admin/action.php/pirepadmin/viewcomments?pirepid=<?php echo $pirep->pirepid;?>">
	Comments <span style="font-size: 12px; margin-top: -3px">(<?php echo PIREPData::getCommentCount($pirep->pirepid); ?>)</span></button>

<button class="jqModal {button:{icons:{primary:'ui-icon-note'}}}" id="dialog_addcomment"
	href="<?php echo SITE_URL?>/admin/action.php/pirepadmin/addcomment?pirepid=<?php echo $pirep->pirepid;?>">
Add Comment</button>
</td>

<td style="border: none;" align="right">
<?php
# If there was an error, don't allow the PIREP to go through
if($error == false)
{
?>
	<button href="<?php echo SITE_URL?>/admin/action.php/pirepadmin/<?php echo $load; ?>?pilotid=<?php echo $pirep->pilotid?>" action="approvepirep"
	id="<?php echo $pirep->pirepid;?>" class="pirepaction {button:{icons:{primary:'ui-icon-check'}}}">Accept</button>

	<?php
}
?>
<button id="dialog" class="jqModal {button:{icons:{primary:'ui-icon-closethick'}}}"
	href="<?php echo SITE_URL?>/admin/action.php/pirepadmin/rejectpirep?pirepid=<?php echo $pirep->pirepid;?>&pilotid=<?php echo $pirep->pilotid; ?>">Reject</button>

<button class="{button:{icons:{primary:'ui-icon-wrench'}}}"
	onclick="window.location = '<?php echo SITE_URL?>/admin/index.php/pirepadmin/editpirep?pirepid=<?php echo $pirep->pirepid;?>&pilotid=<?php echo $pirep->pilotid?>'">Edit</button>

<button href="<?php echo SITE_URL?>/admin/action.php/pirepadmin/<?php echo $load; ?>?pilotid=<?php echo $pirep->pilotid?>" action="deletepirep"
	id="<?php echo $pirep->pirepid;?>" class="deleteitem {button:{icons:{primary:'ui-icon-trash'}}}">Delete</button>

</td>
</tr>
</table>

<!--<button class="jqModal {button:{icons:{primary:'ui-icon-signal-diag'}}}" id="dialog_route"
	href="<?php echo SITE_URL?>/admin/action.php/operations/viewmap?type=pirep&id=<?php echo $pirep->pirepid;?>">Route</button>-->

</div>
<br />
<?php
# If there was an error, don't allow the PIREP to go through
if($pirep->aircraft == '')
{
$error = true;
Template::Set('message', 'No aircraft for this PIREP. You must edit and assign before you can accept it.');
Template::Show('core_error.tpl');
}	
?>
<table id="details_dialog_<?php echo $pirep->pirepid;?>" 
style="display:none; border-left: 3px solid #FF6633; margin-top: 3px;padding-left: 3px;" width="100%">
<tr>
<td><strong>Client: </strong> <?php echo $pirep->source; ?></td>
<td><strong>Aircraft: </strong>
		<?php 
		if($pirep->aircraft == '')
		{
			$error = true;
			echo '<span style="color: red">No aircraft! Edit to change</span>';
		}
		else
			echo $pirep->aircraft. " ($pirep->registration)";
		?>
</td>
<td><strong>Flight Time: </strong> <?php echo $pirep->flighttime_stamp; ?></td>
<td><strong>Distance: </strong><?php echo $pirep->distance; ?> </td>
<td><strong>Landing Rate: </strong><?php echo $pirep->landingrate; ?> </td>
</tr>
<tr>
<td colspan="5"><strong>Route: </strong><?php echo $pirep->route;?> 
<a id="dialog" class="jqModal" style="font-weight: 400;"
   href="<?php echo SITE_URL?>/admin/action.php/operations/viewmap?type=pirep&id=<?php echo $pirep->pirepid;?>">View</a>
</td>
</tr>
<tr>
<td><strong>Load/Price: </strong><?php echo (($pirep->load!='')?$pirep->load:'-').' / '.FinanceData::formatMoney($pirep->price);?></td>
<td><strong>Pilot Pay: </strong><?php echo FinanceData::formatMoney($pirep->pilotpay);?></td>
<td><strong>Fuel Used: </strong><?php echo ($pirep->fuelused!='') ? $pirep->fuelused.Config::Get('LIQUID_UNIT_NAMES', Config::Get('LiquidUnit')) : '-';?></td>
<td><strong>Revenue: </strong><?php echo FinanceData::formatMoney($pirep->revenue);?></td>
<td><strong>Gross: </strong><?php echo FinanceData::formatMoney($pirep->gross);?></td>

</tr>
<?php
// Get the additional fields
//	I know, badish place to put it, but it's pulled per-PIREP
$fields = PIREPData::GetFieldData($pirep->pirepid);
if(!$fields)
{
echo 'No additional data found';
}
else
{
$i=1;
echo '<tr>';

foreach ($fields as $field)
{
	if($i == 1)
	{
		echo '<tr>';
	}

	echo "<td><strong>{$field->title}:</strong> {$field->value}</td>";

	if($i == 5)
	{
		echo '</tr>';
		$i = 0;
	}

	$i++;
}
}

echo '</tr>';
?>
</table>
</td>
</tr>
<?php
} /* Close the PIREPs loop */
?>
</tbody>
</table>
<span style="float: right">* - double click to select</span><br />

<?php
if(isset($paginate))
{
?>
<div style="float: right;">
<a href="?admin=<?php echo $admin?>&start=<?php echo $start?>">Next Page</a>
<br />
</div>
<?php
} /* Close the paginate loop */
?>
</div>
<script type="text/javascript">
$("button, input:button, input:submit").button();
</script>

  • Like 1

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...