![]() |
PluginLibrary 13 - Printable Version +- MyBB Community Forums (https://community.mybb.com) +-- Forum: Extensions (https://community.mybb.com/forum-201.html) +--- Forum: Plugins (https://community.mybb.com/forum-73.html) +---- Forum: Plugin Development (https://community.mybb.com/forum-68.html) +---- Thread: PluginLibrary 13 (/thread-87399.html) |
PluginLibrary 13 - frostschutz - 2011-01-29 PluginLibrary is not a stand-alone plugin, but rather a library of useful functions that can be used by plugins and plugin developers. For example, it can help you manage settings of your plugin, or apply edits to core files. The list of PluginLibrary's features is expected to grow over time and contributions are welcome. PluginLibrary is Open Source Software, licensed under the GNU Lesser General Public License, Version 3. This is the same license as MyBB itself uses, so if you can use MyBB, you should also be able to use PluginLibrary. PluginLibrary is Copyright © 2011 Andreas Klauer ([email protected]) Function overview:
The full developer documentation and a sample plugin is included in the package. Download: http://mods.mybb.com/view/pluginlibrary Alternate Download: https://github.com/frostschutz/PluginLibrary/tags Documentation: https://github.com/frostschutz/MyBB-PluginLibrary/blob/master/PluginLibrary-Documentation.rst (also included in the package) RE: PluginLibrary 1 - Diogo Parrinha - 2011-01-30 I'm glad you took my suggestion into consideration! Thanks for releasing by the way, I'll give it a try for my next plugin. RE: PluginLibrary 1 - Euan T - 2011-01-30 Looks useful if I was ever to try my hand at a larger plugin. It seems pretty pointless for small plugins though. Great job as ever! RE: PluginLibrary 1 - frostschutz - 2011-01-30 Small plugins that do nothing but something minor in a single hook won't need it. It's already plenty useful if your plugin has any settings, though. And functionality is expected to grow over time. Depends on my future projects and other people's suggestions. RE: PluginLibrary 1 - Euan T - 2011-01-30 Well, I'd love it if there was a super easy way to do usergroup permissions. There is a way already, but an easy way would be quite useful really. RE: PluginLibrary 1 - frostschutz - 2011-01-31 Today I learned that I have to enable all warnings in my PHP install. They weren't shown to me and that's why I missed this error until now: Warning: Call-time pass-by-reference has been deprecated I'll have to change how edit_core() provides debug info for failed edits, since passing $search as &$search apparently is no longer wanted / allowed by PHP... Added $debug parameter to edit_core() in PluginLibrary 2. RE: PluginLibrary 2 - Diogo Parrinha - 2011-02-08 Can a moderator please stick this? I think it's quite good for the developers to know about this library. RE: PluginLibrary 2 - fizz - 2011-02-09 Wow I might get this just for the settings ![]() Maybe a simple function to add a new link to the UserCP / AdminCP navigation bars and add a page for them. (I only ask because it's a b!tch and I can't seem to do it myself >.<) RE: PluginLibrary 2 - frostschutz - 2011-02-19 The next version of PluginLibrary will include a XML Export/Import function that works with arbitrary data of types bool, int, float, string, array. Useful for plugins where you want to share $some_data with others... RE: PluginLibrary 2 - FBI - 2011-02-20 cool, it will be great tool |