Skouter mortgage estimates. Web application with view written in PHP and Vue, but controller and models in Go.
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 
 
 

30 linhas
574 B

  1. <?php
  2. /**
  3. * @package Grav\Plugin\Admin
  4. *
  5. * @copyright Copyright (c) 2015 - 2023 Trilby Media, LLC. All rights reserved.
  6. * @license MIT License; see LICENSE file for details.
  7. */
  8. namespace Grav\Plugin\Admin;
  9. /**
  10. * Admin theme object
  11. *
  12. * @author RocketTheme
  13. * @license MIT
  14. */
  15. class Themes extends \Grav\Common\Themes
  16. {
  17. public function init()
  18. {
  19. /** @var Themes $themes */
  20. $themes = $this->grav['themes'];
  21. $themes->configure();
  22. $themes->initTheme();
  23. $this->grav->fireEvent('onAdminThemeInitialized');
  24. }
  25. }