2008-05-30 11:40:08 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2009-11-06 06:46:59 +00:00
|
|
|
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
2013-02-08 11:59:49 +00:00
|
|
|
* Copyright (c) Cake Software Foundation, Inc. (http://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.
|
|
|
|
*
|
2013-02-08 11:59:49 +00:00
|
|
|
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2009-11-06 06:00:11 +00:00
|
|
|
* @link http://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; ?> form">
|
2008-05-30 11:40:08 +00:00
|
|
|
<?php
|
2009-12-10 23:37:01 +00:00
|
|
|
echo $this->Form->create();
|
|
|
|
echo $this->Form->inputs($scaffoldFields, array('created', 'modified', 'updated'));
|
2011-03-12 19:02:56 +00:00
|
|
|
echo $this->Form->end(__d('cake', 'Submit'));
|
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>
|
2013-02-12 02:38:08 +00:00
|
|
|
<?php if ($this->request->action !== 'add'): ?>
|
2010-12-12 18:13:00 +00:00
|
|
|
<li><?php echo $this->Form->postLink(
|
2011-03-12 19:02:56 +00:00
|
|
|
__d('cake', 'Delete'),
|
2010-12-12 18:13:00 +00:00
|
|
|
array('action' => 'delete', $this->Form->value($modelClass . '.' . $primaryKey)),
|
2013-11-03 17:29:10 +00:00
|
|
|
array(),
|
2011-03-12 19:02:56 +00:00
|
|
|
__d('cake', 'Are you sure you want to delete # %s?', $this->Form->value($modelClass . '.' . $primaryKey)));
|
2010-12-12 18:13:00 +00:00
|
|
|
?></li>
|
2012-05-19 14:48:15 +00:00
|
|
|
<?php endif; ?>
|
|
|
|
<li><?php echo $this->Html->link(__d('cake', 'List') . ' ' . $pluralHumanName, array('action' => 'index')); ?></li>
|
2008-05-30 11:40:08 +00:00
|
|
|
<?php
|
|
|
|
$done = array();
|
2015-09-25 15:11:20 +00:00
|
|
|
foreach ($associations as $_type => $_data):
|
|
|
|
foreach ($_data as $_alias => $_details):
|
|
|
|
if ($_details['controller'] != $this->name && !in_array($_details['controller'], $done)):
|
2012-11-28 02:57:12 +00:00
|
|
|
echo "\t\t<li>" . $this->Html->link(
|
|
|
|
__d('cake', 'List %s', Inflector::humanize($_details['controller'])),
|
|
|
|
array('plugin' => $_details['plugin'], 'controller' => $_details['controller'], 'action' => 'index')
|
|
|
|
) . "</li>\n";
|
|
|
|
echo "\t\t<li>" . $this->Html->link(
|
|
|
|
__d('cake', 'New %s', Inflector::humanize(Inflector::underscore($_alias))),
|
|
|
|
array('plugin' => $_details['plugin'], 'controller' => $_details['controller'], 'action' => 'add')
|
|
|
|
) . "</li>\n";
|
2008-06-10 02:12:32 +00:00
|
|
|
$done[] = $_details['controller'];
|
2015-09-25 15:11:20 +00:00
|
|
|
endif;
|
|
|
|
endforeach;
|
|
|
|
endforeach;
|
2008-05-30 11:40:08 +00:00
|
|
|
?>
|
|
|
|
</ul>
|
2012-11-28 02:57:12 +00:00
|
|
|
</div>
|