Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a consensus on how plugins should be implemented in a PHP application?

I've looked into the observer pattern which comes close, it's really just a notification system and doesn't allow code to extend the application directly. I'm currently using a simple hook systems that I came up with:

public function registerHook($hookName, array $params = array())
{
    $this->hooks[] = $hookName;

    foreach ( $this->plugins as $pluginName => $hooks ) {
        if ( in_array($hookName, $hooks) ) {
            $plugin = new $pluginName($this, $this->view, $this->controller);

            $plugin->{$hookName}($params);
        }
    }
}

This works well for my purposes but I'm curious if there's a design pattern out there that has been tested and proven many times over and I'm just re-inventing the wheel.

share|improve this question
I'd suggest having a look at how it works with Wordpress. I don't know myself, but I have a feeling it's using hooks, and BOY does wordpress have a ton of plugins. Good question, upvoted. – Relequestual Feb 11 '12 at 23:48
@Relequestual I'm familiar with WordPress, they take a procedural approach with "actions". codex.wordpress.org/Function_Reference/add_action – Elbert Alias Feb 12 '12 at 0:00
I'm going to say this question is not a dupe, but in some way it sort of is. Seems the consensus was discussed here stackoverflow.com/questions/42/… – Relequestual Feb 12 '12 at 0:04
I read that but it's an old thread. PHP 5.3 has many OO features that can be leveraged. – Elbert Alias Feb 12 '12 at 0:21
With the observer pattern, you can/need to activate observers at the point where you want to be able to extend your code. I.e. you need to have designated trigger points at which you hit up your observers and have them tell you if there is anything else that you need to do. Definitely not the cleanst way of drop-in-code-have-it-do-the-rest. – Mbrevda Feb 12 '12 at 9:58
show 5 more comments

6 Answers

up vote 2 down vote accepted

There is no consensus as in the Silver Bullet sense. For established patterns, you have multiple options like

to name a few.

Which you use is up to you, but you should make sure your system architecture supports the modularity. Have a look at these slides for some ideas

share|improve this answer

I think an Events Dispatcher is a nice and clean way to implement plugins, or any extension for that matter. An Events Dispatcher is an implementation of the Observer pattern, and is being used in symfony, Symfony2 and Zend Framework 2 (beta).

Looking through any of that source on github will make for some interesting reading. Though, an interesting bit of information can be found here:

http://components.symfony-project.org/event-dispatcher/trunk/book/02-Recipes

I wrote an Events and Hooks class a few years back for a project, I'll post that here if I can find it.

share|improve this answer

Take a look at the Yii framework. Yii heavily relies on events which are much cleaner than hooks, actions, etc. Using events, you can allow different parts of the system to talk to each other in an object oriented manner.

share|improve this answer
I'm not really looking for code examples but I'll have a look, thanks. – Elbert Alias Feb 12 '12 at 23:44

Well, there's a link to the project called jin-plugin right in the Wikipedia article about Plugin concept. I am seeing this framework first time, too, but, maybe, you can use it right away.

Besides, you should really google for things like "Plugin Pattern", there's just two links I found on first page: Plug-in Pattern, Extensibility pattern (wikipedia).

If it's really a pattern, it should be language agnostic, so you can safely take any existing solution from any language and convert it to PHP.

P. S. Thanks for question, anyway, you really did raise my own interest in this topic. ;)

share|improve this answer

Zend Framework is using the dispatchLoopStartup() and dispatchLoopShutdown() hooks as class methods. Each plugin is a class that implements the aforementioned methods.

ZF manual reference

share|improve this answer

The way you've done this, with hooks is also how I implement this.

The biggest problem with your sample though, is that your function instantiates the plugin. Why not pass an instance of the plugin instead?

The way I've done this, is that a plugin gets instantiated first, and registers its hooks itself.

share|improve this answer
A plugin may implement several hooks, creating a new instance for each avoids a shared state. – Elbert Alias Feb 13 '12 at 20:39
The shared state is something the plugin itself should be aware of. If you need separate states, use multiple objects. – Evert Feb 14 '12 at 1:31
Why is it an issue though? It keeps the hook implementations separated and there's no need to keep track of plugin instances. – Elbert Alias Feb 14 '12 at 4:59
You loose a lot of functionality that OOP gives. By doing this, you're effectively treating your objects as static. If you want to read more about this, look for 'Dependency injection'. Just general design patterns will also be of benefit. Even though this may not seem as an issue now, in the future I guarantee you'll see this is inflexible.. – Evert Feb 14 '12 at 9:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.