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:26:48 +00:00
|
|
|
* @package Cake.Console.Templates.default.views
|
2008-10-30 17:30:26 +00:00
|
|
|
* @since CakePHP(tm) v 1.2.0.5234
|
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">
|
|
|
|
<?php echo "<?php echo \$this->Form->create('{$modelClass}'); ?>\n"; ?>
|
2008-05-30 11:40:08 +00:00
|
|
|
<fieldset>
|
2011-06-04 17:42:22 +00:00
|
|
|
<legend><?php printf("<?php echo __('%s %s'); ?>", Inflector::humanize($action), $singularHumanName); ?></legend>
|
2008-05-30 11:40:08 +00:00
|
|
|
<?php
|
|
|
|
echo "\t<?php\n";
|
|
|
|
foreach ($fields as $field) {
|
2014-04-29 12:19:33 +00:00
|
|
|
if (strpos($action, 'add') !== false && $field === $primaryKey) {
|
2008-05-30 11:40:08 +00:00
|
|
|
continue;
|
|
|
|
} elseif (!in_array($field, array('created', 'modified', 'updated'))) {
|
2009-11-04 04:52:56 +00:00
|
|
|
echo "\t\techo \$this->Form->input('{$field}');\n";
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
|
|
|
}
|
2008-10-23 00:10:44 +00:00
|
|
|
if (!empty($associations['hasAndBelongsToMany'])) {
|
2008-05-30 11:40:08 +00:00
|
|
|
foreach ($associations['hasAndBelongsToMany'] as $assocName => $assocData) {
|
2009-11-04 04:52:56 +00:00
|
|
|
echo "\t\techo \$this->Form->input('{$assocName}');\n";
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
echo "\t?>\n";
|
|
|
|
?>
|
|
|
|
</fieldset>
|
|
|
|
<?php
|
2012-05-19 14:48:15 +00:00
|
|
|
echo "<?php echo \$this->Form->end(__('Submit')); ?>\n";
|
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-03-07 22:14:40 +00:00
|
|
|
|
|
|
|
<?php if (strpos($action, 'add') === false): ?>
|
2012-05-19 14:48:15 +00:00
|
|
|
<li><?php echo "<?php echo \$this->Form->postLink(__('Delete'), array('action' => 'delete', \$this->Form->value('{$modelClass}.{$primaryKey}')), null, __('Are you sure you want to delete # %s?', \$this->Form->value('{$modelClass}.{$primaryKey}'))); ?>"; ?></li>
|
|
|
|
<?php endif; ?>
|
|
|
|
<li><?php echo "<?php echo \$this->Html->link(__('List " . $pluralHumanName . "'), array('action' => 'index')); ?>"; ?></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>
|
2011-06-04 17:42:22 +00:00
|
|
|
</div>
|