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>2010-06-22 22:51:10 +0400
committermatt <matt@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2010-06-22 22:51:10 +0400
commit50ddad9af7c19ae916cb10c1d4e6639de3942302 (patch)
tree8f5b3f165fb73f8fe205f5ac57871e36c5d1fc83 /plugins/Actions
parent6f02065aea07894847622f0490dbdee5608f5514 (diff)
Fixes #1428
Page titles, Page URLs reports now have pagination like other datatables.
Diffstat (limited to 'plugins/Actions')
-rw-r--r--plugins/Actions/Controller.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins/Actions/Controller.php b/plugins/Actions/Controller.php
index 7e9bc3285e..5e85433fbb 100644
--- a/plugins/Actions/Controller.php
+++ b/plugins/Actions/Controller.php
@@ -17,6 +17,8 @@
*/
class Piwik_Actions_Controller extends Piwik_Controller
{
+ const ACTIONS_REPORT_ROWS_DISPLAY = 100;
+
protected function getPageUrlsView($currentAction, $controllerActionSubtable)
{
$view = Piwik_ViewDataTable::factory();
@@ -247,11 +249,10 @@ class Piwik_Actions_Controller extends Piwik_Controller
$view->setTemplate('CoreHome/templates/datatable_actions_recursive.tpl');
}
// disable Footer icons
- $view->disableOffsetInformation();
$view->disableShowAllViewsIcons();
$view->disableShowAllColumns();
- $view->setLimit( 100 );
+ $view->setLimit( self::ACTIONS_REPORT_ROWS_DISPLAY );
$view->main();
// we need to rewrite the phpArray so it contains all the recursive arrays
if($currentlySearching)