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@googlemail.com>2014-09-23 15:13:32 +0400
committerThomas Steur <thomas.steur@googlemail.com>2014-09-23 15:13:32 +0400
commit647f9fa620e74735f47ba2db594d7cb765bb101c (patch)
tree2d9d3ac4981a23a8c3aedbec8d4633bf1a511662 /plugins/ExamplePlugin/ExamplePlugin.php
parent9e89d847ff8c827bc9bfe1c2b6519669cc5bab5c (diff)
refs #6145 do no longer ask whether we should create a controller and API as well when generating a plugin
Diffstat (limited to 'plugins/ExamplePlugin/ExamplePlugin.php')
-rw-r--r--plugins/ExamplePlugin/ExamplePlugin.php14
1 files changed, 0 insertions, 14 deletions
diff --git a/plugins/ExamplePlugin/ExamplePlugin.php b/plugins/ExamplePlugin/ExamplePlugin.php
index 492c7e124e..6b45716fc8 100644
--- a/plugins/ExamplePlugin/ExamplePlugin.php
+++ b/plugins/ExamplePlugin/ExamplePlugin.php
@@ -12,18 +12,4 @@ namespace Piwik\Plugins\ExamplePlugin;
*/
class ExamplePlugin extends \Piwik\Plugin
{
- /**
- * @see Piwik\Plugin::getListHooksRegistered
- */
- public function getListHooksRegistered()
- {
- return array(
- 'AssetManager.getJavaScriptFiles' => 'getJsFiles',
- );
- }
-
- public function getJsFiles(&$jsFiles)
- {
- $jsFiles[] = 'plugins/ExamplePlugin/javascripts/plugin.js';
- }
}