Jump to content

[SOLVED] Award


Blu-Express VA

Recommended Posts

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?

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