Zend Framework: Controller Plugins vs Action Helpe

2019-01-21 23:07发布

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?

5条回答
闹够了就滚
2楼-- · 2019-01-21 23:18

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.

查看更多
在下西门庆
3楼-- · 2019-01-21 23:19

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

查看更多
一纸荒年 Trace。
4楼-- · 2019-01-21 23:19

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

查看更多
Juvenile、少年°
5楼-- · 2019-01-21 23:25

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.

查看更多
手持菜刀,她持情操
6楼-- · 2019-01-21 23:37

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.

查看更多
登录 后发表回答