defines.php 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?php
  2. // Some standard defines
  3. define('GRAV', true);
  4. define('GRAV_VERSION', '1.0.0-rc.4');
  5. define('DS', '/');
  6. // Directories and Paths
  7. if (!defined('GRAV_ROOT')) {
  8. define('GRAV_ROOT', str_replace(DIRECTORY_SEPARATOR, DS, getcwd()));
  9. }
  10. define('ROOT_DIR', GRAV_ROOT . '/');
  11. define('USER_PATH', 'user/');
  12. define('USER_DIR', ROOT_DIR . USER_PATH);
  13. define('SYSTEM_DIR', ROOT_DIR .'system/');
  14. define('CACHE_DIR', ROOT_DIR . 'cache/');
  15. define('LOG_DIR', ROOT_DIR .'logs/');
  16. // DEPRECATED: Do not use!
  17. define('ASSETS_DIR', ROOT_DIR . 'assets/');
  18. define('IMAGES_DIR', ROOT_DIR . 'images/');
  19. define('ACCOUNTS_DIR', USER_DIR .'accounts/');
  20. define('PAGES_DIR', USER_DIR .'pages/');
  21. define('DATA_DIR', USER_DIR .'data/');
  22. define('LIB_DIR', SYSTEM_DIR .'src/');
  23. define('PLUGINS_DIR', USER_DIR .'plugins/');
  24. define('THEMES_DIR', USER_DIR .'themes/');
  25. define('VENDOR_DIR', ROOT_DIR .'vendor/');
  26. // END DEPRECATED
  27. // Some extensions
  28. define('CONTENT_EXT', '.md');
  29. define('TEMPLATE_EXT', '.html.twig');
  30. define('TWIG_EXT', '.twig');
  31. define('PLUGIN_EXT', '.php');
  32. define('YAML_EXT', '.yaml');
  33. // Content types
  34. define('RAW_CONTENT', 1);
  35. define('TWIG_CONTENT', 2);
  36. define('TWIG_CONTENT_LIST', 3);
  37. define('TWIG_TEMPLATES', 4);