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:
authorKate Butler <kate@innocraft.com>2019-05-28 04:31:39 +0300
committerMatthieu Aubry <mattab@users.noreply.github.com>2019-05-28 04:31:39 +0300
commit75561add3c2cdd866b7987683a5588411071a057 (patch)
treefa8e2813b68b515ebd4baba3a11a646fc57972f6 /plugins/CoreConsole/Commands/GeneratePlugin.php
parentec7e9afc89212af3d44e253c64a24f0f1723e481 (diff)
Ensure each plugin has a config.php and tracker.php file (#14430)
* Add empty config.php and tracker.php files to each plugin that doesn't have them; add to whitelist of files that are included in new plugins generated by generate:plugin * Add plugin files for plugins which were missing them
Diffstat (limited to 'plugins/CoreConsole/Commands/GeneratePlugin.php')
-rw-r--r--plugins/CoreConsole/Commands/GeneratePlugin.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/CoreConsole/Commands/GeneratePlugin.php b/plugins/CoreConsole/Commands/GeneratePlugin.php
index ad29a39a94..16f736bdc5 100644
--- a/plugins/CoreConsole/Commands/GeneratePlugin.php
+++ b/plugins/CoreConsole/Commands/GeneratePlugin.php
@@ -75,6 +75,9 @@ class GeneratePlugin extends GeneratePluginBase
'/docs',
'/docs/faq.md',
'/docs/index.md',
+ '/config',
+ '/config/config.php',
+ '/config/tracker.php'
);
}