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:
authorThomas Steur <thomas.steur@gmail.com>2013-10-14 01:25:52 +0400
committerThomas Steur <thomas.steur@gmail.com>2013-10-14 01:25:52 +0400
commitec52d4f107ef59882cfc37c4ed85bb90298355ba (patch)
tree4b8fc6a19b13970816bfb892330331aea807ed84 /core/Console.php
parent92f8f4fe4ab48af5331aeab30c4f3e3166426cbb (diff)
added command to generate a visualization plugin based on our VisualizationExamplePlugin
Diffstat (limited to 'core/Console.php')
-rw-r--r--core/Console.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/core/Console.php b/core/Console.php
index c450869459..8ce6884bad 100644
--- a/core/Console.php
+++ b/core/Console.php
@@ -13,6 +13,7 @@ namespace Piwik;
use Piwik\Plugins\CoreConsole\GenerateApi;
use Piwik\Plugins\CoreConsole\GenerateController;
use Piwik\Plugins\CoreConsole\GeneratePlugin;
+use Piwik\Plugins\CoreConsole\GenerateVisualizationPlugin;
use Piwik\Plugins\CoreConsole\GitCommit;
use Piwik\Plugins\CoreConsole\GitPull;
use Piwik\Plugins\CoreConsole\GitPush;
@@ -37,6 +38,7 @@ class Console
$console->add(new GeneratePlugin());
$console->add(new GenerateApi());
$console->add(new GenerateController());
+ $console->add(new GenerateVisualizationPlugin());
$console->add(new WatchLog());
$console->add(new GitPull());
$console->add(new GitCommit());