[PHP] Plugin systems

2005-05-31 Thread Marcus Bointon
I'm looking to build a plugin system for my web application. I'm going to need to handle multiple types of plugin. I know that many of them exist already, but I'm wanting something that's very object- clean and PHP5-aware. I was thinking about using multiple interface implementations, so

Re: [PHP] Plugin systems

2005-05-31 Thread Jochem Maas
Marcus Bointon wrote: I'm looking to build a plugin system for my web application. I'm going to need to handle multiple types of plugin. I know that many of them exist already, but I'm wanting something that's very object- clean and PHP5-aware. I was thinking about using multiple interface

Re: [PHP] Plugin systems

2005-05-31 Thread Marcus Bointon
On 31 May 2005, at 15:21, Jochem Maas wrote: seems like alot of spreadout functionality to be putting it in a single class (maybe I'm not seeing your example in the proper light). That's possible, and I would only be able to implement a single plugin class within any given file (assuming