Translated using Weblate (Chinese (Traditional))
[phpmyadmin.git] / libraries / vendor_config.php
blobe07aaf1fe47e17d239f1265c99f3b7a77561aea7
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 distributions 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
12 if (! defined('PHPMYADMIN')) {
13 exit;
16 /**
17 * Path to changelog file, can be gzip compressed. Useful when you want to
18 * have documentation somewhere else, eg. /usr/share/doc.
20 define('CHANGELOG_FILE', './ChangeLog');
22 /**
23 * Path to license file. Useful when you want to have documentation somewhere
24 * else, eg. /usr/share/doc.
26 define('LICENSE_FILE', './LICENSE');
28 /**
29 * Directory where SQL scripts to create/upgrade configuration storage reside.
31 define('SQL_DIR', './sql/');
33 /**
34 * Directory where configuration files are stored.
35 * It is not used directly in code, just a convenient
36 * define used further in this file.
38 define('CONFIG_DIR', '');
40 /**
41 * Filename of a configuration file.
43 define('CONFIG_FILE', CONFIG_DIR . 'config.inc.php');
45 /**
46 * Filename of custom header file.
48 define('CUSTOM_HEADER_FILE', CONFIG_DIR . 'config.header.inc.php');
50 /**
51 * Filename of custom footer file.
53 define('CUSTOM_FOOTER_FILE', CONFIG_DIR . 'config.footer.inc.php');
55 /**
56 * Default value for check for version upgrades.
58 define('VERSION_CHECK_DEFAULT', true);
60 /**
61 * Path to files with compiled locales (*.mo)
63 define('LOCALE_PATH', './locale/');
65 /**
66 * Avoid referring to nonexistent files (causes warnings when open_basedir
67 * is used)
69 define('K_PATH_IMAGES', '');