| 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/Groups/ |
Upload File : |
<div class="groups index">
<div class="page-header clearfix">
<h2 class="pull-left admin-title-with-btn"><?php echo __('ทั้งหมด ') . count($groups) . __(' กลุ่มผู้ใช้งาน'); ?></h2>
<?php //echo $this->Html->link('เพิ่ม',
//array( 'action' => 'add' ),
//array( 'class' => 'btn btn-success pull-left' )); ?>
</div>
<div class="table-responsive">
<table class="table table-striped">
<thead>
<tr>
<th class="text-center"><?php echo __('รหัส'); ?></th>
<th><?php echo __('ชื่อกลุ่มผู้ใช้งาน'); ?></th>
<th><?php echo __('วันที่สร้าง'); ?></th>
<th><?php echo __('แก้ไข'); ?></th>
</tr>
</thead>
<tbody>
<?php foreach ( $groups as $vGroup) : ?>
<tr>
<td class="text-center"><?php echo $vGroup['Group']['id'] ?></td>
<td><?php echo $vGroup['Group']['name'] ?></td>
<td><?php echo $this->Time->format( 'd/m/Y', $vGroup['Group']['created']); ?></td>
<td>
<?php /*echo $this->Html->link(__('View'), array('action' => 'view', $vGroup['Group']['id'])); */?>
<?php echo $this->Html->link('<span class="glyphicon glyphicon-pencil"></a>', array('action' => 'edit', $vGroup['Group']['id']), array('escape' => false)); ?>
<?php // echo $this->Form->postLink(__('Delete'), array('action' => 'delete', $vGroup['Group']['id']), null, __('Are you sure you want to delete # %s?', $vGroup['Group']['id'])); ?>
</td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</div>
<?php echo $this->element('pagination'); ?>
</div>