Translated using Weblate.
[phpmyadmin.git] / libraries / vendor_config.php
blobd24b5ce9435d3e5f17b71d315d945819e89285b9
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.
7 * For changing this file you should know what you are doing. For this reason
8 * options here are not part of normal configuration.
10 * @package PhpMyAdmin
13 /**
14 * Path to changelog file, can be gzip compressed. Useful when you want to
15 * have documentation somewhere else, eg. /usr/share/doc.
17 define('CHANGELOG_FILE', './ChangeLog');
19 /**
20 * Path to license file. Useful when you want to have documentation somewhere
21 * else, eg. /usr/share/doc.
23 define('LICENSE_FILE', './LICENSE');
25 /**
26 * Path to config file generated using setup script.
28 define('SETUP_CONFIG_FILE', './config/config.inc.php');
30 /**
31 * Whether setup requires writable directory where config
32 * file will be generated.
34 define('SETUP_DIR_WRITABLE', true);
36 /**
37 * Directory where configuration files are stored.
38 * It is not used directly in code, just a convenient
39 * define used further in this file.
41 define('CONFIG_DIR', './');
43 /**
44 * Filename of a configuration file.
46 define('CONFIG_FILE', CONFIG_DIR . 'config.inc.php');
48 /**
49 * Filename of custom header file.
51 define('CUSTOM_HEADER_FILE', CONFIG_DIR . 'config.header.inc.php');
53 /**
54 * Filename of custom footer file.
56 define('CUSTOM_FOOTER_FILE', CONFIG_DIR . 'config.footer.inc.php');
58 /**
59 * Default value for check for version upgrades.
61 define('VERSION_CHECK_DEFAULT', true);
63 /**
64 * Path to gettext.inc file. Useful when you want php-gettext somewhere else,
65 * eg. /usr/share/php/gettext/gettext.inc.
67 define('GETTEXT_INC', './libraries/php-gettext/gettext.inc');