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 53f662d commit 4caa6a8
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions Reports/GetBotTrackerAnzeige.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,17 +43,24 @@ public function configureView(ViewDataTable $view)
{
$view->config->translations['botId'] = Piwik::translate('BotTracker_BotId');
$view->config->translations['botName'] = Piwik::translate('BotTracker_BotName');
$view->config->translations['botKeyword'] = Piwik::translate('BotTracker_BotKeyword');
//$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->show_search = false;
$view->config->show_footer_icons = false;
$view->config->show_exclude_low_population = false;
$view->config->columns_to_display = array('botName','botCount','botLastVisit');
$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->config->columns_to_display = array("botName","botCount","botLastVisit");
$view->config->disable_row_evolution = true;
$view->requestConfig->filter_sort_column = 'botCount';
$view->requestConfig->filter_sort_order = 'desc';
$view->requestConfig->filter_limit = 10;
$view->config->disable_row_evolution = true;
}

/**
Expand Down

0 comments on commit 4caa6a8

Please sign in to comment.