Custom Dwoo plugins not bound
We created a custom Dwoo plugin under applications/dwoo/plugins and it was not available, giving this error:
"Plugin partial can not be found, maybe you forgot to bind it if it's a custom plugin ?"
We fixed this by modifying MY_Parser.php within the spawn() method to add a directory:
$dwoo = new Dwoo;
$dwoo->getLoader()->addDirectory(ARION_ROOT.'libraries/dwoo/plugins');
It would be great if it were possible for all advanced module directories to be added at this point as well as we have so far kept everything within a single advanced module directory and would like to continue to do so.
Comments
https://github.com/daylightstudio/FUEL-CMS/issues/321