Skip to content

Commit

Permalink
fix issue #76
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas--F authored Jul 1, 2021
1 parent 4b2f97d commit 53f662d
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions Reports/GetBotTracker.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,17 +48,22 @@ public function configureView(ViewDataTable $view)
$view->config->translations['botKeyword'] = Piwik::translate('BotTracker_BotKeyword');
$view->config->translations['botCount'] = Piwik::translate('BotTracker_BotCount');
$view->config->translations['botLastVisit'] = Piwik::translate('BotTracker_BotLastVisit');
$view->config->translations['label'] = Piwik::translate('BotTracker_BotActive');
$view->config->columns_to_display = array('botName','botKeyword','botCount','botLastVisit','label');
$view->config->disable_row_evolution = true;
$view->config->show_search = false;
$view->config->show_footer_icons = false;
$view->config->show_exclude_low_population = false;
$view->config->show_table_all_columns = false;
$view->config->show_insights = false;
$view->config->show_related_reports = false;
$view->config->show_pivot_by_subtable = false;
$view->config->show_table_performance = false;
$view->config->show_all_views_icons = false;
$view->config->show_export = false;
$view->requestConfig->filter_limit = 25;
$view->requestConfig->filter_sort_column = 'botCount';
$view->requestConfig->filter_sort_order = 'desc';

$view->config->columns_to_display = array('botName','botKeyword','botCount','botLastVisit','label');
$view->config->translations['label'] = Piwik::translate('BotTracker_BotActive');
$view->config->disable_row_evolution = true;
$view->config->show_related_reports = true;
}

/**
Expand Down

0 comments on commit 53f662d

Please sign in to comment.