1
0
mirror of https://github.com/flextype/flextype.git synced 2025-08-11 15:44:49 +02:00

feat(plugins): use plugin.php as common point to access plugin feature #530

BREAKING CHANGES

in your plugin rename bootstrap.php to plugin.php
This commit is contained in:
Awilum
2020-12-27 22:42:55 +03:00
parent c5b57620ef
commit ea125e012e

View File

@@ -378,7 +378,7 @@ class Plugins
continue;
}
include_once PATH['project'] . '/plugins/' . $pluginName . '/bootstrap.php';
include_once PATH['project'] . '/plugins/' . $pluginName . '/plugin.php';
}
}
}