Server IP : 180.180.241.3 / Your IP : 216.73.216.252 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 : C:/AppServ/www/app/View/Users/ |
Upload File : |
<div class="users view"> <h2><?php echo __('User'); ?></h2> <dl> <dt><?php echo __('Id'); ?></dt> <dd> <?php echo h($user['User']['id']); ?> </dd> <dt><?php echo __('Username'); ?></dt> <dd> <?php echo h($user['User']['username']); ?> </dd> <dt><?php echo __('Password'); ?></dt> <dd> <?php echo h($user['User']['password']); ?> </dd> <dt><?php echo __('Group'); ?></dt> <dd> <?php echo $this->Html->link($user['Group']['name'], array('controller' => 'groups', 'action' => 'view', $user['Group']['id'])); ?> </dd> <dt><?php echo __('Created'); ?></dt> <dd> <?php echo h($user['User']['created']); ?> </dd> <dt><?php echo __('Modified'); ?></dt> <dd> <?php echo h($user['User']['modified']); ?> </dd> </dl> </div> <div class="actions"> <h3><?php echo __('Actions'); ?></h3> <ul> <li><?php echo $this->Html->link(__('Edit User'), array('action' => 'edit', $user['User']['id'])); ?> </li> <li><?php echo $this->Form->postLink(__('Delete User'), array('action' => 'delete', $user['User']['id']), null, __('Are you sure you want to delete # %s?', $user['User']['id'])); ?> </li> <li><?php echo $this->Html->link(__('List Users'), array('action' => 'index')); ?> </li> <li><?php echo $this->Html->link(__('New User'), array('action' => 'add')); ?> </li> <li><?php echo $this->Html->link(__('List Groups'), array('controller' => 'groups', 'action' => 'index')); ?> </li> <li><?php echo $this->Html->link(__('New Group'), array('controller' => 'groups', 'action' => 'add')); ?> </li> </ul> </div>