mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-16 03:48:24 +00:00
94e5730b41
Author: phpnut Date: 2:11:57 PM, Saturday, November 05, 2005 Message: Fixing Controller::generateFieldNames() to work with changes to Model [1334] Author: phpnut Date: 1:18:02 PM, Saturday, November 05, 2005 Message: More work on changes made in the model to allow association names to be used as an alias. These changes are being made to update scaffold to work with changes in [1330]. Added var $alias that holds an array with the key value pair of the table name and the association name. [1330] Author: phpnut Date: 10:25:16 PM, Friday, November 04, 2005 Message: Adding fix for Ticket #127. The query returns properly now but, this breaks scaffold which I will be fixing soon. Also the save methods for the model have not been tested but I am sure these need to be corrected also. git-svn-id: https://svn.cakephp.org/repo/trunk/cake@1336 3807eeeb-6ff5-0310-8944-8be069107fe0
65 lines
2.3 KiB
Text
65 lines
2.3 KiB
Text
<!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>
|
|
<title>CakePHP : A Rapid Development Framework :: <?php echo $title_for_layout?></title>
|
|
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
|
|
<?php echo $html->charset('UTF-8')?>
|
|
<?php echo $html->css('cake.default')?>
|
|
<?php echo $html->css('cake.scaffold')?>
|
|
<?php echo $html->css('cake.forms')?>
|
|
</head>
|
|
<body>
|
|
<div id="container">
|
|
<div id="header">
|
|
<div id="headerLogo">
|
|
<a href="http://cakephp.org">
|
|
<?php echo $html->image('cake.logo.png', array('alt'=>"CakePHP : Rapid Development Framework")); ?>
|
|
</a>
|
|
</div>
|
|
<div id="headerNav">
|
|
<?php
|
|
echo $html->link('API', 'http://api.cakephp.org/');
|
|
echo $html->link('Wiki', 'http://wiki.cakephp.org');
|
|
echo $html->link('CakeForge', 'http://cakeforge.org');
|
|
echo $html->link('Trac', 'https://trac.cakephp.org');
|
|
|
|
?>
|
|
</div>
|
|
</div>
|
|
<div id="pageNav">
|
|
<?php
|
|
echo $html->link('Home', 'http://cakephp.org/',array('class'=>'active'));
|
|
echo ' ';
|
|
echo $html->link('Blog', 'http://cakephp.org/blogs',array('class'=>''));
|
|
echo ' ';
|
|
echo $html->link('Downloads', 'http://cakephp.org/downloads/',array('class'=>''));
|
|
echo ' ';
|
|
echo $html->link('Support', 'http://cakephp.org/pages/support/',array('class'=>''));
|
|
echo ' ';
|
|
echo $html->link('CakeBin', 'http://cakephp.org/pastes/',array('class'=>''));
|
|
?>
|
|
</div>
|
|
|
|
<div id="content">
|
|
|
|
<?php $this->controller->Session->flash(); ?>
|
|
<?php echo $content_for_layout?>
|
|
</div>
|
|
<div id="pb-cake">
|
|
© 2005 CakePHP ::
|
|
<a href="https://trac.cakephp.org/wiki/Authors">CakePHP Developers and Authors</a>
|
|
<p>CakePHP version 0.10.3.1311_pre_beta</p>
|
|
<a href="http://www.cakephp.org/" target="_new" class="simple">
|
|
<?php echo $html->image('cake.power.png', array('alt'=>"CakePHP : Rapid Development Framework", 'border'=>"0"))?>
|
|
</a>
|
|
<a href="http://www.cakephp.org/" target="_new" class="simple">
|
|
<?php echo $html->image('pbcake.gif', array('width'=>"120",'height'=>"28",'alt'=>"CakePHP : Rapid Development Framework", 'border'=>"0"))?>
|
|
</a>
|
|
</div>
|
|
<div id="footer">
|
|
</div>
|
|
</div>
|
|
<!---PLEASE USE ONE OF THE POWERED BY CAKE LOGOS------->
|
|
|
|
</body>
|
|
</html>
|