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.

27 lines
503 B

4 years ago
  1. <?php
  2. namespace Wms\Menu\Controllers;
  3. use Backend\Classes\Controller;
  4. /**
  5. * Settings controller
  6. *
  7. * @package october\system
  8. * @author Alexey Bobkov, Samuel Georges
  9. *
  10. */
  11. class Index extends Controller
  12. {
  13. public function __construct()
  14. {
  15. parent::__construct();
  16. \BackendMenu::setContext('Wms.Menu', 'main');
  17. }
  18. public function index()
  19. {
  20. $this->pageTitle = 'wms.menu::plugin.name';
  21. $this->bodyClass = 'compact-container sidenav-tree-root';
  22. }
  23. }