define.php 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?php
  2. ###
  3. # @name Define
  4. # @copyright 2014 by Tobias Reich
  5. ###
  6. # Define root
  7. define('LYCHEE', substr(__DIR__, 0, -3));
  8. # Define dirs
  9. define('LYCHEE_DATA', LYCHEE . 'data/');
  10. define('LYCHEE_BUILD', LYCHEE . 'build/');
  11. define('LYCHEE_UPLOADS', LYCHEE . 'uploads/');
  12. define('LYCHEE_UPLOADS_BIG', LYCHEE_UPLOADS . 'big/');
  13. define('LYCHEE_UPLOADS_MEDIUM', LYCHEE_UPLOADS . 'medium/');
  14. define('LYCHEE_UPLOADS_THUMB', LYCHEE_UPLOADS . 'thumb/');
  15. define('LYCHEE_UPLOADS_IMPORT', LYCHEE_UPLOADS . 'import/');
  16. define('LYCHEE_PLUGINS', LYCHEE . 'plugins/');
  17. # Define files
  18. define('LYCHEE_CONFIG_FILE', LYCHEE_DATA . 'config.php');
  19. # Define urls
  20. define('LYCHEE_URL_UPLOADS_BIG', 'uploads/big/');
  21. define('LYCHEE_URL_UPLOADS_MEDIUM', 'uploads/medium/');
  22. define('LYCHEE_URL_UPLOADS_THUMB', 'uploads/thumb/');
  23. function defineTablePrefix($dbTablePrefix) {
  24. # This part is wrapped into a function, because it needs to be called
  25. # after the config-file has been loaded. Other defines are also available
  26. # before the config-file has been loaded.
  27. # Parse table prefix
  28. # Old users do not have the table prefix stored in their config-file
  29. if (!isset($dbTablePrefix)||$dbTablePrefix==='') $dbTablePrefix = '';
  30. else $dbTablePrefix .= '_';
  31. # Define tables
  32. define('LYCHEE_TABLE_ALBUMS', $dbTablePrefix . 'lychee_albums');
  33. define('LYCHEE_TABLE_LOG', $dbTablePrefix . 'lychee_log');
  34. define('LYCHEE_TABLE_PHOTOS', $dbTablePrefix . 'lychee_photos');
  35. define('LYCHEE_TABLE_SETTINGS', $dbTablePrefix . 'lychee_settings');
  36. }
  37. ?>