[PHP] Re: Suggestions of GPL plugin-system?

2007-01-31 Thread Ivo F.A.C. Fokkema
Thanks everyone for the useful input. I've looked around a bit using the various links and info that I got. The Gallery2 documentation on the modules is far from transparent to me, and the idea of having a general module class that needs to get extended by the module doesn't appeal to me either. I

[PHP] Re: Suggestions of GPL plugin-system?

2007-01-30 Thread Globalissa Info
Hello All (cc Ivo), We have numerous modules in various software titles and these are included by a simple conditional statement. If they exist, then include them. Example: ... another example: // your code here This works well for modules because if they don't exist th

[PHP] Re: Suggestions of GPL plugin-system?

2007-01-29 Thread Michael Weaver
Hi Ivo, I have been developing and working with a PHP Application Toolkit/ Framework over the last 6 - 7 years and have been actively working on developing a system that is extensible through custom modules while retaining a stable 'core' codebase. The source code is available at: http://

[PHP] Re: Suggestions of GPL plugin-system?

2007-01-29 Thread Colin Guthrie
Ivo F.A.C. Fokkema wrote: > Hi guys, > > I've been developing a GPL PHP/MySQL app for some time now and I would > like to extend it with a module/plugin system. The idea would be that > people could add a directory in a plugin path that would contain a > bunch of PHP files extending the functional