2005-10-09 01:56:21 +00:00
|
|
|
<?php
|
|
|
|
/* SVN FILE: $Id$ */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Base controller class.
|
|
|
|
*
|
|
|
|
* PHP versions 4 and 5
|
|
|
|
*
|
|
|
|
* CakePHP : Rapid Development Framework <http://www.cakephp.org/>
|
2005-12-27 03:33:44 +00:00
|
|
|
* Copyright (c) 2005, Cake Software Foundation, Inc.
|
2005-12-23 21:57:26 +00:00
|
|
|
* 1785 E. Sahara Avenue, Suite 490-204
|
|
|
|
* Las Vegas, Nevada 89104
|
2005-12-27 03:33:44 +00:00
|
|
|
*
|
2005-12-23 21:57:26 +00:00
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
2005-10-09 01:56:21 +00:00
|
|
|
*
|
|
|
|
* @filesource
|
2005-12-23 21:57:26 +00:00
|
|
|
* @copyright Copyright (c) 2005, Cake Software Foundation, Inc.
|
|
|
|
* @link http://www.cakefoundation.org/projects/info/cakephp CakePHP Project
|
2005-10-09 01:56:21 +00:00
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.cake.libs.controller.templates.scaffolds
|
|
|
|
* @since CakePHP v 0.10.0.1076
|
|
|
|
* @version $Revision$
|
|
|
|
* @modifiedby $LastChangedBy$
|
|
|
|
* @lastmodified $Date$
|
|
|
|
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
|
|
|
|
*/
|
2005-10-24 07:51:09 +00:00
|
|
|
|
|
|
|
$modelName = Inflector::singularize($this->name);
|
[1198]
Author: phpnut
Date: 7:29:04 PM, Monday, October 24, 2005
Message:
More work on changes to use CamelCase throughout the system.
[1197]
Author: phpnut
Date: 2:57:08 PM, Monday, October 24, 2005
Message:
Removing unneeded calls to Inflector class
[1196]
Author: phpnut
Date: 2:39:30 PM, Monday, October 24, 2005
Message:
adding fix for Ticket #61
[1195]
Author: phpnut
Date: 11:19:43 AM, Monday, October 24, 2005
Message:
Adding fix for Ticket #47
[1194]
Author: phpnut
Date: 10:10:41 AM, Monday, October 24, 2005
Message:
Adding fix for Ticket #49
git-svn-id: https://svn.cakephp.org/repo/trunk/cake@1199 3807eeeb-6ff5-0310-8944-8be069107fe0
2005-10-25 00:33:08 +00:00
|
|
|
$modelKey = $modelName;
|
2005-12-23 21:57:26 +00:00
|
|
|
|
2005-10-09 01:56:21 +00:00
|
|
|
?>
|
2005-12-27 03:33:44 +00:00
|
|
|
<h1><?php echo $type.' '.Inflector::humanize($modelName);?></h1>
|
2005-07-21 04:02:32 +00:00
|
|
|
|
2005-10-24 07:51:09 +00:00
|
|
|
<?php
|
2005-12-27 03:33:44 +00:00
|
|
|
if($type == 'Edit')
|
|
|
|
{
|
|
|
|
echo $html->formTag('/'. Inflector::underscore($this->name) .'/update');
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
echo $html->formTag('/'. Inflector::underscore($this->name).'/create');
|
|
|
|
}
|
2005-07-21 04:02:32 +00:00
|
|
|
|
2005-12-27 03:33:44 +00:00
|
|
|
echo $form->generateFields( $fieldNames );
|
2005-12-23 21:57:26 +00:00
|
|
|
|
2005-12-27 03:33:44 +00:00
|
|
|
echo $form->generateSubmitDiv( 'Save' )
|
2005-08-21 06:49:02 +00:00
|
|
|
|
|
|
|
?>
|
2005-12-23 21:57:26 +00:00
|
|
|
</form>
|
2005-08-21 06:49:02 +00:00
|
|
|
<ul class='actions'>
|
2005-07-21 04:02:32 +00:00
|
|
|
<?php
|
2005-12-27 03:33:44 +00:00
|
|
|
if($type == 'Edit')
|
|
|
|
{
|
2006-01-12 02:10:47 +00:00
|
|
|
echo "<li>".$html->link('Delete '.Inflector::humanize($modelName), '/'.$this->viewPath.'/destroy/'.$data[$modelKey][$this->controller->{$modelName}->primaryKey])."</li>";
|
2005-12-27 03:33:44 +00:00
|
|
|
}
|
2006-01-12 02:10:47 +00:00
|
|
|
echo "<li>".$html->link('List '.Inflector::humanize($modelName), '/'.$this->viewPath.'/index')."</li>";
|
2005-12-27 03:33:44 +00:00
|
|
|
|
|
|
|
if($type == 'Edit')
|
|
|
|
{
|
|
|
|
foreach( $fieldNames as $field => $value )
|
|
|
|
{
|
|
|
|
if( isset( $value['foreignKey'] ) )
|
|
|
|
{
|
2006-01-12 02:10:47 +00:00
|
|
|
echo "<li>".$html->link( "View ".Inflector::humanize($value['controller']), "/".Inflector::underscore($value['controller'])."/show/".$data[$modelKey][$field] )."</li>";
|
2005-12-27 03:33:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2005-07-21 04:02:32 +00:00
|
|
|
?>
|
2005-08-21 06:49:02 +00:00
|
|
|
</ul>
|