Subversion-Projekte lars-tiefland.cakephp

Revision

Blame | Letzte Änderung | Log anzeigen | RSS feed

<?php
/* SVN FILE: $Id: view.ctp 7945 2008-12-19 02:16:01Z gwoo $ */
/**
 *
 * PHP versions 4 and 5
 *
 * CakePHP(tm) :  Rapid Development Framework (http://www.cakephp.org)
 * Copyright 2005-2008, Cake Software Foundation, Inc. (http://www.cakefoundation.org)
 *
 * Licensed under The MIT License
 * Redistributions of files must retain the above copyright notice.
 *
 * @filesource
 * @copyright     Copyright 2005-2008, Cake Software Foundation, Inc. (http://www.cakefoundation.org)
 * @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: 7945 $
 * @modifiedby    $LastChangedBy: gwoo $
 * @lastmodified  $Date: 2008-12-18 18:16:01 -0800 (Thu, 18 Dec 2008) $
 * @license       http://www.opensource.org/licenses/mit-license.php The MIT License
 */
?>
<div class="<?php echo $pluralVar;?> view">
<h2><?php echo sprintf(__("View %s", true), $singularHumanName);?></h2>
        <dl>
<?php
$i = 0;
foreach ($scaffoldFields as $_field) {
        $class = null;
        if ($i++ % 2 == 0) {
                $class = ' class="altrow"';
        }
        $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";
                                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&nbsp;</dd>\n";
                                break;
                        }
                }
        }
        if ($isKey !== true) {
                echo "\t\t<dt{$class}>".Inflector::humanize($_field)."</dt>\n";
                echo "\t\t<dd{$class}>\n\t\t\t{${$singularVar}[$modelClass][$_field]}\n&nbsp;\t\t</dd>\n";
        }
}
?>
        </dl>
</div>
<div class="actions">
        <ul>
<?php
        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";

        $done = array();
        foreach ($associations as $_type => $_data) {
                foreach ($_data as $_alias => $_details) {
                        if ($_details['controller'] != $this->name && !in_array($_details['controller'], $done)) {
                                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";
                                $done[] = $_details['controller'];
                        }
                }
        }
?>
        </ul>
</div>
<?php
if (!empty($associations['hasOne'])) :
foreach ($associations['hasOne'] as $_alias => $_details): ?>
<div class="related">
        <h3><?php echo sprintf(__("Related %s", true), Inflector::humanize($_details['controller']));?></h3>
<?php if (!empty(${$singularVar}[$_alias])):?>
        <dl>
<?php
                $i = 0;
                $otherFields = array_keys(${$singularVar}[$_alias]);
                foreach ($otherFields as $_field) {
                        $class = null;
                        if ($i++ % 2 == 0) {
                                $class = ' class="altrow"';
                        }
                        echo "\t\t<dt{$class}>".Inflector::humanize($_field)."</dt>\n";
                        echo "\t\t<dd{$class}>\n\t" .${$singularVar}[$_alias][$_field] ."\n&nbsp;</dd>\n";
                }
?>
        </dl>
<?php endif; ?>
        <div class="actions">
                <ul>
                        <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";?>
                </ul>
        </div>
</div>
<?php
endforeach;
endif;

if (empty($associations['hasMany'])) {
        $associations['hasMany'] = array();
}
if (empty($associations['hasAndBelongsToMany'])) {
        $associations['hasAndBelongsToMany'] = array();
}
$relations = array_merge($associations['hasMany'], $associations['hasAndBelongsToMany']);
$i = 0;
foreach ($relations as $_alias => $_details):
$otherSingularVar = Inflector::variable($_alias);
?>
<div class="related">
        <h3><?php echo sprintf(__("Related %s", true), Inflector::humanize($_details['controller']));?></h3>
<?php if (!empty(${$singularVar}[$_alias])):?>
        <table cellpadding="0" cellspacing="0">
        <tr>
<?php
                $otherFields = array_keys(${$singularVar}[$_alias][0]);
                foreach ($otherFields as $_field) {
                        echo "\t\t<th>".Inflector::humanize($_field)."</th>\n";
                }
?>
                <th class="actions">Actions</th>
        </tr>
<?php
                $i = 0;
                foreach (${$singularVar}[$_alias] as ${$otherSingularVar}):
                        $class = null;
                        if ($i++ % 2 == 0) {
                                $class = ' class="altrow"';
                        }
                echo "\t\t<tr{$class}>\n";

                        foreach ($otherFields as $_field) {
                                echo "\t\t\t<td>".${$otherSingularVar}[$_field]."</td>\n";
                        }

                        echo "\t\t\t<td class=\"actions\">\n";
                        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";
                        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), Inflector::humanize(Inflector::underscore($_alias))), array('controller'=> $_details['controller'], 'action'=>'add'));?> </li>
                </ul>
        </div>
</div>
<?php endforeach;?>