是否可以从表单/控制器工厂(任何实现FactoryInterface的工厂)访问控制器插件?
我有一个表单工厂,我想根据请求参数设置表单操作,但需要从config中定义的路由访问URL。
所以在控制器中我会使用url控制器插件:
$form->setAttribute('action', $this->url()->fromRoute('appointment.add', array('clientId' => $clientId)));
...我如何在工厂中访问它?例如:
class MyFormFactory implements FactoryInterface
{
public function createService(ServiceLocatorInterface $serviceLocator){
$serviceManager = $serviceLocator->getServiceLocator();
//...snip...
$form = new AddAppointmentForm($client);
$serviceManager->get('ControllerPluginManager');
$url = $controllerPluginManager->get('Url');
die($url->fromRoute('appointment.add', ['clientId' => $clientId]));
return $form;
}
答案 0 :(得分:1)
在非控制器环境中使用控制器插件不是一个好习惯。
要使用ZF2路由器组装URL,您只需使用ServiceManager
中也可用的路由器。
$router = $serviceManager->get('HttpRouter');
$url = $router->assemble(['clientId' => $clientId], ['name' => 'appointment.add']);
答案 1 :(得分:0)
您可以在工厂中创建\ Zend \ Mvc \ Controller \ PluginManager的实例,并且可以轻松获取所需的网址或插件。只是一个小问题,你不能在你的插件管理器中设置你的控制器。因此,依赖于控制器的插件将无法正常工作。