defines.php 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <?php
  2. /**
  3. * @package Grav\Core
  4. *
  5. * @copyright Copyright (C) 2015 - 2019 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.6.21');
  11. define('GRAV_TESTING', false);
  12. define('DS', '/');
  13. if (!defined('GRAV_PHP_MIN')) {
  14. define('GRAV_PHP_MIN', '7.1.3');
  15. }
  16. // Directories and Paths
  17. if (!defined('GRAV_ROOT')) {
  18. define('GRAV_ROOT', str_replace(DIRECTORY_SEPARATOR, DS, getcwd()));
  19. }
  20. define('ROOT_DIR', GRAV_ROOT . '/');
  21. define('USER_PATH', 'user/');
  22. define('USER_DIR', ROOT_DIR . USER_PATH);
  23. define('CACHE_DIR', ROOT_DIR . 'cache/');
  24. // DEPRECATED: Do not use!
  25. define('ASSETS_DIR', ROOT_DIR . 'assets/');
  26. define('IMAGES_DIR', ROOT_DIR . 'images/');
  27. define('ACCOUNTS_DIR', USER_DIR .'accounts/');
  28. define('PAGES_DIR', USER_DIR .'pages/');
  29. define('DATA_DIR', USER_DIR .'data/');
  30. define('SYSTEM_DIR', ROOT_DIR .'system/');
  31. define('LIB_DIR', SYSTEM_DIR .'src/');
  32. define('PLUGINS_DIR', USER_DIR .'plugins/');
  33. define('THEMES_DIR', USER_DIR .'themes/');
  34. define('VENDOR_DIR', ROOT_DIR .'vendor/');
  35. define('LOG_DIR', ROOT_DIR .'logs/');
  36. // END DEPRECATED
  37. // Some extensions
  38. define('CONTENT_EXT', '.md');
  39. define('TEMPLATE_EXT', '.html.twig');
  40. define('TWIG_EXT', '.twig');
  41. define('PLUGIN_EXT', '.php');
  42. define('YAML_EXT', '.yaml');
  43. // Content types
  44. define('RAW_CONTENT', 1);
  45. define('TWIG_CONTENT', 2);
  46. define('TWIG_CONTENT_LIST', 3);
  47. define('TWIG_TEMPLATES', 4);