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
*/
?>
2006-11-26 06:15:30 +00:00
<h2>List <?php echo $humanPluralName;?></h2>
2005-07-21 04:02:32 +00:00
<?php
2006-11-26 06:15:30 +00:00
$modelObj =& ClassRegistry::getObject($modelKey);
if(!empty($modelObj->alias)) {
$alias = array_combine(array_keys($modelObj->alias), array_keys($modelObj->alias));
2006-11-27 01:04:19 +00:00
}
?>
2006-11-26 06:15:30 +00:00
<table class="scaffold" cellpadding="0" cellspacing="0">
2006-04-27 10:04:08 +00:00
<thead>
2006-11-26 06:15:30 +00:00
<tr>
<?php foreach ($fieldNames as $fieldName) {?>
2006-11-27 01:04:19 +00:00
<th><?php echo $fieldName['label'];?></th>
2006-11-26 06:15:30 +00:00
<?php }?>
<th>Actions</th>
</tr>
2006-04-27 10:04:08 +00:00
</thead>
<tbody>
2006-01-25 22:40:17 +00:00
<?php
2006-11-26 06:15:30 +00:00
$i = 0;
2006-11-25 18:23:53 +00:00
if(is_array($data)) {
foreach ($data as $row) {
2006-11-26 06:15:30 +00:00
if($i++ % 2 == 0) {
echo '<tr>';
2006-11-25 18:23:53 +00:00
} else {
2006-11-26 06:15:30 +00:00
echo '<tr class="altRow"">';
2006-05-26 05:29:17 +00:00
}
2006-11-27 01:04:19 +00:00
foreach($fieldNames as $field => $value) {
2006-11-26 06:15:30 +00:00
?>
2006-05-26 05:29:17 +00:00
<td>
2006-11-26 06:15:30 +00:00
<?php
if(isset($value['foreignKey'])) {
$otherControllerName = $value['controller'];
$otherControllerPath = Inflector::underscore($value['controller']);
$otherModelObject =& ClassRegistry::getObject($value['modelKey']);
if(is_object($otherModelObject)) {
$displayText = $row[$alias[$value['model']]][$otherModelObject->getDisplayField()];
} else {
$displayText = $row[$alias[$value['model']]][$field];
}
2006-11-27 01:04:19 +00:00
echo $html->link($displayText, $path . $otherControllerPath . "/view/".$row[$modelClass][$field]);
2006-11-26 06:15:30 +00:00
} else {
echo $row[$modelClass][$field];
}
?>
2006-05-26 05:29:17 +00:00
</td>
2006-11-25 18:23:53 +00:00
<?php } ?>
2006-11-26 06:15:30 +00:00
<td class="actions">
2006-11-27 01:04:19 +00:00
<?php echo $html->link('View', $path . $viewPath."/view/{$row[$modelClass][$modelObj->primaryKey]}/")?>
<?php echo $html->link('Edit', $path . $viewPath."/edit/{$row[$modelClass][$modelObj->primaryKey]}/")?>
<?php echo $html->link('Delete', $path . $viewPath."/delete/{$row[$modelClass][$modelObj->primaryKey]}/", null, 'Are you sure you want to delete id '.$row[$modelClass][$modelObj->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-11-27 01:04:19 +00:00
<li><?php echo $html->link('New '.$humanSingularName, $path . $viewPath.'/add'); ?></li>
2006-01-25 22:40:17 +00:00
</ul>