--- a/busui/owa/modules/base/reportTransactions.php +++ b/busui/owa/modules/base/reportTransactions.php @@ -1,1 +1,65 @@ - + + * @copyright Copyright © 2006 - 2011 Peter Adams + * @license http://www.gnu.org/copyleft/gpl.html GPL v2.0 + * @category owa + * @package owa + * @version $Revision$ + * @since owa 1.4.0 + */ + +class owa_reportTransactionsController extends owa_reportController { + + function action() { + + $this->setSubview('base.reportTransactions'); + $this->setTitle('Transactions Overview'); + } + +} + +/** + * Transactions Report View + * + * @author Peter Adams + * @copyright Copyright © 2006 - 2011 Peter Adams + * @license http://www.gnu.org/copyleft/gpl.html GPL v2.0 + * @category owa + * @package owa + * @version $Revision$ + * @since owa 1.4.0 + */ + +class owa_reportTransactionsView extends owa_view { + + function render($data) { + + $this->body->set_template('report_transactions.php'); + } + +} + +?>