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.

97 lines
4.0KB

  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. $assets->addWebpackEncoreEntry('adminlte-index');
  36. $assets->addWebpackEncoreEntry('adminlte-form');
  37. $assets->addWebpackEncoreEntry('adminlte-sort');
  38. return $assets;
  39. }
  40. public function configureUserMenu(UserInterface $user): UserMenu
  41. {
  42. // Usually it's better to call the parent method because that gives you a
  43. // user menu with some menu items already created ("sign out", "exit impersonation", etc.)
  44. // if you prefer to create the user menu from scratch, use: return UserMenu::new()->...
  45. return parent::configureUserMenu($user)
  46. // use the given $user object to get the user name
  47. ->setName($user->getName())
  48. // use this method if you don't want to display the name of the user
  49. //->displayUserName(false)
  50. ->displayUserAvatar(false)
  51. // you can also pass an email address to use gravatar's service
  52. ->setGravatarEmail($user->getEmail())
  53. // you can use any type of menu item, except submenus
  54. ->setMenuItems(
  55. [
  56. //MenuItem::linkToRoute('My Profile', 'fa fa-id-card', '', ['...' => '...']),
  57. MenuItem::linkToLogout('Déconnexion', 'sign-out-alt'),
  58. //MenuItem::linkToLogout('Déconnexion', 'sign-out-alt')
  59. ]
  60. );
  61. }
  62. public function configureCrud(): Crud
  63. {
  64. $crud = Crud::new();
  65. return $crud
  66. ->overrideTemplates(
  67. [
  68. 'layout' => '@LcSov/adminlte/layout.html.twig',
  69. 'main_menu' => '@LcSov/adminlte/block/menu.html.twig',
  70. 'crud/index' => '@LcSov/adminlte/crud/index.html.twig',
  71. 'crud/paginator' => '@LcSov/adminlte/crud/paginator.html.twig',
  72. 'crud/edit' => '@LcSov/adminlte/crud/edit.html.twig',
  73. 'crud/new' => '@LcSov/adminlte/crud/new.html.twig',
  74. //'crud/action' => '@LcSov/adminlte/crud/action/action.html.twig',
  75. ]
  76. )
  77. ->setFormThemes(
  78. [
  79. '@LcSov/adminlte/crud/form_theme.html.twig',
  80. '@FOSCKEditor/Form/ckeditor_widget.html.twig'
  81. ]
  82. );
  83. }
  84. }