| 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/references/ |
Upload File : |
<!-- index.phtml start -->
<div id='content'>
<div id='jScrollPanel'>
<a href="<?php echo $this->url(array('controller'=>'references', 'action'=>'add')); ?>"><img src='<?php echo $this->baseUrl();?>/public/images/icons/plus.png' alt='<?=Zend_registry::get('translate')->_('AddReference');?>' class='admin_img'/></a>
<table>
<tr>
<th><?=Zend_registry::get('translate')->_('Folder');?></th>
<th><?=Zend_registry::get('translate')->_('Client');?></th>
<th><?=Zend_registry::get('translate')->_('Program');?></th>
<th><?=Zend_registry::get('translate')->_('City');?></th>
<th> </th>
</tr>
<?php
$i = 0;
foreach($this->references as $references)
{
if(($i%2) == 0)
{
echo '<tr>';
}else{
echo '<tr class=\'table_odd\'>';
}
?>
<td><?php echo d($this->escape($references->ref_name));?></td>
<td><?php echo d($this->escape($references->ref_client));?></td>
<td><?php echo d($this->escape($references->ref_description));?></td>
<td><?php echo d($this->escape($references->ref_city));?></td>
<td>
<a href="<?php echo $this->url(array('controller'=>'references', 'action'=>'mod', 'id'=>$references->ref_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'=>'references', 'action'=>'del', 'id'=>$references->ref_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 -->