From f7832e78dc47b4e4943815fc7c8fb29fa567f99c Mon Sep 17 00:00:00 2001 From: Andy Miller Date: Mon, 7 May 2018 21:32:00 -0600 Subject: [PATCH] fire onPluginsInitialized event --- bin/plugin | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bin/plugin b/bin/plugin index a8b089a89..1f2a4c258 100755 --- a/bin/plugin +++ b/bin/plugin @@ -60,6 +60,9 @@ $grav['streams']; $grav['plugins']->init(); $grav['themes']->init(); +// Initialize Plugins +$grav->fireEvent('onPluginsInitialized'); + $app = new Application('Grav Plugins Commands', GRAV_VERSION); $pattern = '([A-Z]\w+Command\.php)';