Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ZF2 how to get entity Manager from outside of controller

we can access entity manager within controller using $this->getServiceLocator()->get('doctrine.entitymanager.orm_default');

but how can we access entity manager singleton instance in rest of the project in Zendframework 2.

like image 252
Developer Avatar asked Aug 08 '12 14:08

Developer


1 Answers

The 'right' way to do it is use a factory to inject the entity manager into any classes that need it. Classes, other than factories, shouldn't really be aware of the ServiceLocator. So, your module config would look like this:

 'controllers' => array(
     'factories' => array(
          'mycontroller' => 'My\Namespace\MyControllerFactory'
     )
 )

Then your factory class would look something like this:

use Zend\ServiceManager\FactoryInterface;
use Zend\ServiceManager\ServiceLocatorInterface;

class MyControllerFactory implements FactoryInterface
{

    public function createService(ServiceLocatorInterface $serviceLocator)
    {
        $serviceLocator = $serviceLocator->getServiceLocator();

        $myController = new MyController;
        $myController->setEntityManager(
            $serviceLocator->get('doctrine.entitymanager.orm_default')
        );

        return $myController;
    }
}

Follow the same pattern for any other classes that need to consume the entity manager.

If, you have lots and lots of classes that consume the entity manager, you might want to consider adding your own Initalizer to the SerivceManager that will inject the entity manager without the need for a factory.

like image 50
superdweebie Avatar answered Jan 04 '23 04:01

superdweebie