Updated all the view.ctp files to use the new style infobox. I should probably create an element for it, but I'll hold off for now.

git-svn-id: file:///svn-source/pmgr/branches/ledger_transactions_20090605/site@135 97e9348a-65ac-dc4b-aefc-98561f571b83
This commit is contained in:
abijah
2009-06-15 21:01:22 +00:00
parent c3139220ee
commit c9c06a9fb4
9 changed files with 207 additions and 221 deletions

View File

@@ -1,9 +1,6 @@
<?php /* -*- mode:PHP -*- */ ?>
<?php /* -*- mode:PHP -*- */
<div class="transaction view">
<?php
; // Editor alignment
echo '<div class="transaction view">' . "\n";
/**********************************************************************
**********************************************************************
@@ -12,10 +9,10 @@
* Transaction Detail Main Section
*/
$rows = array(array('ID', $transaction['Transaction']['id']),
$rows = array(array('ID', $transaction['Transaction']['id']),
array('Timestamp', FormatHelper::datetime($transaction['Transaction']['stamp'])),
array('Through', FormatHelper::date($transaction['Transaction']['through_date'])),
array('Due', FormatHelper::date($transaction['Transaction']['due_date'])),
array('Through', FormatHelper::date($transaction['Transaction']['through_date'])),
array('Due', FormatHelper::date($transaction['Transaction']['due_date'])),
array('Comment', $transaction['Transaction']['comment']));
echo $this->element('table',
@@ -29,16 +26,17 @@ echo $this->element('table',
* Transaction Info Box
*/
?>
<DIV CLASS="infobox">
<DIV CLASS="summary grand total">
Total: <?php echo FormatHelper::currency($total); ?>
</DIV>
</DIV>
echo '<div class="infobox">' . "\n";
$rows = array();
$rows[] = array('Total:', FormatHelper::currency($total));
echo $this->element('table',
array('class' => 'summary',
'rows' => $rows,
'column_class' => array('field', 'value'),
'suppress_alternate_rows' => true,
));
echo '</div>' . "\n";
<DIV CLASS="detail supporting">
<?php
; // Editor alignment
/**********************************************************************
**********************************************************************
@@ -47,6 +45,8 @@ echo $this->element('table',
* Supporting Elements Section
*/
echo '<div CLASS="detail supporting">' . "\n";
/**********************************************************************
* Entries
@@ -109,7 +109,8 @@ echo $this->element('table',
'column_class' => $column_class));
/* End "detail supporting" DIV */ ?>
</DIV>
/* End "detail supporting" div */
echo '</div>' . "\n";
</div>
/* End page div */
echo '</div>' . "\n";