mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-16 03:48:24 +00:00
c9a2da3e0c
git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@5277 3807eeeb-6ff5-0310-8944-8be069107fe0
183 lines
No EOL
7.2 KiB
PHP
183 lines
No EOL
7.2 KiB
PHP
<?php
|
|
/* SVN FILE: $Id$ */
|
|
/**
|
|
*
|
|
* PHP versions 4 and 5
|
|
*
|
|
* CakePHP(tm) : Rapid Development Framework <http://www.cakephp.org/>
|
|
* 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
|
|
*/
|
|
?>
|
|
<div class="<?php echo $singularVar;?>">
|
|
<h2><?php echo sprintf(__("View %s", true), $singularHumanName);?></h2>
|
|
<dl>
|
|
<?php
|
|
$i = 0;
|
|
foreach($fields as $field) {
|
|
if($i++ % 2 == 0) {
|
|
$class = ' class="altrow"';
|
|
} else {
|
|
$class = null;
|
|
}
|
|
if(in_array($field['name'], array_keys($foreignKeys))) {
|
|
$otherModelClass = $foreignKeys[$field['name']][1];
|
|
$otherModelKey = Inflector::underscore($otherModelClass);
|
|
$otherControllerName = Inflector::pluralize($otherModelClass);
|
|
$otherControllerPath = Inflector::underscore($otherControllerName);
|
|
if(isset($foreignKeys[$field['name']][2])) {
|
|
$otherModelClass = $foreignKeys[$field['name']][2];
|
|
}
|
|
$otherSingularVar = Inflector::variable($otherModelClass);
|
|
$otherModelObj =& ClassRegistry::getObject($otherModelKey);
|
|
$otherPrimaryKey = $otherModelObj->primaryKey;
|
|
$otherDisplayField = $otherModelObj->displayField;
|
|
echo "\t\t<dt{$class}>".Inflector::humanize($otherModelClass)."</dt>\n";
|
|
echo "\t\t<dd{$class}>\n\t\t\t".$html->link(${$singularVar}[$otherModelClass][$otherDisplayField], array('controller'=> $otherControllerPath, 'action'=>'view', ${$singularVar}[$otherModelClass][$otherPrimaryKey])). "\n\t\t\t \n\t\t</dd>\n";
|
|
} else {
|
|
echo "\t\t<dt{$class}>".Inflector::humanize($field['name'])."</dt>\n";
|
|
echo "\t\t<dd{$class}>\n\t\t\t" . ${$singularVar}[$modelClass][$field['name']] . "\n\t\t\t \n\t\t</dd>\n";
|
|
}
|
|
}
|
|
?>
|
|
</dl>
|
|
</div>
|
|
<div class="actions">
|
|
<ul>
|
|
<?php
|
|
echo "\t\t<li>" .$html->link(__('Edit', true)." ".$singularHumanName, array('action'=>'edit', ${$singularVar}[$modelClass][$primaryKey])). " </li>\n";
|
|
echo "\t\t<li>" .$html->link(__('Delete', true)." ".$singularHumanName, array('action'=>'delete', ${$singularVar}[$modelClass][$primaryKey]), null, 'Are you sure you want to delete #' . ${$singularVar}[$modelClass][$primaryKey] . '?'). " </li>\n";
|
|
echo "\t\t<li>" .$html->link(__('List', true)." ".$pluralHumanName, array('action'=>'index')). " </li>\n";
|
|
echo "\t\t<li>" .$html->link(__('New', true)." ".$singularHumanName, array('action'=>'add')). " </li>\n";
|
|
|
|
foreach($foreignKeys as $field => $value) {
|
|
$otherModelClass = $value['1'];
|
|
if($otherModelClass != $modelClass) {
|
|
$otherModelKey = Inflector::underscore($otherModelClass);
|
|
$otherControllerName = Inflector::pluralize($otherModelClass);
|
|
$otherControllerPath = Inflector::underscore($otherControllerName);
|
|
$otherSingularVar = Inflector::variable($otherModelClass);
|
|
$otherPluralHumanName = Inflector::humanize($otherControllerPath);
|
|
$otherSingularHumanName = Inflector::humanize($otherModelKey);
|
|
echo "\t\t<li>" .$html->link(__('List', true)." ".$otherPluralHumanName, array('controller'=> $otherControllerPath, 'action'=>'index')). " </li>\n";
|
|
echo "\t\t<li>" .$html->link(__('New', true)." ".$otherSingularHumanName, array('controller'=> $otherControllerPath, 'action'=>'add')). " </li>\n";
|
|
}
|
|
}
|
|
?>
|
|
</ul>
|
|
</div>
|
|
<?php
|
|
$i = 0;
|
|
foreach ($hasOne as $assocName => $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 = $otherModelObj->_tableInfo->value;
|
|
$otherPrimaryKey = $otherModelObj->primaryKey;
|
|
|
|
if($i++ % 2 == 0) {
|
|
$class = ' class="altrow"';
|
|
} else {
|
|
$class = null;
|
|
}
|
|
?>
|
|
<div class="related">
|
|
<h3><?php echo sprintf(__("Related %s", true), $otherPluralHumanName);?></h3>
|
|
<?php if(!empty(${$singularVar}[$assocName])):?>
|
|
<dl>
|
|
<?php
|
|
foreach($otherFields as $field) {
|
|
echo "\t\t<dt{$class}>".Inflector::humanize($field['name'])."</dt>\n";
|
|
echo "\t\t<dd{$class}>\n\t" .${$singularVar}[$assocName][$field['name']] ."\n </dd>\n";
|
|
}
|
|
?>
|
|
</dl>
|
|
<?php endif; ?>
|
|
<div class="actions">
|
|
<ul>
|
|
<li><?php echo $html->link(__('Edit', true)." ".$otherSingularHumanName, array('controller'=> $otherControllerPath, 'action'=>'edit', ${$singularVar}[$assocName][$otherPrimaryKey]))."</li>\n";?>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<?php
|
|
endforeach;
|
|
|
|
$relations = array_merge($hasMany, $hasAndBelongsToMany);
|
|
$i = 0;
|
|
foreach($relations as $assocName => $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 = $otherModelObj->_tableInfo->value;
|
|
$otherPrimaryKey = $otherModelObj->primaryKey;
|
|
?>
|
|
<div class="related">
|
|
<h3><?php echo sprintf(__("Related %s", true), $otherPluralHumanName);?></h3>
|
|
|
|
|
|
|
|
<?php if(!empty(${$singularVar}[$assocName])):?>
|
|
<table cellpadding = "0" cellspacing = "0">
|
|
<tr>
|
|
<?php
|
|
foreach($otherFields as $field) {
|
|
echo "\t\t<th>".Inflector::humanize($field['name'])."</th>\n";
|
|
}
|
|
?>
|
|
<th class="actions">Actions</th>
|
|
</tr>
|
|
<?php
|
|
$i = 0;
|
|
foreach(${$singularVar}[$assocName] as ${$otherSingularVar}):
|
|
if($i++ % 2 == 0) {
|
|
$class = ' class=\"altrow\"';
|
|
} else {
|
|
$class = null;
|
|
}
|
|
echo "\t\t<tr{$class}>\n";
|
|
|
|
foreach($otherFields as $field) {
|
|
echo "\t\t\t<td>".${$otherSingularVar}[$field['name']]."</td>\n";
|
|
}
|
|
|
|
echo "\t\t\t<td class=\"actions\">\n";
|
|
echo "\t\t\t\t" . $html->link(__('View', true), array('controller'=> $otherControllerPath, 'action'=>'view', ${$otherSingularVar}[$otherPrimaryKey])). "\n";
|
|
echo "\t\t\t\t" . $html->link(__('Edit', true), array('controller'=> $otherControllerPath, 'action'=>'edit', ${$otherSingularVar}[$otherPrimaryKey])). "\n";
|
|
echo "\t\t\t\t" . $html->link(__('Delete', true), array('controller'=> $otherControllerPath, 'action'=>'delete', ${$otherSingularVar}[$otherPrimaryKey]), null, 'Are you sure you want to delete #' . ${$otherSingularVar}[$otherPrimaryKey] . '?'). "\n";
|
|
echo "\t\t\t</td>\n";
|
|
echo "\t\t</tr>\n";
|
|
endforeach;
|
|
?>
|
|
</table>
|
|
<?php endif; ?>
|
|
<div class="actions">
|
|
<ul>
|
|
<li><?php echo $html->link(sprintf(__("New %s", true), $otherSingularHumanName), array('controller'=> $otherControllerPath, 'action'=>'add'));?> </li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<?php endforeach;?>
|