问题
I extends "SonataAdminBundle::standard_layout.html.twig and it show me admin theme without header/menu. After the debug code "admin_pool" is not defined I passed from admin_pool from the controller but still not defined.
Can you please tell me what am I missing?
回答1:
I solved header's problem myself using below code
$admin_pool = $this->get('sonata.admin.pool');
return $this->render('ProjectBundle:Controller:page.html.twig',
array('admin_pool' => $admin_pool));
来源:https://stackoverflow.com/questions/22760603/sonata-admin-no-header