| Server IP : 180.180.241.3 / Your IP : 216.73.216.35 Web Server : Microsoft-IIS/7.5 System : Windows NT NETWORK-NHRC 6.1 build 7601 (Windows Server 2008 R2 Standard Edition Service Pack 1) i586 User : IUSR ( 0) PHP Version : 5.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /AppServ/www/app/View/Visitors/ |
Upload File : |
<div class="visitors index">
<h2><?php echo __('Visitors'); ?></h2>
<table cellpadding="0" cellspacing="0">
<tr>
<th><?php echo $this->Paginator->sort('id'); ?></th>
<th><?php echo $this->Paginator->sort('name'); ?></th>
<th><?php echo $this->Paginator->sort('address'); ?></th>
<th><?php echo $this->Paginator->sort('postal_code'); ?></th>
<th><?php echo $this->Paginator->sort('telephone'); ?></th>
<th><?php echo $this->Paginator->sort('fax'); ?></th>
<th><?php echo $this->Paginator->sort('email'); ?></th>
<th><?php echo $this->Paginator->sort('is_activated'); ?></th>
<th><?php echo $this->Paginator->sort('created'); ?></th>
<th><?php echo $this->Paginator->sort('modified'); ?></th>
<th class="actions"><?php echo __('Actions'); ?></th>
</tr>
<?php foreach ($visitors as $visitor): ?>
<tr>
<td><?php echo h($visitor['Visitor']['id']); ?> </td>
<td><?php echo h($visitor['Visitor']['name']); ?> </td>
<td><?php echo h($visitor['Visitor']['address']); ?> </td>
<td><?php echo h($visitor['Visitor']['postal_code']); ?> </td>
<td><?php echo h($visitor['Visitor']['telephone']); ?> </td>
<td><?php echo h($visitor['Visitor']['fax']); ?> </td>
<td><?php echo h($visitor['Visitor']['email']); ?> </td>
<td><?php echo h($visitor['Visitor']['is_activated']); ?> </td>
<td><?php echo h($visitor['Visitor']['created']); ?> </td>
<td><?php echo h($visitor['Visitor']['modified']); ?> </td>
<td class="actions">
<?php echo $this->Html->link(__('View'), array('action' => 'view', $visitor['Visitor']['id'])); ?>
<?php echo $this->Html->link(__('Edit'), array('action' => 'edit', $visitor['Visitor']['id'])); ?>
<?php echo $this->Form->postLink(__('Delete'), array('action' => 'delete', $visitor['Visitor']['id']), null, __('Are you sure you want to delete # %s?', $visitor['Visitor']['id'])); ?>
</td>
</tr>
<?php endforeach; ?>
</table>
<p>
<?php
echo $this->Paginator->counter(array(
'format' => __('Page {:page} of {:pages}, showing {:current} records out of {:count} total, starting on record {:start}, ending on {:end}')
));
?> </p>
<div class="paging">
<?php
echo $this->Paginator->prev('< ' . __('previous'), array(), null, array('class' => 'prev disabled'));
echo $this->Paginator->numbers(array('separator' => ''));
echo $this->Paginator->next(__('next') . ' >', array(), null, array('class' => 'next disabled'));
?>
</div>
</div>
<div class="actions">
<h3><?php echo __('Actions'); ?></h3>
<ul>
<li><?php echo $this->Html->link(__('New Visitor'), array('action' => 'add')); ?></li>
<li><?php echo $this->Html->link(__('List Activities'), array('controller' => 'activities', 'action' => 'index')); ?> </li>
<li><?php echo $this->Html->link(__('New Activity'), array('controller' => 'activities', 'action' => 'add')); ?> </li>
</ul>
</div>