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:
authorFabian Becker <halfdan@xnorfz.de>2014-02-03 02:31:19 +0400
committerFabian Becker <halfdan@xnorfz.de>2014-02-03 02:31:19 +0400
commitb1ae26ddbc88bc4b729e77fcca91660480825f34 (patch)
tree7d5fbb6fda2fac8f1885a5e4a57b58fb0fd29ab3 /core/DataTable/Filter/AddSummaryRow.php
parentdc8f68acc7472de12caf2258e4d63a0e110e675a (diff)
Removing occurences of Piwik_ in core/
* @subpackage is deprecated * @package must only occur once * @package supports nesting (and can match the namespace) refs #4609
Diffstat (limited to 'core/DataTable/Filter/AddSummaryRow.php')
-rw-r--r--core/DataTable/Filter/AddSummaryRow.php6
1 files changed, 2 insertions, 4 deletions
diff --git a/core/DataTable/Filter/AddSummaryRow.php b/core/DataTable/Filter/AddSummaryRow.php
index 26a1a4f3d2..f483eb5b34 100644
--- a/core/DataTable/Filter/AddSummaryRow.php
+++ b/core/DataTable/Filter/AddSummaryRow.php
@@ -6,7 +6,7 @@
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
* @category Piwik
- * @package Piwik
+ * @package Piwik\DataTable\Filter
*/
namespace Piwik\DataTable\Filter;
@@ -24,8 +24,6 @@ use Piwik\DataTable\Row\DataTableSummaryRow;
* // use a human readable label for the summary row (instead of '-1')
* $dataTable->filter('AddSummaryRow', array($labelSummaryRow = Piwik_Translate('General_Total')));
*
- * @package Piwik
- * @subpackage DataTable
* @api
*/
class AddSummaryRow extends BaseFilter
@@ -53,4 +51,4 @@ class AddSummaryRow extends BaseFilter
$row->setColumn('label', $this->labelSummaryRow);
$table->addSummaryRow($row);
}
-} \ No newline at end of file
+}