info.php 807 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?php
  2. /*
  3. * ---------------------------------
  4. * How the app is being run
  5. * dev, debug, homologation, testing, production
  6. */
  7. define('APP_STATUS', 'devel');
  8. /*
  9. * ---------------------------------
  10. * Default app Lenguage
  11. * For the string files
  12. */
  13. define('APP_LANG', 'pt_br');
  14. define('CACHE_LANG', FALSE);
  15. /*
  16. * ---------------------------------
  17. * System Paths
  18. *
  19. */
  20. define('DIR_CONFIG', __DIR__.'/');
  21. define('DIR_ROOT', __DIR__.'/../');
  22. define('DIR_APP', DIR_ROOT . 'app/');
  23. /*
  24. * ---------------------------------
  25. * Template definitions
  26. *
  27. */
  28. define('TEMPLATE_DEFAULT', 'Dashboard');
  29. //define('TEMPLATE_DEFAULT', 'DefaultTemplate');
  30. define('TEMPLATE_FILETYPE', '.mustache');
  31. /*
  32. * ---------------------------------
  33. * Does a modules.ini is required
  34. *
  35. */
  36. define('INSTALL_REQUIRE', FALSE);