2008-05-30 11:40:08 +00:00
|
|
|
<?php
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* PHP versions 4 and 5
|
|
|
|
*
|
2008-10-30 17:30:26 +00:00
|
|
|
* CakePHP(tm) : Rapid Development Framework (http://www.cakephp.org)
|
2009-11-06 04:34:28 +00:00
|
|
|
* Copyright 2005-2009, Cake Software Foundation, Inc. (http://www.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 04:34:28 +00:00
|
|
|
* @copyright Copyright 2005-2009, Cake Software Foundation, Inc. (http://www.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.libs.view.templates.scaffolds
|
|
|
|
* @since CakePHP(tm) v 0.10.0.1076
|
|
|
|
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
|
|
|
?>
|
|
|
|
<div class="<?php echo $pluralVar;?> form">
|
|
|
|
<?php
|
|
|
|
echo $form->create();
|
2009-07-03 00:14:36 +00:00
|
|
|
echo $form->inputs($scaffoldFields, array('created', 'modified', 'updated'));
|
2008-05-30 11:40:08 +00:00
|
|
|
echo $form->end(__('Submit', true));
|
|
|
|
?>
|
|
|
|
</div>
|
|
|
|
<div class="actions">
|
|
|
|
<ul>
|
|
|
|
<?php if ($this->action != 'add'):?>
|
2009-05-07 00:53:44 +00:00
|
|
|
<li><?php echo $html->link(__('Delete', true), array('action' => 'delete', $form->value($modelClass.'.'.$primaryKey)), null, __('Are you sure you want to delete', true).' #' . $form->value($modelClass.'.'.$primaryKey)); ?></li>
|
2008-05-30 11:40:08 +00:00
|
|
|
<?php endif;?>
|
2009-05-07 00:53:44 +00:00
|
|
|
<li><?php echo $html->link(__('List', true).' '.$pluralHumanName, array('action' => 'index'));?></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)) {
|
2009-07-28 20:01:42 +00:00
|
|
|
echo "\t\t<li>" . $html->link(sprintf(__('List %s', true), Inflector::humanize($_details['controller'])), array('controller' => $_details['controller'], 'action' =>'index')) . "</li>\n";
|
|
|
|
echo "\t\t<li>" . $html->link(sprintf(__('New %s', true), Inflector::humanize(Inflector::underscore($_alias))), array('controller' => $_details['controller'], 'action' =>'add')) . "</li>\n";
|
2008-06-10 02:12:32 +00:00
|
|
|
$done[] = $_details['controller'];
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</ul>
|
|
|
|
</div>
|