문제

In Zend Framework 2, how can I have one view helper available to multiple modules?

What I want is to have some general functions, like algorithmic functions, that can be reused by multiple modules.

I'm currently on ZF 2 2.0.3

Thanks.

도움이 되었습니까?

해결책

Its simple, put it in one of your modules. You can use classes and functions from other modules in ZF2. Because modules in ZF2 aren't much more than just namespaces, with some classes in them. So, if you create a view helper with the name \Module\View\Helper\MyHelper, you can simply use that view helper in another module.

다른 팁

In addition to what kokx said, you will also need to add service manager configuration for the view helper manager. This can be done in one of two ways: in your module configuration, or in your Module class.

// module configuration:
return array(
    'view_helpers' => array(
        'invokables' => array(
            'dimmy' => 'DimmyUtil\View\Helper\DimmyUtil',
        ),
    ),
);

or, in a Module class:

namespace DimmyUtil;

class Module
{
     public function getViewHelperConfig()
     {
         return array('factories' => array(
             'dimmy' => function ($helpers) {
                  // do some stuff...
                  return $helper;
             }
         ));
     }
}

Once you do so, the view helper will be available throughout any application composing the module.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top