git-svn-id: file:///svn-source/pmgr/branches/v0.3_work@960 97e9348a-65ac-dc4b-aefc-98561f571b83
75 lines
2.5 KiB
PHP
75 lines
2.5 KiB
PHP
<?php /* -*- mode:PHP -*- */
|
|
|
|
echo '<div class="lease overview">' . "\n";
|
|
|
|
/**********************************************************************
|
|
**********************************************************************
|
|
**********************************************************************
|
|
**********************************************************************
|
|
* Overview Main Section
|
|
*/
|
|
|
|
/*
|
|
$rows = array();
|
|
$rows[] = array('', FormatHelper::currency($overview['']));
|
|
|
|
echo $this->element('table',
|
|
array('class' => 'item lease detail',
|
|
'caption' => '',
|
|
'rows' => $rows,
|
|
'column_class' => array('field', 'value')));
|
|
*/
|
|
|
|
|
|
/**********************************************************************
|
|
**********************************************************************
|
|
**********************************************************************
|
|
**********************************************************************
|
|
* Supporting Elements Section
|
|
*/
|
|
|
|
echo '<div CLASS="detail supporting">' . "\n";
|
|
|
|
$headers = array('', 'Count');
|
|
$row_class = array();
|
|
$rows = array();
|
|
foreach ($overview['months'] AS $month) {
|
|
$row_class[] = 'subheader';
|
|
$rows[] = array($month['name']);
|
|
|
|
$odd = 1;
|
|
$row_class[] = array('subitem', $odd ? 'oddrow' : 'evenrow');
|
|
$rows[] = array('Beginning of Month', $month['start']); $odd = !$odd;
|
|
$row_class[] = array('subitem', $odd ? 'oddrow' : 'evenrow');
|
|
$rows[] = array('+ Move-Ins', $month['movein']); $odd = !$odd;
|
|
$row_class[] = array('subitem', $odd ? 'oddrow' : 'evenrow');
|
|
$rows[] = array('- Move-Outs', $month['moveout']); $odd = !$odd;
|
|
|
|
$row_class[] = 'grand';
|
|
$rows[] = array('End of ' . $month['name'], $month['finish']);
|
|
}
|
|
|
|
echo $this->element('table',
|
|
array('class' => 'item lease-overview overview list',
|
|
'caption' => 'Leased Units By Month',
|
|
'headers' => $headers,
|
|
'rows' => $rows,
|
|
'row_class' => $row_class,
|
|
'suppress_alternate_rows' => true
|
|
));
|
|
|
|
?>
|
|
<script type="text/javascript"><!--
|
|
jQuery(document).ready(function(){
|
|
jQuery('table.overview td.subheader').attr('colSpan', 2);
|
|
});
|
|
--></script>
|
|
<?php
|
|
|
|
|
|
/* End "detail supporting" div */
|
|
echo '</div>' . "\n";
|
|
|
|
/* End page div */
|
|
echo '</div>' . "\n";
|