2008-05-30 11:40:08 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
*
|
2010-10-03 16:38:58 +00:00
|
|
|
* PHP 5
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2009-11-06 06:46:59 +00:00
|
|
|
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
2012-03-13 02:46:46 +00:00
|
|
|
* Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
2012-03-13 02:46:46 +00:00
|
|
|
* @copyright Copyright 2005-2012, 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
|
2009-11-06 06:51:51 +00:00
|
|
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
|
|
|
?>
|
|
|
|
<div class="<?php echo $pluralVar;?> form">
|
2009-11-04 04:52:56 +00:00
|
|
|
<?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) {
|
2009-11-26 14:52:15 +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
|
2010-04-15 15:43:39 +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): ?>
|
2010-12-05 01:37:13 +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>
|
2008-05-30 11:40:08 +00:00
|
|
|
<?php endif;?>
|
2010-05-02 21:53:42 +00:00
|
|
|
<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>
|