2005-10-09 01:56:21 +00:00
<?php
/* SVN FILE: $Id$ */
/**
*
* PHP versions 4 and 5
*
* CakePHP : Rapid Development Framework <http://www.cakephp.org/>
2006-05-26 05:29:17 +00:00
* Copyright (c) 2006, Cake Software Foundation, Inc.
* 1785 E. Sahara Avenue, Suite 490-204
* Las Vegas, Nevada 89104
2006-01-16 21:34:46 +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
2006-05-26 05:29:17 +00:00
* @copyright Copyright (c) 2006, Cake Software Foundation, Inc.
* @link http://www.cakefoundation.org/projects/info/cakephp CakePHP Project
* @package cake
* @subpackage cake.cake.libs.view.templates.scaffolds
* @since CakePHP v 0.10.0.1076
* @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
*/
?>
2005-10-24 07:51:09 +00:00
<h1>List <?php echo Inflector::humanize($this->name)?></h1>
2005-07-21 04:02:32 +00:00
<?php
2006-03-15 20:45:59 +00:00
$model = ucwords(Inflector::singularize($this->name));
2006-01-25 22:40:17 +00:00
$modelKey = $model;
$humanName = Inflector::humanize($this->name);
$humanSingularName = Inflector::singularize( $humanName );
2006-11-25 18:23:53 +00:00
if(is_null($this->plugin)) {
2006-05-26 05:29:17 +00:00
$path = '/';
2006-11-25 18:23:53 +00:00
} else {
2006-05-26 05:29:17 +00:00
$path = '/'.$this->plugin.'/';
2006-03-28 19:46:59 +00:00
}
2006-11-25 18:23:53 +00:00
if(!empty($this->controller->{$model}->alias)) {
foreach ($this->controller->{$model}->alias as $key => $value) {
2006-05-26 05:29:17 +00:00
$alias[] = $key;
}
2006-11-25 18:23:53 +00:00
}?>
2006-05-26 05:29:17 +00:00
<table class="inav" cellpadding="0" cellspacing="0">
2006-04-27 10:04:08 +00:00
<thead>
2006-05-26 05:29:17 +00:00
<tr>
2006-01-25 22:40:17 +00:00
<?php
2006-11-25 18:23:53 +00:00
foreach ($fieldNames as $fieldName) {?>
2006-05-26 05:29:17 +00:00
<th><?php echo $fieldName['prompt'];?></th>
2006-11-25 18:23:53 +00:00
<?php }?>
2006-01-25 22:40:17 +00:00
<th>Actions</th>
2006-05-26 05:29:17 +00:00
</tr>
2006-04-27 10:04:08 +00:00
</thead>
<tbody>
2006-01-25 22:40:17 +00:00
<?php
$iRowIndex = 0;
2006-11-25 18:23:53 +00:00
if(is_array($data)) {
foreach ($data as $row) {
if($iRowIndex++ % 2 == 0) {
2006-05-26 05:29:17 +00:00
echo "<tr>";
2006-11-25 18:23:53 +00:00
} else {
2006-05-26 05:29:17 +00:00
echo "<tr class='altRow'>";
}
$count = 0;
2006-11-25 18:23:53 +00:00
foreach($fieldNames as $field=>$value) { ?>
2006-05-26 05:29:17 +00:00
<td>
2006-01-25 22:40:17 +00:00
<?php
2006-11-25 18:23:53 +00:00
if(isset($value['foreignKey'])) {
2006-05-26 05:29:17 +00:00
$otherModelKey = Inflector::underscore($value['modelKey']);
$otherControllerName = $value['controller'];
$otherModelObject =& ClassRegistry::getObject( $otherModelKey );
2006-11-25 18:23:53 +00:00
if(is_object($otherModelObject)) {
2006-05-26 05:29:17 +00:00
$displayText = $row[$alias[$count]][ $otherModelObject->getDisplayField() ];
2006-11-25 18:23:53 +00:00
} else {
2006-05-26 05:29:17 +00:00
$displayText = $row[$alias[$count]][$field];
}
2006-07-15 03:36:53 +00:00
echo $html->link( $displayText, $path.Inflector::underscore($otherControllerName)."/view/".$row[$modelKey][$field] );
2006-05-26 05:29:17 +00:00
$count++;
2006-11-25 18:23:53 +00:00
} else {
2006-05-26 05:29:17 +00:00
echo $row[$modelKey][$field];
2006-11-25 18:23:53 +00:00
}?>
2006-05-26 05:29:17 +00:00
</td>
2006-11-25 18:23:53 +00:00
<?php } ?>
2006-07-15 03:36:53 +00:00
<td class="listactions"><?php echo $html->link('View',$path.$this->viewPath."/view/{$row[$modelKey][$this->controller->{$model}->primaryKey]}/")?>
2006-11-25 18:23:53 +00:00
<?php echo $html->link('Edit',$path.$this->viewPath."/edit/{$row[$modelKey][$this->controller->{$model}->primaryKey]}/")?>
<?php echo $html->link('Delete',$path.$this->viewPath."/delete/{$row[$modelKey][$this->controller->{$model}->primaryKey]}/", null, 'Are you sure you want to delete id '.$row[$modelKey][$this->controller->{$model}->primaryKey].' ?')?>
2006-05-26 05:29:17 +00:00
</td>
</tr>
2006-01-25 22:40:17 +00:00
<?php
2006-05-26 05:29:17 +00:00
}
2006-11-25 18:23:53 +00:00
}?>
2006-04-27 10:04:08 +00:00
</tbody>
2005-08-21 06:49:02 +00:00
</table>
<ul class="actions">
2006-05-26 05:29:17 +00:00
<li><?php echo $html->link('New '.$humanSingularName, $path.$this->viewPath.'/add'); ?></li>
2006-01-25 22:40:17 +00:00
</ul>