link('#'.$transaction['id'], array('controller' => 'transactions', 'action' => 'view', $transaction['id']))), array('Timestamp', FormatHelper::datetime($transaction['stamp'])), array('Monetary Source', (isset($source['id']) ? $html->link('#'.$source['id'], array('controller' => 'monetary_sources', 'action' => 'view', $source['id'])) : null)), array('Amount', FormatHelper::currency($entry['amount'])), array('Debit', ($html->link($debit_ledger['Account']['name'], array('controller' => 'accounts', 'action' => 'view', $debit_ledger['Account']['id'])) . ' (' . $html->link('#' . $debit_ledger['Account']['id'] . '-' . $debit_ledger['sequence'], array('controller' => 'ledgers', 'action' => 'view', $debit_ledger['id'])) . ')')), array('Credit', ($html->link($credit_ledger['Account']['name'], array('controller' => 'accounts', 'action' => 'view', $credit_ledger['Account']['id'])) . ' (' . $html->link('#' . $credit_ledger['Account']['id'] . '-' . $credit_ledger['sequence'], array('controller' => 'ledgers', 'action' => 'view', $credit_ledger['id'])) . ')')), array('Comment', $entry['comment'])); echo $this->element('table', array('class' => 'item ledger-entry detail', 'caption' => 'Ledger Entry Detail', 'rows' => $rows, 'column_class' => array('field', 'value'))); /********************************************************************** * LedgerEntry Info Box */ ?>