You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 1, 2020. It is now read-only.
I added my own plugin directory to dwoo: $this->dwooCore->getLoader()->addDirectory($dir);
In this folder I have an own block-plugin which works fine... I did that by copying a Block plugin from the dwoo folder and adjusting the parameters. Now I've copied dwoo's FunctionGravatar in the same manner into my plugin directory and renamed the file and the function to FunctionGravator(.php) just to see if it still works like that.
Calling dwoo's {gravatar email="..."} in the template works fine - my {gravator email="..."}doesn't output anything. The code is the same (I only changed the class name). My FunctionGravator gets listed in the classpaths.
When I copy my FunctionGravator into dwoo's Plugins/Functions folder it works.
I hope you can help me. :)
Thanks.
Mario
The text was updated successfully, but these errors were encountered:
As you can see here, the bit operation $pluginType & Core::CLASS_PLUGIN for FunctionGravatar is 1, for my custom function class 'FunctionGravator' is 0.
Hi,
I added my own plugin directory to dwoo:
$this->dwooCore->getLoader()->addDirectory($dir);
In this folder I have an own block-plugin which works fine... I did that by copying a Block plugin from the dwoo folder and adjusting the parameters. Now I've copied dwoo's FunctionGravatar in the same manner into my plugin directory and renamed the file and the function to FunctionGravator(.php) just to see if it still works like that.
Calling dwoo's
{gravatar email="..."}
in the template works fine - my{gravator email="..."}
doesn't output anything. The code is the same (I only changed the class name). My FunctionGravator gets listed in the classpaths.When I copy my FunctionGravator into dwoo's Plugins/Functions folder it works.
I hope you can help me. :)
Thanks.
Mario
The text was updated successfully, but these errors were encountered: