vendor_config.php 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <?php
  2. /* vim: set expandtab sw=4 ts=4 sts=4: */
  3. /**
  4. * File for vendor customisation, you can change here paths or some behaviour,
  5. * which vendors such as Linux distibutions might want to change.
  6. *
  7. * For changing this file you should know what you are doing. For this reason
  8. * options here are not part of normal configuration.
  9. *
  10. * @package PhpMyAdmin
  11. */
  12. if (! defined('PHPMYADMIN')) {
  13. exit;
  14. }
  15. /**
  16. * Path to changelog file, can be gzip compressed. Useful when you want to
  17. * have documentation somewhere else, eg. /usr/share/doc.
  18. */
  19. define('CHANGELOG_FILE', './ChangeLog');
  20. /**
  21. * Path to license file. Useful when you want to have documentation somewhere
  22. * else, eg. /usr/share/doc.
  23. */
  24. define('LICENSE_FILE', './LICENSE');
  25. /**
  26. * Directory where configuration files are stored.
  27. * It is not used directly in code, just a convenient
  28. * define used further in this file.
  29. */
  30. define('CONFIG_DIR', './');
  31. /**
  32. * Filename of a configuration file.
  33. */
  34. define('CONFIG_FILE', CONFIG_DIR . 'config.inc.php');
  35. /**
  36. * Filename of custom header file.
  37. */
  38. define('CUSTOM_HEADER_FILE', CONFIG_DIR . 'config.header.inc.php');
  39. /**
  40. * Filename of custom footer file.
  41. */
  42. define('CUSTOM_FOOTER_FILE', CONFIG_DIR . 'config.footer.inc.php');
  43. /**
  44. * Default value for check for version upgrades.
  45. */
  46. define('VERSION_CHECK_DEFAULT', true);
  47. /**
  48. * Path to gettext.inc file. Useful when you want php-gettext somewhere else,
  49. * eg. /usr/share/php/gettext/gettext.inc.
  50. */
  51. define('GETTEXT_INC', './libraries/php-gettext/gettext.inc');
  52. /**
  53. * Path to tcpdf.php file. Useful when you want to use system tcpdf,
  54. * eg. /usr/share/php/tcpdf/tcpdf.php.
  55. */
  56. define('TCPDF_INC', './libraries/tcpdf/tcpdf.php');
  57. ?>