2008-05-30 11:40:08 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2017-06-10 21:33:55 +00:00
|
|
|
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
|
2017-06-10 22:10:52 +00:00
|
|
|
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
2013-02-08 12:22:51 +00:00
|
|
|
* For full copyright and license information, please see the LICENSE.txt
|
2008-05-30 11:40:08 +00:00
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
2017-06-10 22:10:52 +00:00
|
|
|
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
|
2017-06-10 21:33:55 +00:00
|
|
|
* @link https://cakephp.org CakePHP(tm) Project
|
2011-10-15 18:17:44 +00:00
|
|
|
* @package Cake.View.Scaffolds
|
2008-10-30 17:30:26 +00:00
|
|
|
* @since CakePHP(tm) v 0.10.0.1076
|
2013-05-30 22:11:14 +00:00
|
|
|
* @license http://www.opensource.org/licenses/mit-license.php MIT License
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
|
|
|
?>
|
2012-05-19 14:48:15 +00:00
|
|
|
<div class="<?php echo $pluralVar; ?> index">
|
|
|
|
<h2><?php echo $pluralHumanName; ?></h2>
|
2008-05-30 11:40:08 +00:00
|
|
|
<table cellpadding="0" cellspacing="0">
|
|
|
|
<tr>
|
2012-05-19 14:48:15 +00:00
|
|
|
<?php foreach ($scaffoldFields as $_field): ?>
|
|
|
|
<th><?php echo $this->Paginator->sort($_field); ?></th>
|
|
|
|
<?php endforeach; ?>
|
|
|
|
<th><?php echo __d('cake', 'Actions'); ?></th>
|
2008-05-30 11:40:08 +00:00
|
|
|
</tr>
|
|
|
|
<?php
|
|
|
|
foreach (${$pluralVar} as ${$singularVar}):
|
2012-11-24 00:01:04 +00:00
|
|
|
echo '<tr>';
|
2015-09-25 15:11:20 +00:00
|
|
|
foreach ($scaffoldFields as $_field):
|
2008-05-30 11:40:08 +00:00
|
|
|
$isKey = false;
|
2015-09-25 15:11:20 +00:00
|
|
|
if (!empty($associations['belongsTo'])):
|
|
|
|
foreach ($associations['belongsTo'] as $_alias => $_details):
|
|
|
|
if ($_field === $_details['foreignKey']):
|
2008-05-30 11:40:08 +00:00
|
|
|
$isKey = true;
|
2012-11-24 00:01:04 +00:00
|
|
|
echo '<td>' . $this->Html->link(${$singularVar}[$_alias][$_details['displayField']], array('controller' => $_details['controller'], 'action' => 'view', ${$singularVar}[$_alias][$_details['primaryKey']])) . '</td>';
|
2008-05-30 11:40:08 +00:00
|
|
|
break;
|
2015-09-25 15:11:20 +00:00
|
|
|
endif;
|
|
|
|
endforeach;
|
|
|
|
endif;
|
|
|
|
if ($isKey !== true):
|
2012-11-24 00:01:04 +00:00
|
|
|
echo '<td>' . h(${$singularVar}[$modelClass][$_field]) . '</td>';
|
2015-09-25 15:11:20 +00:00
|
|
|
endif;
|
|
|
|
endforeach;
|
2008-05-30 11:40:08 +00:00
|
|
|
|
2010-12-12 18:13:00 +00:00
|
|
|
echo '<td class="actions">';
|
2011-03-12 19:02:56 +00:00
|
|
|
echo $this->Html->link(__d('cake', 'View'), array('action' => 'view', ${$singularVar}[$modelClass][$primaryKey]));
|
2012-11-24 00:01:04 +00:00
|
|
|
echo ' ' . $this->Html->link(__d('cake', 'Edit'), array('action' => 'edit', ${$singularVar}[$modelClass][$primaryKey]));
|
|
|
|
echo ' ' . $this->Form->postLink(
|
2011-10-28 05:01:17 +00:00
|
|
|
__d('cake', 'Delete'),
|
|
|
|
array('action' => 'delete', ${$singularVar}[$modelClass][$primaryKey]),
|
2013-11-03 17:29:10 +00:00
|
|
|
array(),
|
2013-05-22 10:15:33 +00:00
|
|
|
__d('cake', 'Are you sure you want to delete # %s?', ${$singularVar}[$modelClass][$primaryKey])
|
2010-12-12 18:13:00 +00:00
|
|
|
);
|
|
|
|
echo '</td>';
|
|
|
|
echo '</tr>';
|
2008-05-30 11:40:08 +00:00
|
|
|
|
|
|
|
endforeach;
|
2010-12-12 18:13:00 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
?>
|
|
|
|
</table>
|
2010-01-13 05:12:45 +00:00
|
|
|
<p><?php
|
|
|
|
echo $this->Paginator->counter(array(
|
2011-09-05 17:33:21 +00:00
|
|
|
'format' => __d('cake', 'Page {:page} of {:pages}, showing {:current} records out of {:count} total, starting on record {:start}, ending on {:end}')
|
2010-01-13 05:12:45 +00:00
|
|
|
));
|
|
|
|
?></p>
|
|
|
|
<div class="paging">
|
2011-09-02 10:51:43 +00:00
|
|
|
<?php
|
|
|
|
echo $this->Paginator->prev('< ' . __d('cake', 'previous'), array(), null, array('class' => 'prev disabled'));
|
|
|
|
echo $this->Paginator->numbers(array('separator' => ''));
|
2015-09-25 15:11:20 +00:00
|
|
|
echo $this->Paginator->next(__d('cake', 'next') . ' >', array(), null, array('class' => 'next disabled'));
|
2011-09-02 10:51:43 +00:00
|
|
|
?>
|
2010-01-13 05:12:45 +00:00
|
|
|
</div>
|
2008-05-30 11:40:08 +00:00
|
|
|
</div>
|
|
|
|
<div class="actions">
|
2011-03-12 19:02:56 +00:00
|
|
|
<h3><?php echo __d('cake', 'Actions'); ?></h3>
|
2008-05-30 11:40:08 +00:00
|
|
|
<ul>
|
2011-03-12 19:02:56 +00:00
|
|
|
<li><?php echo $this->Html->link(__d('cake', 'New %s', $singularHumanName), array('action' => 'add')); ?></li>
|
2008-05-30 11:40:08 +00:00
|
|
|
<?php
|
|
|
|
$done = array();
|
2008-06-10 02:12:32 +00:00
|
|
|
foreach ($associations as $_type => $_data) {
|
2008-10-23 00:10:44 +00:00
|
|
|
foreach ($_data as $_alias => $_details) {
|
2008-06-10 02:12:32 +00:00
|
|
|
if ($_details['controller'] != $this->name && !in_array($_details['controller'], $done)) {
|
2012-11-28 02:57:12 +00:00
|
|
|
echo '<li>';
|
|
|
|
echo $this->Html->link(
|
|
|
|
__d('cake', 'List %s', Inflector::humanize($_details['controller'])),
|
|
|
|
array('plugin' => $_details['plugin'], 'controller' => $_details['controller'], 'action' => 'index')
|
|
|
|
);
|
|
|
|
echo '</li>';
|
|
|
|
|
|
|
|
echo '<li>';
|
|
|
|
echo $this->Html->link(
|
|
|
|
__d('cake', 'New %s', Inflector::humanize(Inflector::underscore($_alias))),
|
|
|
|
array('plugin' => $_details['plugin'], 'controller' => $_details['controller'], 'action' => 'add')
|
|
|
|
);
|
|
|
|
echo '</li>';
|
2008-06-10 02:12:32 +00:00
|
|
|
$done[] = $_details['controller'];
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</ul>
|
2011-06-22 20:08:17 +00:00
|
|
|
</div>
|