| 13532 |
anikendra |
1 |
<?php
|
|
|
2 |
/**
|
|
|
3 |
*
|
|
|
4 |
*
|
|
|
5 |
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
|
|
6 |
* Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
|
|
7 |
*
|
|
|
8 |
* Licensed under The MIT License
|
|
|
9 |
* For full copyright and license information, please see the LICENSE.txt
|
|
|
10 |
* Redistributions of files must retain the above copyright notice.
|
|
|
11 |
*
|
|
|
12 |
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
|
|
13 |
* @link http://cakephp.org CakePHP(tm) Project
|
|
|
14 |
* @package Cake.View.Scaffolds
|
|
|
15 |
* @since CakePHP(tm) v 0.10.0.1076
|
|
|
16 |
* @license http://www.opensource.org/licenses/mit-license.php MIT License
|
|
|
17 |
*/
|
|
|
18 |
?>
|
|
|
19 |
<div class="<?php echo $pluralVar; ?> form">
|
|
|
20 |
<?php
|
|
|
21 |
echo $this->Form->create();
|
|
|
22 |
echo $this->Form->inputs($scaffoldFields, array('created', 'modified', 'updated'));
|
|
|
23 |
echo $this->Form->end(__d('cake', 'Submit'));
|
|
|
24 |
?>
|
|
|
25 |
</div>
|
|
|
26 |
<div class="actions">
|
|
|
27 |
<h3><?php echo __d('cake', 'Actions'); ?></h3>
|
|
|
28 |
<ul>
|
|
|
29 |
<?php if ($this->request->action !== 'add'): ?>
|
|
|
30 |
<li><?php echo $this->Form->postLink(
|
|
|
31 |
__d('cake', 'Delete'),
|
|
|
32 |
array('action' => 'delete', $this->Form->value($modelClass . '.' . $primaryKey)),
|
|
|
33 |
null,
|
|
|
34 |
__d('cake', 'Are you sure you want to delete # %s?', $this->Form->value($modelClass . '.' . $primaryKey)));
|
|
|
35 |
?></li>
|
|
|
36 |
<?php endif; ?>
|
|
|
37 |
<li><?php echo $this->Html->link(__d('cake', 'List') . ' ' . $pluralHumanName, array('action' => 'index')); ?></li>
|
|
|
38 |
<?php
|
|
|
39 |
$done = array();
|
|
|
40 |
foreach ($associations as $_type => $_data) {
|
|
|
41 |
foreach ($_data as $_alias => $_details) {
|
|
|
42 |
if ($_details['controller'] != $this->name && !in_array($_details['controller'], $done)) {
|
|
|
43 |
echo "\t\t<li>" . $this->Html->link(
|
|
|
44 |
__d('cake', 'List %s', Inflector::humanize($_details['controller'])),
|
|
|
45 |
array('plugin' => $_details['plugin'], 'controller' => $_details['controller'], 'action' => 'index')
|
|
|
46 |
) . "</li>\n";
|
|
|
47 |
echo "\t\t<li>" . $this->Html->link(
|
|
|
48 |
__d('cake', 'New %s', Inflector::humanize(Inflector::underscore($_alias))),
|
|
|
49 |
array('plugin' => $_details['plugin'], 'controller' => $_details['controller'], 'action' => 'add')
|
|
|
50 |
) . "</li>\n";
|
|
|
51 |
$done[] = $_details['controller'];
|
|
|
52 |
}
|
|
|
53 |
}
|
|
|
54 |
}
|
|
|
55 |
?>
|
|
|
56 |
</ul>
|
|
|
57 |
</div>
|