2008-05-30 11:40:08 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
*
|
2010-10-03 16:38:58 +00:00
|
|
|
* PHP 5
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2009-11-06 06:46:59 +00:00
|
|
|
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
|
|
|
* Copyright 2005-2009, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
2009-11-06 06:46:59 +00:00
|
|
|
* @copyright Copyright 2005-2009, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2009-11-06 06:00:11 +00:00
|
|
|
* @link http://cakephp.org CakePHP(tm) Project
|
2008-10-30 17:30:26 +00:00
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.cake.console.libs.templates.views
|
|
|
|
* @since CakePHP(tm) v 1.2.0.5234
|
2009-11-06 06:51:51 +00:00
|
|
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
|
|
|
?>
|
|
|
|
<div class="<?php echo $pluralVar;?> index">
|
2010-04-15 15:43:39 +00:00
|
|
|
<h2><?php echo "<?php echo __('{$pluralHumanName}');?>";?></h2>
|
2009-12-18 04:17:15 +00:00
|
|
|
<table cellpadding="0" cellspacing="0">
|
|
|
|
<tr>
|
|
|
|
<?php foreach ($fields as $field):?>
|
|
|
|
<th><?php echo "<?php echo \$this->Paginator->sort('{$field}');?>";?></th>
|
|
|
|
<?php endforeach;?>
|
2010-04-15 15:43:39 +00:00
|
|
|
<th class="actions"><?php echo "<?php echo __('Actions');?>";?></th>
|
2009-12-18 04:17:15 +00:00
|
|
|
</tr>
|
|
|
|
<?php
|
|
|
|
echo "<?php
|
|
|
|
\$i = 0;
|
|
|
|
foreach (\${$pluralVar} as \${$singularVar}):
|
|
|
|
\$class = null;
|
|
|
|
if (\$i++ % 2 == 0) {
|
|
|
|
\$class = ' class=\"altrow\"';
|
|
|
|
}
|
|
|
|
?>\n";
|
2008-05-30 11:40:08 +00:00
|
|
|
echo "\t<tr<?php echo \$class;?>>\n";
|
|
|
|
foreach ($fields as $field) {
|
|
|
|
$isKey = false;
|
2008-10-23 00:10:44 +00:00
|
|
|
if (!empty($associations['belongsTo'])) {
|
2008-05-30 11:40:08 +00:00
|
|
|
foreach ($associations['belongsTo'] as $alias => $details) {
|
2008-10-23 00:10:44 +00:00
|
|
|
if ($field === $details['foreignKey']) {
|
2008-05-30 11:40:08 +00:00
|
|
|
$isKey = true;
|
2009-11-04 04:52:56 +00:00
|
|
|
echo "\t\t<td>\n\t\t\t<?php echo \$this->Html->link(\${$singularVar}['{$alias}']['{$details['displayField']}'], array('controller' => '{$details['controller']}', 'action' => 'view', \${$singularVar}['{$alias}']['{$details['primaryKey']}'])); ?>\n\t\t</td>\n";
|
2008-05-30 11:40:08 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2008-10-23 00:10:44 +00:00
|
|
|
if ($isKey !== true) {
|
2010-01-12 23:28:16 +00:00
|
|
|
echo "\t\t<td><?php echo \${$singularVar}['{$modelClass}']['{$field}']; ?> </td>\n";
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
echo "\t\t<td class=\"actions\">\n";
|
2010-04-15 15:43:39 +00:00
|
|
|
echo "\t\t\t<?php echo \$this->Html->link(__('View'), array('action' => 'view', \${$singularVar}['{$modelClass}']['{$primaryKey}'])); ?>\n";
|
|
|
|
echo "\t\t\t<?php echo \$this->Html->link(__('Edit'), array('action' => 'edit', \${$singularVar}['{$modelClass}']['{$primaryKey}'])); ?>\n";
|
|
|
|
echo "\t\t\t<?php echo \$this->Html->link(__('Delete'), array('action' => 'delete', \${$singularVar}['{$modelClass}']['{$primaryKey}']), null, sprintf(__('Are you sure you want to delete # %s?'), \${$singularVar}['{$modelClass}']['{$primaryKey}'])); ?>\n";
|
2008-05-30 11:40:08 +00:00
|
|
|
echo "\t\t</td>\n";
|
|
|
|
echo "\t</tr>\n";
|
|
|
|
|
2009-12-18 04:17:15 +00:00
|
|
|
echo "<?php endforeach; ?>\n";
|
|
|
|
?>
|
|
|
|
</table>
|
|
|
|
<p>
|
|
|
|
<?php echo "<?php
|
|
|
|
echo \$this->Paginator->counter(array(
|
2010-04-15 15:43:39 +00:00
|
|
|
'format' => __('Page %page% of %pages%, showing %current% records out of %count% total, starting on record %start%, ending on %end%')
|
2009-12-18 04:17:15 +00:00
|
|
|
));
|
|
|
|
?>";?>
|
|
|
|
</p>
|
|
|
|
|
2009-12-17 06:02:20 +00:00
|
|
|
<div class="paging">
|
2010-05-02 21:53:42 +00:00
|
|
|
<?php echo "\t<?php echo \$this->Paginator->prev('<< ' . __('previous'), array(), null, array('class'=>'disabled'));?>\n";?>
|
2009-12-18 04:17:15 +00:00
|
|
|
| <?php echo "\t<?php echo \$this->Paginator->numbers();?>\n"?> |
|
2010-05-02 21:53:42 +00:00
|
|
|
<?php echo "\t<?php echo \$this->Paginator->next(__('next') . ' >>', array(), null, array('class' => 'disabled'));?>\n";?>
|
2009-12-17 06:02:20 +00:00
|
|
|
</div>
|
2008-05-30 11:40:08 +00:00
|
|
|
</div>
|
|
|
|
<div class="actions">
|
2010-04-15 15:43:39 +00:00
|
|
|
<h3><?php echo "<?php echo __('Actions'); ?>"; ?></h3>
|
2008-05-30 11:40:08 +00:00
|
|
|
<ul>
|
2010-05-02 21:53:42 +00:00
|
|
|
<li><?php echo "<?php echo \$this->Html->link(__('New " . $singularHumanName . "'), array('action' => 'add')); ?>";?></li>
|
2008-05-30 11:40:08 +00:00
|
|
|
<?php
|
|
|
|
$done = array();
|
|
|
|
foreach ($associations as $type => $data) {
|
2008-10-23 00:10:44 +00:00
|
|
|
foreach ($data as $alias => $details) {
|
2008-05-30 11:40:08 +00:00
|
|
|
if ($details['controller'] != $this->name && !in_array($details['controller'], $done)) {
|
2010-05-02 21:53:42 +00:00
|
|
|
echo "\t\t<li><?php echo \$this->Html->link(__('List " . Inflector::humanize($details['controller']) . "'), array('controller' => '{$details['controller']}', 'action' => 'index')); ?> </li>\n";
|
|
|
|
echo "\t\t<li><?php echo \$this->Html->link(__('New " . Inflector::humanize(Inflector::underscore($alias)) . "'), array('controller' => '{$details['controller']}', 'action' => 'add')); ?> </li>\n";
|
2008-05-30 11:40:08 +00:00
|
|
|
$done[] = $details['controller'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</ul>
|
2009-07-24 19:18:37 +00:00
|
|
|
</div>
|