From ea125e012e66991fa03d0be31e2c8824ef398e07 Mon Sep 17 00:00:00 2001 From: Awilum Date: Sun, 27 Dec 2020 22:42:55 +0300 Subject: [PATCH] feat(plugins): use plugin.php as common point to access plugin feature #530 BREAKING CHANGES in your plugin rename bootstrap.php to plugin.php --- src/flextype/Foundation/Plugins.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/flextype/Foundation/Plugins.php b/src/flextype/Foundation/Plugins.php index f4c328bf..c4e06f13 100755 --- a/src/flextype/Foundation/Plugins.php +++ b/src/flextype/Foundation/Plugins.php @@ -378,7 +378,7 @@ class Plugins continue; } - include_once PATH['project'] . '/plugins/' . $pluginName . '/bootstrap.php'; + include_once PATH['project'] . '/plugins/' . $pluginName . '/plugin.php'; } } }