git-svn-id: file:///svn-source/pmgr/branches/v0.3_work@1039 97e9348a-65ac-dc4b-aefc-98561f571b83
59 lines
1.8 KiB
PHP
59 lines
1.8 KiB
PHP
<?php /* -*- mode:PHP -*- */
|
|
|
|
echo '<div class="lock view">' . "\n";
|
|
|
|
/**********************************************************************
|
|
**********************************************************************
|
|
**********************************************************************
|
|
**********************************************************************
|
|
* Lock Detail Main Section
|
|
*/
|
|
|
|
$lock = $lock['Lock'];
|
|
|
|
$rows = array();
|
|
$rows[] = array('Name', $lock['name']);
|
|
$rows[] = array('Quantity', $lock['qty']);
|
|
$rows[] = array('Key', $lock['key']);
|
|
if (!empty($lock['last_key']))
|
|
$rows[] = array('Last Key', $lock['last_key']);
|
|
$rows[] = array('Comment', $lock['comment']);
|
|
|
|
echo $this->element('table',
|
|
array('class' => 'item lock detail',
|
|
'caption' => 'Lock Information',
|
|
'rows' => $rows,
|
|
'column_class' => array('field', 'value')));
|
|
|
|
|
|
|
|
/**********************************************************************
|
|
**********************************************************************
|
|
**********************************************************************
|
|
**********************************************************************
|
|
* Supporting Elements Section
|
|
*/
|
|
|
|
echo '<div CLASS="detail supporting">' . "\n";
|
|
|
|
/**********************************************************************
|
|
* Unit Entries
|
|
*/
|
|
|
|
echo $this->element('units', array
|
|
(// Grid configuration
|
|
'config' => array
|
|
('caption' => "Units locked by " . $lock['name'],
|
|
'filter' => array('Lock.id' => $lock['id']),
|
|
'include' => array('Comment'),
|
|
'exclude' => array('Size', 'Area', 'Rent'),
|
|
)));
|
|
|
|
|
|
/* End "detail supporting" div */
|
|
echo '</div>' . "\n";
|
|
|
|
/* End page div */
|
|
echo '</div>' . "\n";
|
|
|