views:

799

answers:

5

Could someone give few tips and/or examples how Controller Plugins and Action Helpers are different? Are there situations where particular task could be accomplished with one but not another? For me they both look more or less the same and I'm often having trouble having to decide when to use what... Are there any big differences?

+11  A: 

Controller plugins can hook into any controller at any point in the routing process (preDispatch postDispatch, routeStartup, routeShutdown) which makes them apt at providing behind the scenes functionality like ACL enforcement.

Action Helpers are for for reusable but optional segments that your controller might need to access (redirector, flashMessenger).

So if you are creating a reusable snippet of code that always needs to execute itself then use a controller plugin, otherwise you probably want an action helper.

Ballsacian1
Just to note that action controllers can also execute themselves as they have preDispatch() and postDispatch() hooks. The ActionHelperBroker is used to control this.
Rob Allen
+6  A: 

You can think of it this way:

  • Action helpers are used to add methods to controllers.
  • Controller plugins are used to add routing / dispatch logic to controllers.

So ask yourself, do I have a method that I would like to be able to call from all actions in my controller? Or do I need to add logic to the routing / dispatch process.

You might also have a look at the the Built in Action Helpers.

smack0007
A: 

Action helpers also have access to the actual controlller object that's being executed. Controller Plugins only have access to the FrontController, and therefore only the controller and action name.

Which you use depends on what context you need. If you need to access a view object attached to a controller, for example, you will want an Action Helper.

A.J. Brown
+1  A: 

A picture to illustrate the difference between plugins and action helpers: ZF Sequence Flow

Maxime P
A: 

Also notice that, in the front controller life-cycle process, the plugins get the control(or invoked) first than the action helpers.

cuttlefish