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/Simple.php')
-rw-r--r--core/DataTable/Simple.php56
1 files changed, 28 insertions, 28 deletions
diff --git a/core/DataTable/Simple.php b/core/DataTable/Simple.php
index bba122db20..7189fb0b2e 100644
--- a/core/DataTable/Simple.php
+++ b/core/DataTable/Simple.php
@@ -1,10 +1,10 @@
<?php
/**
* Piwik - Open source web analytics
- *
+ *
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
- *
+ *
* @category Piwik
* @package Piwik
*/
@@ -12,40 +12,40 @@
/**
* The DataTable_Simple is used to provide an easy way to create simple DataGrid.
* A DataTable_Simple actually is a DataTable with 2 columns: 'label' and 'value'.
- *
- * It is usually best to return a DataTable_Simple instead of
+ *
+ * It is usually best to return a DataTable_Simple instead of
* a PHP array (or other custom data structure) in API methods:
* - the generic filters can be applied automatically (offset, limit, pattern search, sort, etc.)
* - the renderer can be applied (XML, PHP, HTML, etc.)
* So you don't have to write specific renderer for your data, it is already available in all the formats supported natively by Piwik.
- *
+ *
* @package Piwik
* @subpackage Piwik_DataTable
*/
class Piwik_DataTable_Simple extends Piwik_DataTable
{
- /**
- * Loads (append) in the DataTable the array information
- *
- * @param array $array Array containing the rows information
- * array(
- * 'Label row 1' => Value row 1,
- * 'Label row 2' => Value row 2,
- * )
- */
- public function addRowsFromArray($array)
- {
- $this->addRowsFromSimpleArray(array($array));
- }
+ /**
+ * Loads (append) in the DataTable the array information
+ *
+ * @param array $array Array containing the rows information
+ * array(
+ * 'Label row 1' => Value row 1,
+ * 'Label row 2' => Value row 2,
+ * )
+ */
+ public function addRowsFromArray($array)
+ {
+ $this->addRowsFromSimpleArray(array($array));
+ }
- /**
- * Updates the given column with the given value
- *
- * @param string $columnName
- * @param mixed $value
- */
- public function setColumn($columnName, $value)
- {
- $this->getLastRow()->setColumn($columnName, $value);
- }
+ /**
+ * Updates the given column with the given value
+ *
+ * @param string $columnName
+ * @param mixed $value
+ */
+ public function setColumn($columnName, $value)
+ {
+ $this->getLastRow()->setColumn($columnName, $value);
+ }
}