PHP Classes

File: View/Groups/index.ctp

Recommend this page to a friend!
  Classes of Andraž   pingvincek   View/Groups/index.ctp   Download  
File: View/Groups/index.ctp
Role: Example script
Content type: text/plain
Description: Example script
Class: pingvincek
Manage a site for organizing dates between people
Author: By
Last change:
Date: 6 years ago
Size: 2,037 bytes
 

Contents

Class file image Download
<div class="groups index">
<h2><?php echo __('Groups');?></h2>
<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>
<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('created');?></th>
    <th><?php echo $this->Paginator->sort('modified');?></th>
    <th class="actions"><?php echo __('Actions');?></th>
</tr>
<?php
$i
= 0;
foreach (
$groups as $group):
   
$class = null;
    if (
$i++ % 2 == 0) {
       
$class = ' class="altrow"';
    }
?>
<tr<?php echo $class;?>>
        <td>
            <?php echo $group['Group']['id']; ?>
</td>
        <td>
            <?php echo $group['Group']['name']; ?>
</td>
        <td>
            <?php echo $group['Group']['created']; ?>
</td>
        <td>
            <?php echo $group['Group']['modified']; ?>
</td>
        <td class="actions">
            <?php echo $this->Html->link(__('View'), array('action'=>'view', $group['Group']['id'])); ?>
<?php echo $this->Html->link(__('Edit'), array('action'=>'edit', $group['Group']['id'])); ?>
<?php echo $this->Html->link(__('Delete'), array('action'=>'delete', $group['Group']['id']), null, sprintf(__('Are you sure you want to delete # %s?'), $group['Group']['id'])); ?>
</td>
    </tr>
<?php endforeach; ?>
</table>
</div>
<div class="paging">
    <?php echo $this->Paginator->prev('<< '.__('previous'), array(), null, array('class'=>'disabled'));?>
| <?php echo $this->Paginator->numbers();?>
<?php echo $this->Paginator->next(__('next').' >>', array(), null, array('class'=>'disabled'));?>
</div>
<div class="actions">
    <ul>
        <li><?php echo $this->Html->link(__('New Group'), array('action'=>'add')); ?></li>
        <li><?php echo $this->Html->link(__('List Users'), array('controller'=> 'users', 'action'=>'index')); ?> </li>
        <li><?php echo $this->Html->link(__('New User'), array('controller'=> 'users', 'action'=>'add')); ?> </li>
    </ul>
</div>