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-05-05 02:55:35 +0400
committermatt <matt@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2009-05-05 02:55:35 +0400
commitcb346a4546a53bdc5054129d3331470cb3a447fc (patch)
tree155a924d3e86b7869c89022e3fbf19ca7be2ce2f /plugins/Actions
parent92da6b8181282800f4f28cae77d776b67540b477 (diff)
- ADDED search field below data tables is now using the regular expression syntax. For example, a search for "google|yahoo" would match all rows containing "google" or "yahoo". All search strings containing any of the special characters from this list: . \ + * ? [ ^ ] $ ( ) { } = ! < > | must be escaped with a back slash, eg. if you want to search for keywords containing "piwik!" you would search for "piwik\!".
- ADDED new configuration option: default number of rows returned in API responses "API_datatable_default_limit = 50" - REMOVED the automatic generic filters. The limit and sort and safe decode are applied by each module when necessary. - removed exact match filter. Now all searches are using regular expressions syntax. Exact match can be done using ^exact search here$ - fixed notice when natural sort on a non existing column - fixed CSV export for datatable_array - clarified code for plotting multiple lines in an evolution chart - FIXED #624 Added icon "save as image" below all graphs (next to the Export icon) - moved all JS functions into the piwikHelper static class - added example in ExampleUI plugin to plot only visits from google and yahoo! in 4 lines of code - added message when flash is disabled and graph not showing, linking to piwik faq. - added expressInstall.swf feature
Diffstat (limited to 'plugins/Actions')
-rw-r--r--plugins/Actions/Controller.php3
1 files changed, 0 insertions, 3 deletions
diff --git a/plugins/Actions/Controller.php b/plugins/Actions/Controller.php
index b3b7e13d42..9240161877 100644
--- a/plugins/Actions/Controller.php
+++ b/plugins/Actions/Controller.php
@@ -108,7 +108,6 @@ class Piwik_Actions_Controller extends Piwik_Controller
$view->setLimit( 100 );
$view->setColumnsToDisplay( array('label','nb_hits','nb_visits') );
- $view->setSortedColumn( 'nb_visits', 'desc' );
$view->setColumnTranslation('nb_hits', Piwik_Translate('General_ColumnPageviews'));
$view->setColumnTranslation('nb_visits', Piwik_Translate('General_ColumnUniquePageviews'));
@@ -143,7 +142,6 @@ class Piwik_Actions_Controller extends Piwik_Controller
$view->setColumnsToDisplay( array('label','nb_visits','nb_hits') );
$view->setColumnTranslation('nb_hits', Piwik_Translate('Actions_ColumnDownloads'));
$view->setColumnTranslation('nb_visits', Piwik_Translate('Actions_ColumnUniqueDownloads'));
- $view->setSortedColumn( 'nb_visits','desc' );
$view->disableExcludeLowPopulation();
$view->setLimit( 15 );
}
@@ -153,7 +151,6 @@ class Piwik_Actions_Controller extends Piwik_Controller
$view->setColumnsToDisplay( array('label','nb_visits','nb_hits') );
$view->setColumnTranslation('nb_hits', Piwik_Translate('Actions_ColumnClicks'));
$view->setColumnTranslation('nb_visits', Piwik_Translate('Actions_ColumnUniqueClicks'));
- $view->setSortedColumn( 'nb_visits','desc' );
$view->disableExcludeLowPopulation();
$view->setLimit( 15 );
}