Skip to content

Commit

Permalink
pr/plugin config filename in AbstractPlugin
Browse files Browse the repository at this point in the history
- Change to use the file "config.php" as the name of the per
  plugin configuration file. Introduced in a28626c
  • Loading branch information
cambell-prince committed Jul 16, 2021
1 parent fd53907 commit e54659c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gui/src/Plugin/AbstractPlugin.php
Expand Up @@ -211,7 +211,7 @@ public function getConfigFromFile()
$pluginName = $this->getName();
$pluginConfigFile = $this->getPluginManager()->pluginGetRootDir()
. DIRECTORY_SEPARATOR . $pluginName . DIRECTORY_SEPARATOR
. 'pluginConfig.php';
. 'config.php';
$pluginConfig = [];

if (!file_exists($pluginConfigFile)) {
Expand Down

0 comments on commit e54659c

Please sign in to comment.