defines.php 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <?php
  2. /**
  3. * @package Grav\Core
  4. *
  5. * @copyright Copyright (c) 2015 - 2021 Trilby Media, LLC. All rights reserved.
  6. * @license MIT License; see LICENSE file for details.
  7. */
  8. // Some standard defines
  9. define('GRAV', true);
  10. define('GRAV_VERSION', '1.7.10');
  11. define('GRAV_SCHEMA', '1.7.0_2020-11-20_1');
  12. define('GRAV_TESTING', false);
  13. // PHP minimum requirement
  14. if (!defined('GRAV_PHP_MIN')) {
  15. define('GRAV_PHP_MIN', '7.3.6');
  16. }
  17. // Directory separator
  18. if (!defined('DS')) {
  19. define('DS', '/');
  20. }
  21. // Directories and Paths
  22. if (!defined('GRAV_ROOT')) {
  23. $path = rtrim(str_replace(DIRECTORY_SEPARATOR, DS, getenv('GRAV_ROOT') ?: getcwd()), DS);
  24. define('GRAV_ROOT', $path);
  25. }
  26. if (!defined('GRAV_WEBROOT')) {
  27. define('GRAV_WEBROOT', GRAV_ROOT);
  28. }
  29. if (!defined('GRAV_USER_PATH')) {
  30. $path = rtrim(getenv('GRAV_USER_PATH') ?: 'user', DS);
  31. define('GRAV_USER_PATH', $path);
  32. }
  33. if (!defined('GRAV_SYSTEM_PATH')) {
  34. $path = rtrim(getenv('GRAV_SYSTEM_PATH') ?: 'system', DS);
  35. define('GRAV_SYSTEM_PATH', $path);
  36. }
  37. if (!defined('GRAV_CACHE_PATH')) {
  38. $path = rtrim(getenv('GRAV_CACHE_PATH') ?: 'cache', DS);
  39. define('GRAV_CACHE_PATH', $path);
  40. }
  41. if (!defined('GRAV_LOG_PATH')) {
  42. $path = rtrim(getenv('GRAV_LOG_PATH') ?: 'logs', DS);
  43. define('GRAV_LOG_PATH', $path);
  44. }
  45. if (!defined('GRAV_TMP_PATH')) {
  46. $path = rtrim(getenv('GRAV_TMP_PATH') ?: 'tmp', DS);
  47. define('GRAV_TMP_PATH', $path);
  48. }
  49. if (!defined('GRAV_BACKUP_PATH')) {
  50. $path = rtrim(getenv('GRAV_BACKUP_PATH') ?: 'backup', DS);
  51. define('GRAV_BACKUP_PATH', $path);
  52. }
  53. unset($path);
  54. define('USER_PATH', GRAV_USER_PATH . DS);
  55. define('CACHE_PATH', GRAV_CACHE_PATH . DS);
  56. define('ROOT_DIR', GRAV_ROOT . DS);
  57. define('USER_DIR', (!str_starts_with(USER_PATH, '/') ? GRAV_WEBROOT . '/' : '') . USER_PATH);
  58. define('CACHE_DIR', (!str_starts_with(CACHE_PATH, '/') ? ROOT_DIR : '') . CACHE_PATH);
  59. // DEPRECATED: Do not use!
  60. define('ASSETS_DIR', GRAV_WEBROOT . '/assets/');
  61. define('IMAGES_DIR', GRAV_WEBROOT . '/images/');
  62. define('ACCOUNTS_DIR', USER_DIR .'accounts/');
  63. define('PAGES_DIR', USER_DIR .'pages/');
  64. define('DATA_DIR', USER_DIR .'data/');
  65. define('PLUGINS_DIR', USER_DIR .'plugins/');
  66. define('THEMES_DIR', USER_DIR .'themes/');
  67. define('SYSTEM_DIR', (!str_starts_with(GRAV_SYSTEM_PATH, '/') ? ROOT_DIR : '') . GRAV_SYSTEM_PATH);
  68. define('LIB_DIR', SYSTEM_DIR .'src/');
  69. define('VENDOR_DIR', ROOT_DIR .'vendor/');
  70. define('LOG_DIR', (!str_starts_with(GRAV_LOG_PATH, '/') ? ROOT_DIR : '') . GRAV_LOG_PATH . DS);
  71. // END DEPRECATED
  72. // Some extensions
  73. define('CONTENT_EXT', '.md');
  74. define('TEMPLATE_EXT', '.html.twig');
  75. define('TWIG_EXT', '.twig');
  76. define('PLUGIN_EXT', '.php');
  77. define('YAML_EXT', '.yaml');
  78. // Content types
  79. define('RAW_CONTENT', 1);
  80. define('TWIG_CONTENT', 2);
  81. define('TWIG_CONTENT_LIST', 3);
  82. define('TWIG_TEMPLATES', 4);