| 1234567891011121314151617 |
- <?php
- namespace ModulesGarden\Servers\ProxmoxCloudVps\Core\UI\Helpers;
- /**
- * Constants vars for app layouts
- *
- * @author Sławomir Miśkowicz <slawomir@modulesgarden.com>
- */
- class AppLayoutConstants
- {
- const NAVBAR_TOP = 'navbarTop';
- const NAVBAR_LEFT = 'navbarLeft';
- const NAVBAR_RIGHT = 'navbarRight';
- const NAVBAR_LEFT_THIN = 'navbarLeftThin';
- const NAVBAR_RIGHT_THIN = 'navbarRightThin';
- }
|