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 'plugins/ExampleAPI/API.php')
-rw-r--r--plugins/ExampleAPI/API.php8
1 files changed, 5 insertions, 3 deletions
diff --git a/plugins/ExampleAPI/API.php b/plugins/ExampleAPI/API.php
index 163d265c27..d4a0febccf 100644
--- a/plugins/ExampleAPI/API.php
+++ b/plugins/ExampleAPI/API.php
@@ -8,7 +8,9 @@
* @category Piwik_Plugins
* @package Piwik_ExampleAPI
*/
+use Piwik\DataTable\Row;
use Piwik\Piwik;
+use Piwik\DataTable;
/**
* The ExampleAPI is useful to developers building a custom Piwik plugin.
@@ -126,13 +128,13 @@ class Piwik_ExampleAPI_API
* This data table will be converted to all available formats
* when requested in the API request.
*
- * @return Piwik_DataTable
+ * @return DataTable
*/
public function getCompetitionDatatable()
{
- $dataTable = new Piwik_DataTable();
+ $dataTable = new DataTable();
- $row1 = new Piwik_DataTable_Row();
+ $row1 = new Row();
$row1->setColumns(array('name' => 'piwik', 'license' => 'GPL'));
// Rows Metadata is useful to store non stats data for example (logos, urls, etc.)