views:

62

answers:

2

Action Helpers are recommended in general over extending Zend_Controller_Action.

Looking at some of the applications you've built recently, what did you use Action Helpers for?

A: 

http://framework.zend.com/manual/en/zend.controller.actionhelpers.html

Action Helpers allow developers to inject runtime and/or on-demand functionality into any Action Controllers that extend Zend_Controller_Action. Action Helpers aim to minimize the necessity to extend the abstract Action Controller in order to inject common Action Controller functionality.

Some useful Links:

NAVEED
Any reason for down-vote ?
NAVEED
I think you got the down vote because he asks for examples not for an explanation of what Action Helpers are.
Skelton
@Skelton: I explained because I found this in his question: `what did you use Action Helpers for?`. I give Example Link because I found this in his question: `Looking at some of the applications`
NAVEED
+2  A: 

Most common for my app:

  • redirector
  • static cache
  • service loader
  • messenger

Edit: I forgot to mention the switchers:

  • ajaxContext
  • contextSwitcher
takeshin