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

File size: 1.82Kb
<?php 
/**
 * [PHPFOX_HEADER]
 * 
 * @copyright		[PHPFOX_COPYRIGHT]
 * @author  		Raymond Benc
 * @package 		Phpfox
 * @version 		$Id: index.html.php 1298 2009-12-05 16:19:23Z Raymond_Benc $
 */
 
defined('PHPFOX') or exit('NO DICE!'); 

?>
<table cellpadding="0" cellspacing="0">
	<tr>
		<th style="width:20px;"></th>
		<th>{_p var='extension'}</th>
		<th>{_p var='mime_type'}</th>
		<th class="t_center">{_p var='image'}</th>
		<th class="t_center" style="width:60px;">{_p var='active'}</th>
	</tr>
{foreach from=$aRows key=iKey item=aRow}
	<tr class="checkRow{if is_int($iKey/2)} tr{else}{/if}">
		<td class="t_center">
			<a href="#" class="js_drop_down_link" title="Manage">{img theme='misc/bullet_arrow_down.png' alt=''}</a>
			<div class="link_menu">
				<ul>
					<li><a href="{url link='admincp.attachment.add' id=$aRow.extension}" class="popup">{_p var='edit'}</a></li>
					<li><a href="{url link='admincp.attachment' delete=$aRow.extension}" data-message="{_p var='are_you_sure' phpfox_squote=true}" class="sJsConfirm">{_p var='delete'}</a></li>
				</ul>
			</div>		
		</td>
		<td>{$aRow.extension}</td>
		<td>{$aRow.mime_type}</td>
		<td class="t_center">{if $aRow.is_image}{_p var='yes'}{else}{_p var='no'}{/if}</td>
		<td class="t_center">
			<div class="js_item_is_active"{if !$aRow.is_active} style="display:none;"{/if}>
				<a href="#?call=attachment.updateActivity&amp;id={$aRow.extension}&amp;active=0" class="js_item_active_link" title="{_p var='deactivate'}">{img theme='misc/bullet_green.png' alt=''}</a>
			</div>
			<div class="js_item_is_not_active"{if $aRow.is_active} style="display:none;"{/if}>
				<a href="#?call=attachment.updateActivity&amp;id={$aRow.extension}&amp;active=1" class="js_item_active_link" title="{_p var='activate'}">{img theme='misc/bullet_red.png' alt=''}</a>
			</div>		
		</td>		
	</tr>
{/foreach}
</table>