2005-12-23 21:57:26 +00:00
|
|
|
<?php
|
|
|
|
/* SVN FILE: $Id$ */
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* PHP versions 4 and 5
|
|
|
|
*
|
|
|
|
* CakePHP : Rapid Development Framework <http://www.cakephp.org/>
|
|
|
|
* Copyright (c) 2005, Cake Software Foundation, Inc.
|
|
|
|
* 1785 E. Sahara Avenue, Suite 490-204
|
|
|
|
* Las Vegas, Nevada 89104
|
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
|
|
|
* @filesource
|
|
|
|
* @copyright Copyright (c) 2005, Cake Software Foundation, Inc.
|
|
|
|
* @link http://www.cakefoundation.org/projects/info/cakephp CakePHP Project
|
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.cake.libs.view.templates.pages
|
|
|
|
* @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-03 04:48:00 +00:00
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
|
|
<head>
|
2005-12-28 17:23:12 +00:00
|
|
|
<title>CakePHP : A Rapid Development Framework :: <?php echo $title_for_layout?></title>
|
2005-12-23 21:57:26 +00:00
|
|
|
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
|
[1178]
Author: phpnut
Date: 8:52:12 PM, Sunday, October 23, 2005
Message:
adding cakephp power image
[1177]
Author: phpnut
Date: 8:48:32 PM, Sunday, October 23, 2005
Message:
Updated scaffold to use new layout template.
[1176]
Author: phpnut
Date: 7:09:27 PM, Sunday, October 23, 2005
Message:
renaming cake/conf to cake/config
[1175]
Author: phpnut
Date: 7:06:04 PM, Sunday, October 23, 2005
Message:
moving tags.ini.php to cake/conf/tags.ini.php
[1174]
Author: phpnut
Date: 6:52:19 PM, Sunday, October 23, 2005
Message:
updating css/cake.scaffold.css
[1173]
Author: phpnut
Date: 6:46:07 PM, Sunday, October 23, 2005
Message:
updating css/cake.deafult.css and default layout
[1172]
Author: phpnut
Date: 6:42:48 PM, Sunday, October 23, 2005
Message:
updating css/cake.scaffold.css
[1171]
Author: phpnut
Date: 6:41:00 PM, Sunday, October 23, 2005
Message:
Adding spaces to tags.ini file
[1170]
Author: phpnut
Date: 6:37:17 PM, Sunday, October 23, 2005
Message:
Removing code that is no longer used
[1169]
Author: phpnut
Date: 6:34:24 PM, Sunday, October 23, 2005
Message:
removing files that are no longer used
[1168]
Author: phpnut
Date: 6:19:46 PM, Sunday, October 23, 2005
Message:
Cleaning up Scaffold class.
[1167]
Author: phpnut
Date: 5:26:27 PM, Sunday, October 23, 2005
Message:
Changes are added to remove the $this->models array that would hold the instance of the models.
Now they are available as $this->ModelName; This should be CamelCased.
Added check in the Scaffold to return forms when accessing the actions update, create without a form being submitted.
[1166]
Author: phpnut
Date: 3:53:08 PM, Sunday, October 23, 2005
Message:
Making change to allow setting the name of a class camel cased to fix issues with PHP 4.
In both the model and the controllers:
Model: var $name = 'ModelName';
Controller: var $name = 'ControllerName'; ControllerName not ControllerNameController.
[1165]
Author: phpnut
Date: 1:45:17 PM, Sunday, October 23, 2005
Message:
Fix added for problems with key name that was added to the class registry when underscored
git-svn-id: https://svn.cakephp.org/repo/trunk/cake@1179 3807eeeb-6ff5-0310-8944-8be069107fe0
2005-10-24 01:56:20 +00:00
|
|
|
<?php echo $html->charset('UTF-8')?>
|
|
|
|
<?php echo $html->css('cake.default')?>
|
2005-12-23 21:57:26 +00:00
|
|
|
<!--[if lt IE 7]>
|
|
|
|
<?php echo $html->css('cake.ie');?>
|
|
|
|
<![endif]-->
|
2005-10-03 04:48:00 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
2005-12-23 21:57:26 +00:00
|
|
|
<div id="wrapper">
|
|
|
|
<div id="header">
|
|
|
|
<?php echo $html->image('cake.logo.png', array('alt'=>'CakePHP : Rapid Development Framework', 'border'=>"0"))?>
|
|
|
|
</div>
|
|
|
|
<div id="content">
|
2005-12-27 03:33:44 +00:00
|
|
|
<?php if (isset($this->controller->Session)) $this->controller->Session->flash(); ?>
|
|
|
|
<?php echo $content_for_layout?>
|
2005-10-03 04:48:00 +00:00
|
|
|
</div>
|
2005-12-23 21:57:26 +00:00
|
|
|
<div id="footer">
|
2005-12-28 17:23:12 +00:00
|
|
|
<p>CakePHP ::
|
|
|
|
<a href="http://www.cakefoundation.org/pages/copyright/">© 2005 Cake Software Foundation, Inc.</a>
|
2005-12-27 03:33:44 +00:00
|
|
|
</p>
|
|
|
|
<br />
|
|
|
|
<p>
|
2005-12-23 21:57:26 +00:00
|
|
|
<!--PLEASE USE ONE OF THE POWERED BY CAKEPHP LOGO-->
|
|
|
|
<a href="http://www.cakephp.org/" target="_new">
|
|
|
|
<?php echo $html->image('cake.power.png', array('alt'=>'CakePHP : Rapid Development Framework',
|
|
|
|
'height' => "15",
|
|
|
|
'width' => "80"))?>
|
|
|
|
</a>
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
<a href="http://validator.w3.org/check?uri=referer">
|
|
|
|
<?php echo $html->image('w3c_xhtml10.png', array('alt' => 'Valid XHTML 1.0 Transitional',
|
|
|
|
'height' => "15",
|
|
|
|
'width' => "80"))?>
|
|
|
|
</a>
|
|
|
|
<a href="http://jigsaw.w3.org/css-validator/check/referer">
|
|
|
|
<?php echo $html->image('w3c_css.png', array('alt' => 'Valid CSS!',
|
|
|
|
'height' => "15",
|
|
|
|
'width' => "80"))?>
|
|
|
|
</a>
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
2005-10-03 04:48:00 +00:00
|
|
|
</body>
|
2005-12-23 21:57:26 +00:00
|
|
|
</html>
|