hello,
you can put in the driver’s personal page instead of the one written for the writing award + image?
If yes, how?
Thanks
hello,
you can put in the driver’s personal page instead of the one written for the writing award + image?
If yes, how?
Thanks
hello,
you can put in the driver’s personal page instead of the one written for the writing award + image?
If yes, how?
Thanks
The example code to display the award image is in the template, you just need to uncomment it.
This is my code of pilot_public_profile.tpl
<?php
if(!$userinfo)
{
echo '<h3>This pilot does not exist!</h3>';
return;
}
?>
<h3>Profile For <?php echo $userinfo->firstname . ' ' . $userinfo->lastname?></h3>
<table>
<tr>
<td align="center" valign="top">
<?php
if(!file_exists(SITE_ROOT.AVATAR_PATH.'/'.$pilotcode.'.png'))
{
echo 'No avatar';
}
else
{
echo '<img src="'.SITE_URL.AVATAR_PATH.'/'.$pilotcode.'.png'.'" alt="No Avatar" /> ';
}
?>
<br /><br />
<img src="<?php echo $userinfo->rankimage?>" alt="" />
</td>
<ul>
<li><strong>Pilot ID: </strong><?php echo $pilotcode ?></li>
<li><strong>Rank: </strong><?php echo $userinfo->rank;?></li>
<li><strong>Total Flights: </strong><?php echo $userinfo->totalflights?></li>
<li><strong>Total Hours: </strong><?php echo Util::AddTime($userinfo->totalhours, $userinfo->transferhours); ?></li>
<li><strong>Location: </strong>
<img src="<?php echo Countries::getCountryImage($userinfo->location);?>"
alt="<?php echo Countries::getCountryName($userinfo->location);?>" />
<?php echo Countries::getCountryName($userinfo->location);?>
</li>
<?php
// Show the public fields
if($allfields)
{
foreach($allfields as $field)
{
echo "<li><strong>$field->title: </strong>$field->value</li>";
}
}
?>
</ul>
<p>
<strong>Awards</strong>
<?php
if(is_array($allawards))
{
?>
<ul>
<?php foreach($allawards as $award)
{
/* To show the image:
<img src="<?php echo $award->image?>" alt="<?php echo $award->descrip?>" />
*/
?>
<li><?php echo $award->name ?></li>
<?php } ?>
</ul>
<?php
}
?>
</p>
</td>
</tr>
</table>
<?php
/*
Added in 2.0!
*/
$chart_width = '600';
$chart_height = '250';
/* Don't need to change anything below this here */
?>
<div align="center" style="width: 100%;">
<div align="center" id="pireps_chart"></div>
</div>
<script type="text/javascript" src="<?php echo fileurl('/lib/js/ofc/js/swfobject.js')?>"></script>
<script type="text/javascript">
swfobject.embedSWF("<?php echo fileurl('/lib/js/ofc/open-flash-chart.swf');?>",
"pireps_chart", "<?php echo $chart_width;?>", "<?php echo $chart_height;?>",
"9.0.0", "expressInstall.swf",
{"data-file":"<?php echo actionurl('/pilots/statsdaysdata/'.$userinfo->pilotid);?>"});
</script>
What is the points when i modified?
Ok Solved thanks for help