I\'ve just started using symfony and I\'d like to get a list of bundles from a particular vendor, iterate through them and call a $bundle->renderSomething() function on each def
If you have container object available then you can get array of the enabled bundles by $this->container->getParameter('kernel.bundles');
container
$this->container->getParameter('kernel.bundles');