Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Goals/Widgets.php')
-rw-r--r--plugins/Goals/Widgets.php39
1 files changed, 0 insertions, 39 deletions
diff --git a/plugins/Goals/Widgets.php b/plugins/Goals/Widgets.php
deleted file mode 100644
index 94d91bda5c..0000000000
--- a/plugins/Goals/Widgets.php
+++ /dev/null
@@ -1,39 +0,0 @@
-<?php
-/**
- * Piwik - free/libre analytics platform
- *
- * @link http://piwik.org
- * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
- *
- */
-namespace Piwik\Plugins\Goals;
-
-use Piwik\Common;
-
-class Widgets extends \Piwik\Plugin\Widgets
-{
- protected $category = 'Goals_Goals';
-
- protected function init()
- {
- $this->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);
- }
- }
- }
-
- private function getIdSite()
- {
- return Common::getRequestVar('idSite', null, 'int');
- }
-
-}