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:
Diffstat (limited to 'core/DataTable/Filter/ReplaceSummaryRowLabel.php')
-rw-r--r--core/DataTable/Filter/ReplaceSummaryRowLabel.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/core/DataTable/Filter/ReplaceSummaryRowLabel.php b/core/DataTable/Filter/ReplaceSummaryRowLabel.php
index 23a5926691..3c1e31e2d0 100644
--- a/core/DataTable/Filter/ReplaceSummaryRowLabel.php
+++ b/core/DataTable/Filter/ReplaceSummaryRowLabel.php
@@ -15,24 +15,24 @@ use Piwik\Piwik;
/**
* Replaces the label of the summary row with a supplied label.
- *
+ *
* This filter is only used to prettify the summary row label and so it should
* always be queued on a {@link DataTable}.
- *
+ *
* This filter always recurses. In other words, this filter will always apply itself to
* all subtables in the given {@link DataTable}'s table hierarchy.
- *
+ *
* **Basic example**
- *
+ *
* $dataTable->queueFilter('ReplaceSummaryRowLabel', array(Piwik::translate('General_Others')));
- *
+ *
* @api
*/
class ReplaceSummaryRowLabel extends BaseFilter
{
/**
* Constructor.
- *
+ *
* @param DataTable $table The table that will eventually be filtered.
* @param string|null $newLabel The new label for summary row. If null, defaults to
* `Piwik::translate('General_Others')`.