addWidget('Goals_GoalsOverview', 'widgetGoalsOverview'); $idSite = $this->getIdSite(); $goals = API::getInstance()->getGoals($idSite); if (count($goals) > 0) { foreach ($goals as $goal) { $name = Common::sanitizeInputValue($goal['name']); $params = array('idGoal' => $goal['idgoal']); $this->addWidget($name, 'widgetGoalReport', $params); } } $site = new Site($idSite); if ($site->isEcommerceEnabled()) { $this->addWidgetWithCustomCategory('Goals_Ecommerce', 'Goals_EcommerceOverview', 'widgetGoalReport', array('idGoal' => Piwik::LABEL_ID_GOAL_IS_ECOMMERCE_ORDER)); $this->addWidgetWithCustomCategory('Goals_Ecommerce', 'Goals_EcommerceLog', 'getEcommerceLog'); } } private function getIdSite() { return Common::getRequestVar('idSite', null, 'int'); } }