| 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/Froles/ |
Upload File : |
<div class="froles view">
<h2><?php echo __('Frole'); ?></h2>
<dl>
<dt><?php echo __('Id'); ?></dt>
<dd>
<?php echo h($frole['Frole']['id']); ?>
</dd>
<dt><?php echo __('Name'); ?></dt>
<dd>
<?php echo h($frole['Frole']['name']); ?>
</dd>
<dt><?php echo __('Note'); ?></dt>
<dd>
<?php echo h($frole['Frole']['note']); ?>
</dd>
<dt><?php echo __('Is Activated'); ?></dt>
<dd>
<?php echo h($frole['Frole']['is_activated']); ?>
</dd>
<dt><?php echo __('Created'); ?></dt>
<dd>
<?php echo h($frole['Frole']['created']); ?>
</dd>
<dt><?php echo __('Modified'); ?></dt>
<dd>
<?php echo h($frole['Frole']['modified']); ?>
</dd>
</dl>
</div>
<div class="actions">
<h3><?php echo __('Actions'); ?></h3>
<ul>
<li><?php echo $this->Html->link(__('Edit Frole'), array('action' => 'edit', $frole['Frole']['id'])); ?> </li>
<li><?php echo $this->Form->postLink(__('Delete Frole'), array('action' => 'delete', $frole['Frole']['id']), null, __('Are you sure you want to delete # %s?', $frole['Frole']['id'])); ?> </li>
<li><?php echo $this->Html->link(__('List Froles'), array('action' => 'index')); ?> </li>
<li><?php echo $this->Html->link(__('New Frole'), array('action' => 'add')); ?> </li>
<li><?php echo $this->Html->link(__('List Roles'), array('controller' => 'roles', 'action' => 'index')); ?> </li>
<li><?php echo $this->Html->link(__('New Role'), array('controller' => 'roles', 'action' => 'add')); ?> </li>
</ul>
</div>
<div class="related">
<h3><?php echo __('Related Roles'); ?></h3>
<?php if (!empty($frole['Role'])): ?>
<table cellpadding = "0" cellspacing = "0">
<tr>
<th><?php echo __('Id'); ?></th>
<th><?php echo __('Name'); ?></th>
<th><?php echo __('Is Activated'); ?></th>
<th><?php echo __('Frole Id'); ?></th>
<th><?php echo __('Created'); ?></th>
<th><?php echo __('Modified'); ?></th>
<th class="actions"><?php echo __('Actions'); ?></th>
</tr>
<?php foreach ($frole['Role'] as $role): ?>
<tr>
<td><?php echo $role['id']; ?></td>
<td><?php echo $role['name']; ?></td>
<td><?php echo $role['is_activated']; ?></td>
<td><?php echo $role['frole_id']; ?></td>
<td><?php echo $role['created']; ?></td>
<td><?php echo $role['modified']; ?></td>
<td class="actions">
<?php echo $this->Html->link(__('View'), array('controller' => 'roles', 'action' => 'view', $role['id'])); ?>
<?php echo $this->Html->link(__('Edit'), array('controller' => 'roles', 'action' => 'edit', $role['id'])); ?>
<?php echo $this->Form->postLink(__('Delete'), array('controller' => 'roles', 'action' => 'delete', $role['id']), null, __('Are you sure you want to delete # %s?', $role['id'])); ?>
</td>
</tr>
<?php endforeach; ?>
</table>
<?php endif; ?>
<div class="actions">
<ul>
<li><?php echo $this->Html->link(__('New Role'), array('controller' => 'roles', 'action' => 'add')); ?> </li>
</ul>
</div>
</div>