ZF3의보기 도우미에서 사용자 정의 플러그인을 호출 할 수있는 방법이 있습니까?보기 도우미에서 사용자 정의 플러그인 호출
ZF3에 따라, 도우미를위한 공장이 만들어졌습니다.
ZF2에서 이것은 우리가 플러그인을 호출하는 방법입니다.
$ecommercePlugin = $this->getServiceLocator()
->get('ControllerPluginManager')
->get('CustomPlugin');
serviceLocator가 ZF3에서 제거되었으므로 플러그인 호출 방법은 무엇입니까?
편집 module.config
'view_helpers' => array(
'invokables' => array(
'CustomPlugin' => \MyMethod\Controller\Plugin\CustomPlugin::class
)
),
MymethodController\CustomPlugin
class CustomPlugin extends AbstractPlugin
{
//My methods
}
문제를 해결 했습니까? 아니면 여전히 도움이 필요합니까? – SzymonM
@SzymonM 도움이 필요하십니다. 부디. –
오류가 있습니까? '$ this-> customPlugin()'을 할 때 어떤 일이 일어나는가? – SzymonM