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:
authorBenaka Moorthi <benaka.moorthi@gmail.com>2013-08-01 21:54:19 +0400
committerBenaka Moorthi <benaka.moorthi@gmail.com>2013-08-01 21:54:19 +0400
commit0f61caac0d97e28ac7653078c6d1b7bf09cd4bab (patch)
treea839b77749522b9e116aebc6666a128d24bad813 /plugins/ExamplePlugin
parentc4b5fdfe0cc4546425d569d24f7a9b74190e7fcf (diff)
Refs #4040, #4041 removed rest of viewdatatable set/get/enable/disable property functions, did the same for all other ViewDataTable classes, moved most of ViewDataTable/HtmlTable logic to visualization instead of main class and re-add links for UI integration tests.
Diffstat (limited to 'plugins/ExamplePlugin')
-rw-r--r--plugins/ExamplePlugin/ExamplePlugin.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/ExamplePlugin/ExamplePlugin.php b/plugins/ExamplePlugin/ExamplePlugin.php
index b2d7441471..481c324b5d 100644
--- a/plugins/ExamplePlugin/ExamplePlugin.php
+++ b/plugins/ExamplePlugin/ExamplePlugin.php
@@ -44,7 +44,7 @@ class Piwik_ExamplePlugin extends Plugin
if ($view->getCurrentControllerName() == 'Referers'
&& $view->getCurrentControllerAction() == 'getWebsites'
) {
- $view->addColumnToDisplay('nb_uniq_visitors');
+ $view->columns_to_display[] = 'nb_uniq_visitors';
}
}