* @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.4.0 */ class owa_goalNStarts extends owa_metric { function __construct( $params ) { if ( array_key_exists( 'goal_number' , $params ) ) { $goal_number = $params['goal_number']; } $siteId = owa_coreAPI::getRequestParam('siteId'); $gm = owa_coreAPI::supportClassFactory('base', 'goalManager', $siteId); $goal = $gm->getGoal($goal_number); $name = 'goal'.$goal_number.'Starts'; $this->setName( $name ); $this->setLabel( $goal['name'] . ' Starts'); $this->setEntity( 'base.session' ); $column = 'goal_'.$goal_number.'_start'; $this->setColumn( $column ); $this->setSelect( sprintf( "SUM(%s)", $this->getColumn() ) ); $this->setDataType( 'integer' ); return parent::__construct(); } } ?>