*/ class PanelController extends ContainerAware { /** * This method renders the global Propel configuration. * * @param PropelDataCollector $collector A PropelDataCollector collector */ public function configurationAction(PropelDataCollector $collector) { $templating = $this->container->get('templating'); return $templating->renderResponse( 'PropelBundle:Panel:configuration.html.twig', array( 'configuration' => $this->container->get('propel.configuration')->getParameters(), 'default_connection' => $this->container->getParameter('propel.dbal.default_connection'), 'logging' => $this->container->getParameter('propel.logging'), 'path' => $this->container->getParameter('propel.path'), 'phing_path' => $this->container->getParameter('propel.phing_path'), ) ); } }