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:
authormatt <matt@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2009-03-25 07:24:48 +0300
committermatt <matt@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2009-03-25 07:24:48 +0300
commit44e29c487fb8b127b1b174b834e233769508dfe0 (patch)
tree6a1ed30f546977e8bd827e42b438808a5d97cb46 /core/ViewDataTable.php
parent64b0df6d2dd13fe6568e4acbcc83402e43f7e0fb (diff)
- cleaned up the Tracker/Action code, added tests, as well as cleaning up Actions archiving code
- now displaying all columns that user setColumnsToDisplay even if there are no values set - displaying custom column names for downloads and outlinks tables - enabled sort on download and outlinks - it's now possible to sort a table by a column that is not defined. It will not error but just not do anything. - fixed #393 Remove unique visitors from report for a given category of actions - fixed #158 outlinks without subpages when there are outlinks with the same domain and subpages should be grouped in the same row - fixed #535 Add "export" icons below the "Actions" reports (pages, download, outlinks) - fixed #579 API Actions: full_url and url is 0 - REMOVED feature of naming an outlink or a download with a custom name. All downloads and outlinks are now grouped by the URL host. The data will be consistent across all periods independantly of the data set. Only data processed from this version will be affected. - API CHANGE renamed entry_nb_unique_visitor in entry_nb_uniq_visitors and renamed exit_nb_unique_visitor in exit_nb_uniq_visitors in the Actions.getActions API call - FEATURE outlink won't count clicks on URLs where the hostname is one of the registered hostname for this website (see Settings > Websites) - FEATURE you can use Piwik to count clicks on links and count downloads, without using the automatic Javascript based download/outlinks tracking, but by modifying links to go through piwik.php. For example, http://yourwebsite.org/piwik/piwik.php?idsite=1&link=http://example.org&redirect=1 will count the outlink in piwik and redirect the user to http://example.org For example, http://yourwebsite.org/piwik/piwik.php?idsite=1&download=http://yourwebsite.org/download.pdf&redirect=1 will count the download in piwik and redirect the user to http://yourwebsite.org/download.pdf NOTE: it is recommended to rely on the automatic outlink and download tracking (more information on http://piwik.org/docs/javascript-tracking/). rather than adding a depending on Piwik for your website to function properly. However this feature is useful to some users as it gives a simple and reliable way of counting clicks, that you can then query using the Piwik API.
Diffstat (limited to 'core/ViewDataTable.php')
-rw-r--r--core/ViewDataTable.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/core/ViewDataTable.php b/core/ViewDataTable.php
index 43558c7e7d..bf4340c30d 100644
--- a/core/ViewDataTable.php
+++ b/core/ViewDataTable.php
@@ -242,6 +242,7 @@ abstract class Piwik_ViewDataTable
$this->viewProperties['show_goals'] = false;
$this->viewProperties['show_search'] = Piwik_Common::getRequestVar('show_search', true);
$this->viewProperties['show_table_all_columns'] = Piwik_Common::getRequestVar('show_table_all_columns', true);
+ $this->viewProperties['show_all_views_icons'] = Piwik_Common::getRequestVar('show_all_views_icons', true);
$this->viewProperties['show_exclude_low_population'] = Piwik_Common::getRequestVar('show_exclude_low_population', true);
$this->viewProperties['show_offset_information'] = Piwik_Common::getRequestVar('show_offset_information', true);;
$this->viewProperties['show_footer'] = Piwik_Common::getRequestVar('show_footer', true);
@@ -653,6 +654,15 @@ abstract class Piwik_ViewDataTable
}
/**
+ * Whether or not to show the tag cloud, pie charts, bar chart icons
+ * @return void
+ */
+ public function disableShowAllViewsIcons()
+ {
+ $this->viewProperties['show_all_views_icons'] = false;
+ }
+
+ /**
* Whether or not to show the "goal" icon
* @return void
*/