--- a/busui/owa/modules/base/reportContent.php +++ b/busui/owa/modules/base/reportContent.php @@ -1,1 +1,68 @@ - + + * @copyright Copyright © 2006 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_reportContentController extends owa_reportController { + + function action() { + + $this->setSubview('base.reportContent'); + $this->setTitle('Content Overview'); + } + +} + +/** + * Content Report View + * + * @author Peter Adams + * @copyright Copyright © 2006 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_reportContentView extends owa_view { + + function render($data) { + + // Assign Data to templates + + $this->body->set('headline', 'Content'); + $this->body->set_template('report_content.tpl'); + } + +} + +?>