View file PF.Base/module/core/template/default/controller/admincp/country/index.html.php

File size: 2.16Kb
<?php 
/**
 * [PHPFOX_HEADER]
 * 
 * @copyright		[PHPFOX_COPYRIGHT]
 * @author  		Raymond Benc
 * @package 		Phpfox
 * @version 		$Id: index.html.php 1572 2010-05-06 12:37:24Z Raymond_Benc $
 */
 
defined('PHPFOX') or exit('NO DICE!'); 

?>
<table id="js_drag_drop" cellpadding="0" cellspacing="0">
	<tr>
		<th></th>
		<th style="width:20px;"></th>
		<th style="width:20px;">{_p var='iso'}</th>
		<th>{_p var='name'}</th>
		<th style="width:120px;">{_p var='states_provinces'}</th>
	</tr>
{foreach from=$aCountries name=countries item=aCountry}
	<tr class="checkRow{if is_int($phpfox.iteration.countries/2)} tr{else}{/if}">
		<td class="drag_handle"><input type="hidden" name="val[ordering][{$aCountry.country_iso}]" value="{$aCountry.ordering}" /></td>
		<td class="t_center">
			<a href="#" class="js_drop_down_link" title="{_p var='manage'}">{img theme='misc/bullet_arrow_down.png'}</a>
			<div class="link_menu">
				<ul>
					<li><a href="{url link='admincp.core.country.add' id={$aCountry.country_iso}">{_p var='edit'}</a></li>
					<li><a href="{url link='admincp.core.country.child.add' iso={$aCountry.country_iso}">{_p var='add_state_province'}</a></li>
					{if $aCountry.total_children > 0}
					<li><a href="{url link='admincp.core.country.child' id={$aCountry.country_iso}">{_p var='manage_states_provinces'}</a></li>
					<li><a href="{url link='admincp.core.country' export={$aCountry.country_iso}">{_p var='export'}</a></li>
					{/if}
					<li><a href="#" onclick="$(this).parents('.link_menu:first').hide(); tb_show('{_p var='translate' phpfox_squote=true}', $.ajaxBox('core.admincp.countryTranslate', 'height=410&amp;width=600&country_iso={$aCountry.country_iso}')); return false;">{_p var='translate'}</a></li>
					<li><a href="{url link='admincp.core.country' delete={$aCountry.country_iso}" class="sJsConfirm">{_p var='delete'}</a></li>
				</ul>
			</div>		
		</td>	
		<td class="t_center">{$aCountry.country_iso}</td>		
		<td>{$aCountry.name}</td>		
		<td class="t_center">{if $aCountry.total_children > 0}<a href="{url link='admincp.core.country.child' id={$aCountry.country_iso}">{/if}{$aCountry.total_children}{if $aCountry.total_children > 0}</a>{/if}</td>
	</tr>
{/foreach}
</table>