TemplateConstants.php 370 B

12345678910111213141516
  1. <?php
  2. namespace ModulesGarden\Servers\ProxmoxVps\Core\UI\Helpers;
  3. /**
  4. * Constants vars for template paths
  5. *
  6. * @author Sławomir Miśkowicz <slawomir@modulesgarden.com>
  7. */
  8. class TemplateConstants
  9. {
  10. const ADMIN_PATH = 'admin';
  11. const CLIENT_PATH = 'client' . DS . 'default';
  12. const MAIN_DIR = 'ui';
  13. const DEFAULT_SET_DIR = 'default';
  14. }