* @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'); } } ?>