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:
-rw-r--r--plugins/ExampleVisualization/SimpleTable.php11
1 files changed, 2 insertions, 9 deletions
diff --git a/plugins/ExampleVisualization/SimpleTable.php b/plugins/ExampleVisualization/SimpleTable.php
index 304d69efb9..881f13cc81 100644
--- a/plugins/ExampleVisualization/SimpleTable.php
+++ b/plugins/ExampleVisualization/SimpleTable.php
@@ -24,14 +24,6 @@ class SimpleTable extends Visualization
const FOOTER_ICON_TITLE = 'Simple Table';
const FOOTER_ICON = 'plugins/ExampleVisualization/images/table.png';
- /**
- * You do not have to implement the init method. It is just an example how to assign view variables.
- */
- public function init()
- {
- $this->assignTemplateVar('vizTitle', 'MyAwesomeTitle');
- }
-
public function configureVisualization()
{
// Configure how your visualization should look like, for instance you can disable search
@@ -62,6 +54,7 @@ class SimpleTable extends Visualization
{
// this hook is executed after the data table is loaded and after all filteres are applied.
// format your data here that you want to pass to the view
- // $this->myCustomViewVariable = $dataTable->getRows();
+
+ $this->assignTemplateVar('vizTitle', 'MyAwesomeTitle');
}
} \ No newline at end of file