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-05 04:18:35 +0400
committerThomas Steur <thomas.steur@gmail.com>2013-10-05 04:18:35 +0400
commitad2ff1d137053618e8ead2aa94f8e38c699c3c67 (patch)
tree38e7f564ee5687375925529691e70251d6c08772 /core/Console.php
parent5bfa0706837ec3e6ea6eca81b04e39b4f9427a22 (diff)
refs #4121 added possibility to create controller, all files within the template folder will be copied now
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 dc8b9732b3..9d154bfe00 100644
--- a/core/Console.php
+++ b/core/Console.php
@@ -10,6 +10,7 @@
*/
namespace Piwik;
+use Piwik\Plugins\CoreConsole\GenerateController;
use Piwik\Plugins\CoreConsole\GeneratePlugin;
use Piwik\Plugins\CoreConsole\GenerateApi;
use Piwik\Plugins\CoreConsole\RunTests;
@@ -25,6 +26,7 @@ class Console
$console->add(new RunTests());
$console->add(new GeneratePlugin());
$console->add(new GenerateApi());
+ $console->add(new GenerateController());
$console->add(new WatchLog());
$console->run();