2005-10-09 01:56:21 +00:00
|
|
|
<?php
|
|
|
|
/* SVN FILE: $Id$ */
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* PHP versions 4 and 5
|
|
|
|
*
|
2007-02-02 10:39:45 +00:00
|
|
|
* CakePHP(tm) : Rapid Development Framework <http://www.cakephp.org/>
|
|
|
|
* Copyright 2005-2007, Cake Software Foundation, Inc.
|
2006-05-26 05:29:17 +00:00
|
|
|
* 1785 E. Sahara Avenue, Suite 490-204
|
|
|
|
* Las Vegas, Nevada 89104
|
2006-01-06 04:46:42 +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
|
2007-02-02 10:39:45 +00:00
|
|
|
* @copyright Copyright 2005-2007, Cake Software Foundation, Inc.
|
|
|
|
* @link http://www.cakefoundation.org/projects/info/cakephp CakePHP(tm) Project
|
2006-05-26 05:29:17 +00:00
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.cake.libs.view.templates.scaffolds
|
2007-02-02 10:39:45 +00:00
|
|
|
* @since CakePHP(tm) v 0.10.0.1076
|
2006-05-26 05:29:17 +00:00
|
|
|
* @version $Revision$
|
|
|
|
* @modifiedby $LastChangedBy$
|
|
|
|
* @lastmodified $Date$
|
|
|
|
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
|
2005-10-09 01:56:21 +00:00
|
|
|
*/
|
|
|
|
?>
|
2007-10-29 19:32:53 +00:00
|
|
|
<div class="<?php echo $pluralVar;?> view">
|
2007-06-14 17:28:35 +00:00
|
|
|
<h2><?php echo sprintf(__("View %s", true), $singularHumanName);?></h2>
|
|
|
|
<dl>
|
2006-01-25 22:40:17 +00:00
|
|
|
<?php
|
2007-01-10 22:53:52 +00:00
|
|
|
$i = 0;
|
2007-11-08 15:30:23 +00:00
|
|
|
foreach ($scaffoldFields as $field) {
|
2007-06-16 02:19:31 +00:00
|
|
|
$class = null;
|
2007-06-20 06:15:35 +00:00
|
|
|
if ($i++ % 2 == 0) {
|
2007-06-14 17:28:35 +00:00
|
|
|
$class = ' class="altrow"';
|
2007-01-10 22:53:52 +00:00
|
|
|
}
|
2007-10-29 03:54:56 +00:00
|
|
|
$isKey = false;
|
|
|
|
if(!empty($associations['belongsTo'])) {
|
|
|
|
foreach ($associations['belongsTo'] as $alias => $details) {
|
|
|
|
if($field === $details['foreignKey']) {
|
|
|
|
$isKey = true;
|
|
|
|
echo "\t\t<dt{$class}>".Inflector::humanize($alias)."</dt>\n";
|
2007-10-29 19:32:53 +00:00
|
|
|
echo "\t\t<dd{$class}>\n\t\t\t" . $html->link(${$singularVar}[$alias][$details['displayField']], array('controller'=> $details['controller'], 'action'=>'view', ${$singularVar}[$alias][$details['primaryKey']])) . "\n\t\t</dd>\n";
|
2007-10-29 03:54:56 +00:00
|
|
|
break;
|
|
|
|
}
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
2007-10-29 03:54:56 +00:00
|
|
|
}
|
|
|
|
if($isKey !== true) {
|
2007-10-28 04:18:18 +00:00
|
|
|
echo "\t\t<dt{$class}>".Inflector::humanize($field)."</dt>\n";
|
2007-10-29 19:32:53 +00:00
|
|
|
echo "\t\t<dd{$class}>\n\t\t\t" . ${$singularVar}[$modelClass][$field] . " \n\t\t</dd>\n";
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
2007-06-14 17:28:35 +00:00
|
|
|
}
|
|
|
|
?>
|
|
|
|
</dl>
|
|
|
|
</div>
|
|
|
|
<div class="actions">
|
2007-05-10 16:19:23 +00:00
|
|
|
<ul>
|
2007-06-14 17:28:35 +00:00
|
|
|
<?php
|
2007-10-29 19:32:53 +00:00
|
|
|
echo "\t\t<li>" .$html->link(sprintf(__('Edit %s', true), $singularHumanName), array('action'=>'edit', ${$singularVar}[$modelClass][$primaryKey])). " </li>\n";
|
|
|
|
echo "\t\t<li>" .$html->link(sprintf(__('Delete %s', true), $singularHumanName), array('action'=>'delete', ${$singularVar}[$modelClass][$primaryKey]), null, __('Are you sure you want to delete', true).' #' . ${$singularVar}[$modelClass][$primaryKey] . '?'). " </li>\n";
|
|
|
|
echo "\t\t<li>" .$html->link(sprintf(__('List %s', true), $pluralHumanName), array('action'=>'index')). " </li>\n";
|
|
|
|
echo "\t\t<li>" .$html->link(sprintf(__('New %s', true), $singularHumanName), array('action'=>'add')). " </li>\n";
|
2006-01-12 02:10:47 +00:00
|
|
|
|
2007-10-29 03:54:56 +00:00
|
|
|
$done = array();
|
|
|
|
foreach ($associations as $type => $data) {
|
|
|
|
foreach($data as $alias => $details) {
|
|
|
|
if ($details['controller'] != $this->name && !in_array($details['controller'], $done)) {
|
2007-10-29 19:32:53 +00:00
|
|
|
echo "\t\t<li>".$html->link(sprintf(__('List %s', true), Inflector::humanize($details['controller'])), array('controller'=> $details['controller'], 'action'=>'index'))."</li>\n";
|
|
|
|
echo "\t\t<li>".$html->link(sprintf(__('New %s', true), Inflector::humanize(Inflector::underscore($alias))), array('controller'=> $details['controller'], 'action'=>'add'))."</li>\n";
|
2007-10-29 03:54:56 +00:00
|
|
|
$done[] = $details['controller'];
|
|
|
|
}
|
2007-06-14 17:28:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|
2007-05-10 16:19:23 +00:00
|
|
|
</ul>
|
2007-01-10 22:53:52 +00:00
|
|
|
</div>
|
2005-07-21 04:02:32 +00:00
|
|
|
<?php
|
2007-10-29 03:54:56 +00:00
|
|
|
if(!empty($associations['hasOne'])) :
|
|
|
|
foreach ($associations['hasOne'] as $alias => $details): ?>
|
2007-06-14 17:28:35 +00:00
|
|
|
<div class="related">
|
2007-10-29 03:54:56 +00:00
|
|
|
<h3><?php echo sprintf(__("Related %s", true), Inflector::humanize($details['controller']));?></h3>
|
|
|
|
<?php if (!empty(${$singularVar}[$alias])):?>
|
2007-06-14 17:28:35 +00:00
|
|
|
<dl>
|
|
|
|
<?php
|
2007-06-16 02:19:31 +00:00
|
|
|
$i = 0;
|
2007-10-29 03:54:56 +00:00
|
|
|
$otherFields = array_keys(${$singularVar}[$alias]);
|
2007-06-20 06:15:35 +00:00
|
|
|
foreach ($otherFields as $field) {
|
2007-06-16 02:19:31 +00:00
|
|
|
$class = null;
|
2007-06-20 06:15:35 +00:00
|
|
|
if ($i++ % 2 == 0) {
|
2007-06-16 02:19:31 +00:00
|
|
|
$class = ' class="altrow"';
|
|
|
|
}
|
2007-10-28 04:18:18 +00:00
|
|
|
echo "\t\t<dt{$class}>".Inflector::humanize($field)."</dt>\n";
|
2007-10-29 03:54:56 +00:00
|
|
|
echo "\t\t<dd{$class}>\n\t" .${$singularVar}[$alias][$field] ."\n </dd>\n";
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
2005-08-21 20:01:32 +00:00
|
|
|
?>
|
2007-06-14 17:28:35 +00:00
|
|
|
</dl>
|
|
|
|
<?php endif; ?>
|
|
|
|
<div class="actions">
|
|
|
|
<ul>
|
2007-10-29 19:32:53 +00:00
|
|
|
<li><?php echo $html->link(sprintf(__('Edit %s', true), Inflector::humanize(Inflector::underscore($alias))), array('controller'=> $details['controller'], 'action'=>'edit', ${$singularVar}[$alias][$details['primaryKey']]))."</li>\n";?>
|
2007-06-14 17:28:35 +00:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
2005-08-21 20:01:32 +00:00
|
|
|
<?php
|
2007-06-14 17:28:35 +00:00
|
|
|
endforeach;
|
2007-10-29 03:54:56 +00:00
|
|
|
endif;
|
2006-12-23 09:09:06 +00:00
|
|
|
|
2007-10-29 03:54:56 +00:00
|
|
|
if(empty($associations['hasMany'])) {
|
|
|
|
$associations['hasMany'] = array();
|
|
|
|
}
|
|
|
|
if(empty($associations['hasAndBelongsToMany'])) {
|
|
|
|
$associations['hasAndBelongsToMany'] = array();
|
|
|
|
}
|
|
|
|
$relations = array_merge($associations['hasMany'], $associations['hasAndBelongsToMany']);
|
2007-06-14 17:28:35 +00:00
|
|
|
$i = 0;
|
2007-10-29 03:54:56 +00:00
|
|
|
foreach ($relations as $alias => $details):
|
|
|
|
$otherSingularVar = Inflector::variable($alias);
|
2007-06-14 17:28:35 +00:00
|
|
|
?>
|
|
|
|
<div class="related">
|
2007-10-29 03:54:56 +00:00
|
|
|
<h3><?php echo sprintf(__("Related %s", true), Inflector::humanize($details['controller']));?></h3>
|
|
|
|
<?php if (!empty(${$singularVar}[$alias])):?>
|
2007-06-14 17:28:35 +00:00
|
|
|
<table cellpadding = "0" cellspacing = "0">
|
|
|
|
<tr>
|
2005-08-21 06:49:02 +00:00
|
|
|
<?php
|
2007-10-29 03:54:56 +00:00
|
|
|
$otherFields = array_keys(${$singularVar}[$alias][0]);
|
2007-06-20 06:15:35 +00:00
|
|
|
foreach ($otherFields as $field) {
|
2007-10-28 04:18:18 +00:00
|
|
|
echo "\t\t<th>".Inflector::humanize($field)."</th>\n";
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
2007-01-10 22:53:52 +00:00
|
|
|
?>
|
2007-06-14 17:28:35 +00:00
|
|
|
<th class="actions">Actions</th>
|
|
|
|
</tr>
|
2007-01-10 22:53:52 +00:00
|
|
|
<?php
|
2007-06-14 17:28:35 +00:00
|
|
|
$i = 0;
|
2007-10-29 03:54:56 +00:00
|
|
|
foreach (${$singularVar}[$alias] as ${$otherSingularVar}):
|
2007-06-16 02:19:31 +00:00
|
|
|
$class = null;
|
2007-06-20 06:15:35 +00:00
|
|
|
if ($i++ % 2 == 0) {
|
2007-07-02 23:45:08 +00:00
|
|
|
$class = ' class="altrow"';
|
2007-06-14 17:28:35 +00:00
|
|
|
}
|
|
|
|
echo "\t\t<tr{$class}>\n";
|
|
|
|
|
2007-06-20 06:15:35 +00:00
|
|
|
foreach ($otherFields as $field) {
|
2007-10-28 04:18:18 +00:00
|
|
|
echo "\t\t\t<td>".${$otherSingularVar}[$field]."</td>\n";
|
2007-06-14 17:28:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
echo "\t\t\t<td class=\"actions\">\n";
|
2007-10-29 03:54:56 +00:00
|
|
|
echo "\t\t\t\t" . $html->link(__('View', true), array('controller'=> $details['controller'], 'action'=>'view', ${$otherSingularVar}[$details['primaryKey']])). "\n";
|
|
|
|
echo "\t\t\t\t" . $html->link(__('Edit', true), array('controller'=> $details['controller'], 'action'=>'edit', ${$otherSingularVar}[$details['primaryKey']])). "\n";
|
|
|
|
echo "\t\t\t\t" . $html->link(__('Delete', true), array('controller'=> $details['controller'], 'action'=>'delete', ${$otherSingularVar}[$details['primaryKey']]), null, __('Are you sure you want to delete', true).' #' . ${$otherSingularVar}[$details['primaryKey']] . '?'). "\n";
|
2007-06-14 17:28:35 +00:00
|
|
|
echo "\t\t\t</td>\n";
|
|
|
|
echo "\t\t</tr>\n";
|
|
|
|
endforeach;
|
|
|
|
?>
|
|
|
|
</table>
|
|
|
|
<?php endif; ?>
|
2007-01-10 22:53:52 +00:00
|
|
|
<div class="actions">
|
|
|
|
<ul>
|
2007-10-29 19:32:53 +00:00
|
|
|
<li><?php echo $html->link(sprintf(__("New %s", true), Inflector::humanize(Inflector::underscore($alias))), array('controller'=> $details['controller'], 'action'=>'add'));?> </li>
|
2007-01-10 22:53:52 +00:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
2007-06-14 17:28:35 +00:00
|
|
|
<?php endforeach;?>
|