* @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.3.0 */ class owa_reportActionGroupsController extends owa_reportController { function action() { $this->setSubview('base.reportSimpleDimensional'); $this->setTitle('Action Groups'); $this->set('metrics', 'actions,uniqueActions,actionsValue'); $this->set('dimensions', 'actionGroup'); $this->set('sort', 'actions-'); $this->set('resultsPerPage', 25); $this->set('dimensionLink', array('linkColumn' => 'actionGroup', 'template' => array('do' => 'base.reportActionGroup', 'actionGroup' => '%s'), 'valueColumns' => 'actionGroup')); $this->set('trendChartMetric', 'actions'); $this->set('trendTitle', 'There were <*= this.d.resultSet.aggregates.actions.formatted_value *> actions for all action groups.'); } } ?>