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
path: root/core/View
diff options
context:
space:
mode:
authordiosmosis <benaka.moorthi@gmail.com>2013-02-06 02:41:45 +0400
committerdiosmosis <benaka.moorthi@gmail.com>2013-02-06 02:41:45 +0400
commita7c4cf9d9c3b3a172acd30e07c68974826aa61e6 (patch)
treee8da17112f2822c353399d7976152a593b5a4d61 /core/View
parent073af4e5f8c4552520c0b5c57a2136beca62565a (diff)
Refs #3691, refactor Goals 'conversions by type of visit' template/logic into reusable View in CoreHome.
Notes: * Removed need for initial AJAX loading in new view.
Diffstat (limited to 'core/View')
-rw-r--r--core/View/ReportsByDimension.php107
1 files changed, 107 insertions, 0 deletions
diff --git a/core/View/ReportsByDimension.php b/core/View/ReportsByDimension.php
new file mode 100644
index 0000000000..014b8f39ad
--- /dev/null
+++ b/core/View/ReportsByDimension.php
@@ -0,0 +1,107 @@
+<?php
+/**
+ * Piwik - Open source web analytics
+ *
+ * @link http://piwik.org
+ * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
+ * @version $Id$
+ *
+ * @category Piwik
+ * @package SmartyPlugins
+ */
+
+/**
+ * A facade that makes it easier to use the 'reports_by_dimension.tpl' template.
+ *
+ * This view will output HTML that displays a list of report names by category and
+ * loads them by AJAX when clicked. The loaded report is displayed to the right
+ * of the report listing.
+ */
+class Piwik_View_ReportsByDimension extends Piwik_View
+{
+ /**
+ * Constructor.
+ */
+ public function __construct()
+ {
+ parent::__construct(PIWIK_INCLUDE_PATH.'/plugins/CoreHome/templates/reports_by_dimension.tpl');
+ $this->dimensionCategories = array();
+ }
+
+ /**
+ * Adds a report to the list of reports to display.
+ *
+ * @param string $category The report's category. Can be a i18n token.
+ * @param string $title The report's title. Can be a i18n token.
+ * @param string $action The controller action used to load the report, ie, Referrers.getAll
+ * @param array $params The list of query parameters to use when loading the report.
+ * This list overrides query parameters currently in use. For example,
+ * array('idSite' => 2, 'viewDataTable' => 'goalsTable')
+ * would mean the goals report for site w/ ID=2 will always be loaded.
+ */
+ public function addReport( $category, $title, $action, $params = array() )
+ {
+ list($module, $action) = explode('.', $action);
+ $params = array('module' => $module, 'action' => $action) + $params;
+
+ $categories = $this->dimensionCategories;
+ $categories[$category][] = array(
+ 'title' => $title,
+ 'params' => $params,
+ 'url' => Piwik_Url::getCurrentQueryStringWithParametersModified($params)
+ );
+ $this->dimensionCategories = $categories;
+ }
+
+ /**
+ * Adds a set of reports to the list of reports to display.
+ *
+ * @param array $reports An array containing report information. The array requires
+ * the 'category', 'title', 'action' and 'params' elements.
+ * For information on what they should contain, @see addReport.
+ */
+ public function addReports( $reports )
+ {
+ foreach ($reports as $report)
+ {
+ $this->addReport($report['category'], $report['title'], $report['action'], $report['params']);
+ }
+ }
+
+ /**
+ * Renders this view.
+ *
+ * @return string The rendered view.
+ */
+ public function render()
+ {
+ $this->firstReport = "";
+
+ // if there are reports & report categories added, render the first one so we can
+ // display it initially
+ $categories = $this->dimensionCategories;
+ if (!empty($categories))
+ {
+ $firstReportInfo = reset(reset($categories));
+
+ $oldGet = $_GET;
+ $oldPost = $_POST;
+
+ foreach ($firstReportInfo['params'] as $key => $value)
+ {
+ $_GET[$key] = $value;
+ }
+
+ $_POST = array();
+
+ $module = $firstReportInfo['params']['module'];
+ $action = $firstReportInfo['params']['action'];
+ $this->firstReport = Piwik_FrontController::getInstance()->fetchDispatch($module, $action);
+
+ $_GET = $oldGet;
+ $_POST = $oldPost;
+ }
+
+ return parent::render();
+ }
+}