View file PF.Base/module/admincp/template/default/controller/maintain/counter.html.php

File size: 908B
<?php 
/**
 * [PHPFOX_HEADER]
 * 
 * @copyright		[PHPFOX_COPYRIGHT]
 * @author  		Raymond Benc
 * @package 		Phpfox
 * @version 		$Id: counter.html.php 1335 2009-12-17 14:47:04Z Raymond_Benc $
 */
 
defined('PHPFOX') or exit('NO DICE!'); 

?>
{if $bRefresh}
<div class="message">
	{_p var='updating_counters_processing_page_current_out_of_page' current=$iCurrentPage page=$iTotalPages}
</div>
{else}
<table cellpadding="0" cellspacing="0">
{foreach from=$aLists key=sModule item=aSubLists}
	{foreach from=$aSubLists item=aList name=counters}
	<tr class="checkRow{if is_int($aList.count/2)}{else} tr{/if}">
		<td>
			{$aList.name}
		</td>
		<td class="t_center">
			<ul class="table_actions">
				<li>
					<a href="{url link='admincp.maintain.counter' module=$sModule id=$aList.id}">{_p var='update'}</a>
				</li>
			</ul>
		</td>
	</tr>
	{/foreach}
{/foreach}
</table>
<div class="table_clear"></div>
{/if}