PHP Classes

File: View/Cities/admin_index.ctp

Recommend this page to a friend!
  Classes of Andraž   pingvincek   View/Cities/admin_index.ctp   Download  
File: View/Cities/admin_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: 1,738 bytes
 

Contents

Class file image Download
<div class="cities index">
<h2><?php echo __('Cities');?></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('geonameid');?></th>
    <th><?php echo $this->Paginator->sort('name');?></th>
    <th><?php echo $this->Paginator->sort('modificationDate');?></th>
    <th class="actions"><?php echo __('Actions');?></th>
</tr>
<?php
$i
= 0;
foreach (
$cities as $city):
   
$class = null;
    if (
$i++ % 2 == 0) {
       
$class = ' class="altrow"';
    }
?>
<tr<?php echo $class;?>>
        <td>
            <?php echo $city['City']['geonameid']; ?>
</td>
        <td>
            <?php echo $city['City']['name']; ?>
</td>
        <td>
            <?php echo $city['City']['modificationDate']; ?>
</td>
        <td class="actions">
            <?php echo $this->Html->link(__('View'), array('action'=>'view', $city['City']['geonameid'])); ?>
<?php echo $this->Html->link(__('Edit'), array('action'=>'edit', $city['City']['geonameid'])); ?>
<?php echo $this->Html->link(__('Delete'), array('action'=>'delete', $city['City']['geonameid']), null, sprintf(__('Are you sure you want to delete city %s?'), $city['City']['name'])); ?>
</td>
    </tr>
<?php endforeach; ?>
</table>

<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>
<div class="actions">
    <ul>
        <li><?php echo $this->Html->link(__('New City'), array('action'=>'add')); ?></li>
    </ul>
</div>