| Server IP : 213.186.33.2 / Your IP : 216.73.216.39 Web Server : Apache System : Linux webm005.cluster102.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : symetry ( 21728) PHP Version : 8.2.31 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/symetry/www/ARCHIVES/application/views/scripts/tags/ |
Upload File : |
<!-- index.phtml start -->
<div id='content'>
<div id='jScrollPanel'>
<a href="<?php echo $this->url(array('controller'=>'tags', 'action'=>'add')); ?>"><img src='<?php echo $this->baseUrl();?>/public/images/icons/plus.png' alt='<?=Zend_registry::get('translate')->_('AddTags');?>' class='admin_img'/></a>
<table>
<tr>
<th><?=Zend_registry::get('translate')->_('Name');?></th>
<th> </th>
</tr>
<?php
$i = 0;
foreach($this->tags as $tags)
{
if(($i%2) == 0)
{
echo '<tr>';
}else{
echo '<tr class=\'table_odd\'>';
}
?>
<td><?php echo $this->escape($tags->tag_name);?></td>
<td>
<a href="<?php echo $this->url(array('controller'=>'tags', 'action'=>'mod', 'id'=>$tags->tag_id));?>"><img src='<?php echo $this->baseUrl();?>/public/images/icons/pencil.png' alt='<?=Zend_registry::get('translate')->_('Modify');?>' class='admin_img'/></a>
<a href="<?php echo $this->url(array('controller'=>'tags', 'action'=>'del', 'id'=>$tags->tag_id));?>"><img src='<?php echo $this->baseUrl();?>/public/images/icons/cross.png' alt='<?=Zend_registry::get('translate')->_('Delete');?>' class='admin_img'/></a>
</td>
</tr>
<?
$i++;
}
?>
</table>
</div>
</div>
<!-- index.phtml stop -->