Symfony2 allow you to create your own console command thru Console Component. Since the bundle i’m writing is only for my own use, i’m trying to write a console command to load all my data to database. But to get the Doctrine entity manager to work in console command you need to do some modification from the tutorial link above. No worry i promise it’s a easy task, just edit one of the namespace will do.
To get Doctrine Manager in Console Command (Symfony2), follow the steps below:-
Advertisements
- In your namespace section, look for
use Symfony\Component\Console\Command\Command;
and replace it with
use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand;
- Once done, you can get your Doctrine Manager thru the code below:-
$em = $this->getContainer()->get('doctrine')->getManager();
Related posts:
Prestashop 1.6: "Unexpected token <" error when upload category thumbnail
How to set out of office auto responder in Zimbra
CPAN Error: make test had returned bad status, won't install without force
Cynogenmod: No Vibration when Receiving SMS
Contact Form 7: Clear all field except specific after submission
How to install apache, php, mysql with macport in Mac OS X
How to svn thru ssh in Linux / Mac
WordPress: How to remove meta generator tag?
Share this with your friends:-
Thank you!
Doesn’t work in Symfony 2.3