2005-10-09 01:56:21 +00:00
|
|
|
<?php
|
|
|
|
/* SVN FILE: $Id$ */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Base controller class.
|
|
|
|
*
|
|
|
|
* PHP versions 4 and 5
|
|
|
|
*
|
|
|
|
* CakePHP : Rapid Development Framework <http://www.cakephp.org/>
|
2006-01-20 07:46:14 +00:00
|
|
|
* Copyright (c) 2006, Cake Software Foundation, Inc.
|
2005-12-23 21:57:26 +00:00
|
|
|
* 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-01-20 07:46:14 +00:00
|
|
|
* @copyright Copyright (c) 2006, Cake Software Foundation, Inc.
|
2005-12-23 21:57:26 +00:00
|
|
|
* @link http://www.cakefoundation.org/projects/info/cakephp CakePHP Project
|
2005-10-09 01:56:21 +00:00
|
|
|
* @package cake
|
2006-02-25 19:20:18 +00:00
|
|
|
* @subpackage cake.cake.libs.view.templates.scaffolds
|
2005-10-09 01:56:21 +00:00
|
|
|
* @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-24 07:51:09 +00:00
|
|
|
<h1>List <?php echo Inflector::humanize($this->name)?></h1>
|
2005-10-09 01:56:21 +00:00
|
|
|
|
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-03-28 19:46:59 +00:00
|
|
|
if(is_null($this->plugin))
|
|
|
|
{
|
|
|
|
$path = '/';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$path = '/'.$this->plugin.'/';
|
|
|
|
}
|
2006-01-25 22:40:17 +00:00
|
|
|
if(!empty($this->controller->{$model}->alias))
|
|
|
|
{
|
|
|
|
foreach ($this->controller->{$model}->alias as $key => $value)
|
|
|
|
{
|
|
|
|
$alias[] = $key;
|
|
|
|
}
|
|
|
|
}
|
2005-07-21 04:02:32 +00:00
|
|
|
?>
|
2006-04-27 10:04:08 +00:00
|
|
|
<table class="inav" cellpadding="1">
|
|
|
|
<thead>
|
2005-08-21 06:49:02 +00:00
|
|
|
<tr>
|
2006-01-25 22:40:17 +00:00
|
|
|
<?php
|
|
|
|
foreach ($fieldNames as $fieldName)
|
|
|
|
{
|
|
|
|
?>
|
|
|
|
<th><?php echo $fieldName['prompt'];?></th>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
<th>Actions</th>
|
2006-04-27 10:04:08 +00:00
|
|
|
</thead>
|
|
|
|
<tbody>
|
2006-01-25 22:40:17 +00:00
|
|
|
</tr>
|
|
|
|
<?php
|
|
|
|
$iRowIndex = 0;
|
|
|
|
if(is_array($data))
|
|
|
|
{
|
|
|
|
foreach ($data as $row)
|
|
|
|
{
|
|
|
|
if($iRowIndex++ % 2 == 0)
|
|
|
|
{
|
|
|
|
echo "<tr>";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
echo "<tr class='altRow'>";
|
|
|
|
}
|
2006-01-16 21:34:46 +00:00
|
|
|
|
2006-01-25 22:40:17 +00:00
|
|
|
$count = 0;
|
|
|
|
foreach($fieldNames as $field=>$value)
|
|
|
|
{
|
|
|
|
?>
|
|
|
|
<td>
|
|
|
|
<?php
|
|
|
|
if(isset($value['foreignKey']))
|
2005-08-21 06:49:02 +00:00
|
|
|
{
|
2006-01-25 22:40:17 +00:00
|
|
|
$otherModelKey = Inflector::underscore($value['modelKey']);
|
|
|
|
$otherControllerName = $value['controller'];
|
|
|
|
$otherModelObject =& ClassRegistry::getObject( $otherModelKey );
|
|
|
|
if(is_object($otherModelObject))
|
|
|
|
{
|
|
|
|
$displayText = $row[$alias[$count]][ $otherModelObject->getDisplayField() ];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$displayText = $row[$alias[$count]][$field];
|
|
|
|
}
|
2006-03-28 19:46:59 +00:00
|
|
|
echo $html->link( $displayText, $path.Inflector::underscore($otherControllerName)."/show/".$row[$modelKey][$field] );
|
2006-01-25 22:40:17 +00:00
|
|
|
$count++;
|
2005-08-21 06:49:02 +00:00
|
|
|
}
|
2006-01-25 22:40:17 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
echo $row[$modelKey][$field];
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</td>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
?>
|
2006-03-28 19:46:59 +00:00
|
|
|
<td class="listactions"><?php echo $html->link('View',$path.$this->viewPath."/show/{$row[$modelKey][$this->controller->{$model}->primaryKey]}/")?>
|
|
|
|
<?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]}/")?>
|
2006-01-25 22:40:17 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|
2006-04-27 10:04:08 +00:00
|
|
|
</tbody>
|
2005-08-21 06:49:02 +00:00
|
|
|
</table>
|
|
|
|
<ul class="actions">
|
2006-03-28 19:46:59 +00:00
|
|
|
<li><?php echo $html->link('New '.$humanSingularName, $path.$this->viewPath.'/add'); ?></li>
|
2006-01-25 22:40:17 +00:00
|
|
|
</ul>
|