Hi devs and list lurkers
The plugin API is making good progress and I really have fun when developing some sample plugins. I think that we'll be ready soon to merge the development branch back into trunk and publish a new beta with the plugin API. I kindly ask you to try out the current branch (devel-api) and find out what you can do with it. There's a basic description about how to write and install plugins at http://trac.roundcube.net/wiki/Doc_Plugins.
There are only a few hooks implemented so far (http://trac.roundcube.net/wiki/Plugin_Hooks) and you're welcome to share your needs for further hooks with us.
Have fun and let us know what you think or what's missing.
Thomas _______________________________________________ List info: http://lists.roundcube.net/dev/
Thomas Bruederli wrote:
Have fun and let us know what you think or what's missing.
Is this possible to add a link in taskbar (for e.g. Help)? Any idea how to skining/styling of big plugins like my managesieve filters patch?
On Fri, Mar 27, 2009 at 13:51, A.L.E.C alec@alec.pl wrote:
Thomas Bruederli wrote:
Have fun and let us know what you think or what's missing.
Is this possible to add a link in taskbar (for e.g. Help)?
The taskbar is defined as a container named 'taskbar'. You can add a button either server side $this->add_button(..., 'taskbar'); or client side with rcmail.add_element('<a href...', 'taskbar');
I know, the documentation is not complete yet...
Any idea how to skining/styling of big plugins like my managesieve filters patch?
There are two ways to do that. Either your plugin defines its own template objects and the styling has to be done (manually) within the skin or the plugin does the styling itself and uses the blank template 'plugin' as you already did in the password changing plugin.
~Thomas _______________________________________________ List info: http://lists.roundcube.net/dev/