简体   繁体   中英

Zend: How to use a custom function from a view helper in the controller?

Ive got a view helper in library/my/view/helper/gravatar and so in any view I can call $this->gravatar($email) .

But how can I access this function in the models (or controllers)?

Sorry if its already been asked but Im new and the documentation is bloody awful in parts.

Thanks everyone

In your controller, you can access ViewHelpers through

$this->view->gravatar($email)

Your model should not call methods from the View, as it would tie the model to the presentation layer. The View may know about the model, but the model should not know about the View.

For Gravatars, there is also a Service and View Helper in the making:

A better way to be sure the "thing" from the view is actually a view helper is to use the method getHelper("helperName"); .

  $this->view->getHelper('gravatar');

In controller:

$this->view->gravatar();

In model (Gordon is right that you should not do it in general):

Zend_Controller_Action_HelperBroker::getStaticHelper('ViewRenderer')->getView()->gravatar()

or simply share Zend_View instance via Zend_Registry. In case you don't have View instance you can directly instantiate it like $g = new View_Helper_Gravatar(). To load it you can use Zend_Loader_PluginLoader.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM