You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

92 satır
3.7KB

  1. <?php
  2. namespace Lc\SovBundle\Controller\Admin;
  3. use EasyCorp\Bundle\EasyAdminBundle\Config\Assets;
  4. use EasyCorp\Bundle\EasyAdminBundle\Config\Crud;
  5. use EasyCorp\Bundle\EasyAdminBundle\Config\Dashboard;
  6. use EasyCorp\Bundle\EasyAdminBundle\Config\MenuItem;
  7. use EasyCorp\Bundle\EasyAdminBundle\Config\UserMenu;
  8. use EasyCorp\Bundle\EasyAdminBundle\Controller\AbstractDashboardController;
  9. use Lc\SovBundle\Doctrine\EntityManager;
  10. use Symfony\Component\Security\Core\User\UserInterface;
  11. use Symfony\Component\HttpFoundation\Response;
  12. use Symfony\Component\Routing\Annotation\Route;
  13. class DashboardController extends AbstractDashboardController
  14. {
  15. public function index(): Response
  16. {
  17. return $this->render('@LcSov/adminlte/dashboard.html.twig');
  18. }
  19. public function configureDashboard(): Dashboard
  20. {
  21. return Dashboard::new()
  22. // the name visible to end users
  23. ->setTitle('LA CLIC !')
  24. // you can include HTML contents too (e.g. to link to an image)
  25. ->setTitle('<img src="assets/img/laclic.png" width="100px">')
  26. // the path defined in this method is passed to the Twig asset() function
  27. ->setFaviconPath('favicon.svg')
  28. // the domain used by default is 'messages'
  29. ->setTranslationDomain('lcadmin');
  30. }
  31. public function configureAssets(): Assets
  32. {
  33. $assets = parent::configureAssets();
  34. $assets->addWebpackEncoreEntry('adminlte-common');
  35. return $assets;
  36. }
  37. public function configureUserMenu(UserInterface $user): UserMenu
  38. {
  39. // Usually it's better to call the parent method because that gives you a
  40. // user menu with some menu items already created ("sign out", "exit impersonation", etc.)
  41. // if you prefer to create the user menu from scratch, use: return UserMenu::new()->...
  42. return parent::configureUserMenu($user)
  43. // use the given $user object to get the user name
  44. ->setName($user->getName())
  45. // use this method if you don't want to display the name of the user
  46. //->displayUserName(false)
  47. ->displayUserAvatar(false)
  48. // you can also pass an email address to use gravatar's service
  49. ->setGravatarEmail($user->getEmail())
  50. // you can use any type of menu item, except submenus
  51. ->setMenuItems(
  52. [
  53. //MenuItem::linkToRoute('My Profile', 'fa fa-id-card', '', ['...' => '...']),
  54. //MenuItem::section(),
  55. MenuItem::linkToLogout('Déconnexion', 'fa fa-sign-out'),
  56. ]
  57. );
  58. }
  59. public function configureCrud(): Crud
  60. {
  61. $crud = Crud::new();
  62. return $crud
  63. ->overrideTemplates(
  64. [
  65. 'layout' => '@LcSov/adminlte/layout.html.twig',
  66. 'main_menu' => '@LcSov/adminlte/block/menu.html.twig',
  67. 'crud/index' => '@LcSov/adminlte/crud/index.html.twig',
  68. 'crud/paginator' => '@LcSov/adminlte/crud/paginator.html.twig',
  69. 'crud/edit' => '@LcSov/adminlte/crud/edit.html.twig',
  70. 'crud/new' => '@LcSov/adminlte/crud/new.html.twig',
  71. ]
  72. )
  73. ->setFormThemes(
  74. [
  75. '@LcSov/adminlte/crud/form_theme.html.twig',
  76. '@FOSCKEditor/Form/ckeditor_widget.html.twig'
  77. ]
  78. );
  79. }
  80. }