Skouter mortgage estimates. Web application with view written in PHP and Vue, but controller and models in Go.
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 
 
 

30 wiersze
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. }