gitextract_6dcvqnm8/ ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── CONTRIBUTING.md │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE.md │ ├── PULL_REQUEST_TEMPLATE.md │ └── workflows/ │ └── linting.yaml ├── .gitignore ├── .php_cs ├── AdminLTEBundle.php ├── CONTRIBUTING.md ├── Controller/ │ ├── BreadcrumbController.php │ ├── EmitterController.php │ ├── NavbarController.php │ └── SidebarController.php ├── DependencyInjection/ │ ├── AdminLTEExtension.php │ ├── Compiler/ │ │ └── TwigPass.php │ └── Configuration.php ├── Event/ │ ├── BreadcrumbMenuEvent.php │ ├── KnpMenuEvent.php │ ├── MenuEvent.php │ ├── MessageListEvent.php │ ├── NavbarUserEvent.php │ ├── NotificationListEvent.php │ ├── ShowUserEvent.php │ ├── SidebarMenuEvent.php │ ├── SidebarUserEvent.php │ ├── TaskListEvent.php │ ├── ThemeEvent.php │ └── ThemeEvents.php ├── Helper/ │ ├── Constants.php │ └── ContextHelper.php ├── LICENSE ├── Menu/ │ └── MenuBuilder.php ├── Model/ │ ├── MenuItemInterface.php │ ├── MenuItemModel.php │ ├── MessageInterface.php │ ├── MessageModel.php │ ├── NavBarUserLink.php │ ├── NotificationInterface.php │ ├── NotificationModel.php │ ├── TaskInterface.php │ ├── TaskModel.php │ ├── UserDetailsInterface.php │ ├── UserInterface.php │ └── UserModel.php ├── README.md ├── Repository/ │ ├── MessageRepositoryInterface.php │ ├── NotificationRepositoryInterface.php │ └── TaskRepositoryInterface.php ├── Resources/ │ ├── assets/ │ │ ├── admin-lte-extensions.scss │ │ ├── admin-lte.js │ │ └── admin-lte.scss │ ├── config/ │ │ ├── container/ │ │ │ └── knp-menu.yml │ │ └── services.yml │ ├── docs/ │ │ ├── README.md │ │ ├── breadcrumbs.md │ │ ├── bundle_options.md │ │ ├── component_events.md │ │ ├── configurations.md │ │ ├── control_sidebar.md │ │ ├── extend_webpack_encore.md │ │ ├── form_theme.md │ │ ├── fos_userbundle.md │ │ ├── frontend_assets.md │ │ ├── knp_menu.md │ │ ├── layout.md │ │ ├── migration_guide.md │ │ ├── navbar_messages.md │ │ ├── navbar_notifications.md │ │ ├── navbar_tasks.md │ │ ├── navbar_user.md │ │ ├── sidebar_navigation.md │ │ ├── sidebar_user.md │ │ └── twig_widgets.md │ ├── public/ │ │ ├── adminlte.css │ │ ├── adminlte.js │ │ ├── adminlte.js.LICENSE.txt │ │ ├── entrypoints.json │ │ └── manifest.json │ ├── translations/ │ │ ├── AdminLTEBundle.ar.xliff │ │ ├── AdminLTEBundle.cs.xliff │ │ ├── AdminLTEBundle.da.xliff │ │ ├── AdminLTEBundle.de.xliff │ │ ├── AdminLTEBundle.el.xliff │ │ ├── AdminLTEBundle.en.xliff │ │ ├── AdminLTEBundle.eo.xliff │ │ ├── AdminLTEBundle.es.xliff │ │ ├── AdminLTEBundle.eu.xliff │ │ ├── AdminLTEBundle.fi.xliff │ │ ├── AdminLTEBundle.fr.xliff │ │ ├── AdminLTEBundle.he.xliff │ │ ├── AdminLTEBundle.hr.xliff │ │ ├── AdminLTEBundle.it.xliff │ │ ├── AdminLTEBundle.ja.xliff │ │ ├── AdminLTEBundle.nl.xliff │ │ ├── AdminLTEBundle.pl.xliff │ │ ├── AdminLTEBundle.pt_BR.xliff │ │ ├── AdminLTEBundle.ro.xliff │ │ ├── AdminLTEBundle.ru.xliff │ │ ├── AdminLTEBundle.sk.xliff │ │ ├── AdminLTEBundle.sv.xliff │ │ ├── AdminLTEBundle.tr.xliff │ │ └── AdminLTEBundle.zh_CN.xliff │ └── views/ │ ├── Breadcrumb/ │ │ ├── breadcrumb.html.twig │ │ └── knp-breadcrumb.html.twig │ ├── Exception/ │ │ └── exception_full.html.twig │ ├── FOSUserBundle/ │ │ ├── Registration/ │ │ │ ├── confirmed.html.twig │ │ │ └── register.html.twig │ │ ├── Resetting/ │ │ │ └── request.html.twig │ │ ├── Security/ │ │ │ └── login.html.twig │ │ └── layout.html.twig │ ├── Macros/ │ │ ├── buttons.html.twig │ │ ├── default.html.twig │ │ └── menu.html.twig │ ├── Navbar/ │ │ ├── messages.html.twig │ │ ├── notifications.html.twig │ │ ├── tasks.html.twig │ │ └── user.html.twig │ ├── Partials/ │ │ ├── _control-sidebar.html.twig │ │ ├── _flash_messages.html.twig │ │ ├── _footer.html.twig │ │ └── _menu.html.twig │ ├── Sidebar/ │ │ ├── knp-menu.html.twig │ │ ├── menu.html.twig │ │ ├── search-form.html.twig │ │ └── user-panel.html.twig │ ├── Widgets/ │ │ ├── box-widget.html.twig │ │ └── infobox-widget.html.twig │ └── layout/ │ ├── default-layout-avanzu.html.twig │ ├── default-layout.html.twig │ ├── form-theme-base.html.twig │ ├── form-theme-horizontal.html.twig │ ├── form-theme-security.html.twig │ ├── form-theme.html.twig │ ├── login-layout-avanzu.html.twig │ └── security-layout.html.twig ├── Tests/ │ ├── Controller/ │ │ └── NavbarControllerTest.php │ ├── DependencyInjection/ │ │ └── ConfigurationTest.php │ ├── Event/ │ │ ├── MessageListEventTest.php │ │ ├── NotificationListEventTest.php │ │ └── TaskListEventTest.php │ ├── Helper/ │ │ └── ContextHelperTest.php │ ├── Model/ │ │ ├── MessageModelTest.php │ │ ├── NotificationModelTest.php │ │ ├── TaskModelTest.php │ │ └── UserModelTest.php │ ├── Twig/ │ │ ├── AdminExtensionTest.php │ │ └── RuntimeExtensionTest.php │ └── phpstan.neon ├── Twig/ │ ├── AdminExtension.php │ ├── EventsExtension.php │ └── RuntimeExtension.php ├── UPGRADING.md ├── composer.json ├── config/ │ └── packages/ │ └── admin_lte.yaml ├── package.json ├── phpstan.neon ├── phpunit.xml.dist └── webpack.config.js