Файл: upload/module/admincp/template/default/controller/component/index.html.php
Строк: 92
<?php
/**
* [PHPFOX_HEADER]
*
* @copyright [PHPFOX_COPYRIGHT]
* @author Raymond Benc
* @package Phpfox
* @version $Id: index.html.php 1344 2009-12-21 19:50:14Z Raymond_Benc $
*/
defined('PHPFOX') or exit('NO DICE!');
?>
<div class="table_header">
{phrase var='admincp.components'}
</div>
<table cellpadding="0" cellspacing="0">
{foreach from=$aComponents key=sModule item=aRows}
<tr>
<td colspan="5" class="table_header2">
{$sModule|translate:'module'}
</td>
</tr>
<tr>
<th style="width:20px;"></th>
<th>{phrase var='admincp.component'}</th>
<th>{phrase var='admincp.connection'}</th>
<th class="t_center">{phrase var='admincp.controller'}</th>
<th style="width: 60px;">{phrase var='admincp.active'}</th>
</tr>
{foreach from=$aRows key=iKey item=aRow}
<tr{if is_int($iKey/2)} class="tr"{/if}>
<td class="t_center">
<a href="#" class="js_drop_down_link" title="{phrase var='admincp.manage'}">{img theme='misc/bullet_arrow_down.png' alt=''}</a>
<div class="link_menu">
<ul>
<li><a href="{url link='admincp.component.add' id=$aRow.component_id}">{phrase var='admincp.edit'}</a></li>
<li><a href="{url link='admincp.component' delete=$aRow.component_id}" onclick="return confirm('{phrase var='admincp.are_you_sure' phpfox_squote=true}');">{phrase var='admincp.delete'}</a></li>
</ul>
</div>
</td>
<td>{$aRow.component}</td>
<td>{if empty($aRow.m_connection)}N/A{else}{$aRow.m_connection}{/if}</td>
<td class="t_center">
{if $aRow.is_controller}
{phrase var='admincp.yes'}
{else}
{phrase var='admincp.no'}
{/if}
</td>
<td class="t_center">
<div class="js_item_is_active"{if !$aRow.is_active} style="display:none;"{/if}>
<a href="#?call=admincp.componentFeedActivity&id={$aRow.component_id}&active=0" class="js_item_active_link" title="{phrase var='admincp.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=admincp.componentFeedActivity&id={$aRow.component_id}&active=1" class="js_item_active_link" title="{phrase var='admincp.activate'}">{img theme='misc/bullet_red.png' alt=''}</a>
</div>
</td>
</tr>
{/foreach}
{/foreach}
</table>