* Copyright 2005-2007, 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 2005-2007, Cake Software Foundation, Inc. * @link http://www.cakefoundation.org/projects/info/cakephp CakePHP(tm) Project * @package cake * @subpackage cake.cake.libs.view.templates.scaffolds * @since CakePHP(tm) v 0.10.0.1076 * @version $Revision$ * @modifiedby $LastChangedBy$ * @lastmodified $Date$ * @license http://www.opensource.org/licenses/mit-license.php The MIT License */ ?>

primaryKey; $otherDisplayField = $otherModelObj->displayField; echo "\t\t".Inflector::humanize($otherModelClass)."\n"; echo "\t\t\n\t\t\t".$html->link(${$singularVar}[$otherModelClass][$otherDisplayField], array('controller'=> $otherControllerPath, 'action'=>'view', ${$singularVar}[$otherModelClass][$otherPrimaryKey])). "\n\t\t\t \n\t\t\n"; } else { echo "\t\t".Inflector::humanize($field)."\n"; echo "\t\t\n\t\t\t" . ${$singularVar}[$modelClass][$field] . "\n\t\t\t \n\t\t\n"; } } ?>
$assocData): $otherModelKey = Inflector::underscore($assocData['className']); $otherControllerPath = Inflector::pluralize($otherModelKey); $otherControllerName = Inflector::camelize($otherControllerPath); $assocKey = Inflector::underscore($assocName); $otherPluralHumanName = Inflector::humanize(Inflector::pluralize($assocKey)); $otherSingularHumanName = Inflector::humanize($assocKey); $otherModelObj =& ClassRegistry::getObject($otherModelKey); $otherFields = array_keys($otherModelObj->schema()); $otherPrimaryKey = $otherModelObj->primaryKey; ?> $assocData): $otherModelKey = Inflector::underscore($assocData['className']); $otherModelObj =& ClassRegistry::getObject($otherModelKey); $otherControllerPath = Inflector::pluralize($otherModelKey); $otherControllerName = Inflector::camelize($otherControllerPath); $otherSingularVar = Inflector::variable($assocName); $assocKey = Inflector::underscore($assocName); $otherPluralHumanName = Inflector::humanize(Inflector::pluralize($assocKey)); $otherSingularHumanName = Inflector::humanize($assocKey); $otherFields = array_keys($otherModelObj->schema());; $otherPrimaryKey = $otherModelObj->primaryKey; ?>