--- a/busui/owa/modules/base/reportCommerce.php +++ b/busui/owa/modules/base/reportCommerce.php @@ -1,1 +1,68 @@ - + + * @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_reportCommerceController extends owa_reportController { + + function action() { + + $this->setSubview('base.reportCommerce'); + $this->setTitle('Ecommerce Overview'); + } + +} + +/** + * Commerce 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.0.0 + */ + +class owa_reportCommerceView extends owa_view { + + function render($data) { + + // Assign Data to templates + + $this->body->set('headline', 'Ecommerce'); + $this->body->set_template('report_commerce.php'); + } + +} + +?>