Translated using Weblate (Dutch)
[phpmyadmin.git] / libraries / vendor_config.php
blob17b4305a5624a41e4371545242ec18e0ade8d6a8
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 vendor autoload file. Useful when you want to
18 * have have vendor dependencies somewhere else.
20 define('AUTOLOAD_FILE', './vendor/autoload.php');
22 /**
23 * Directory where cache files are stored.
25 define('TEMP_DIR', './tmp/');
27 /**
28 * Path to changelog file, can be gzip compressed. Useful when you want to
29 * have documentation somewhere else, eg. /usr/share/doc.
31 define('CHANGELOG_FILE', './ChangeLog');
33 /**
34 * Path to license file. Useful when you want to have documentation somewhere
35 * else, eg. /usr/share/doc.
37 define('LICENSE_FILE', './LICENSE');
39 /**
40 * Directory where SQL scripts to create/upgrade configuration storage reside.
42 define('SQL_DIR', './sql/');
44 /**
45 * Directory where configuration files are stored.
46 * It is not used directly in code, just a convenient
47 * define used further in this file.
49 define('CONFIG_DIR', '');
51 /**
52 * Filename of a configuration file.
54 define('CONFIG_FILE', CONFIG_DIR . 'config.inc.php');
56 /**
57 * Filename of custom header file.
59 define('CUSTOM_HEADER_FILE', CONFIG_DIR . 'config.header.inc.php');
61 /**
62 * Filename of custom footer file.
64 define('CUSTOM_FOOTER_FILE', CONFIG_DIR . 'config.footer.inc.php');
66 /**
67 * Default value for check for version upgrades.
69 define('VERSION_CHECK_DEFAULT', true);
71 /**
72 * Path to files with compiled locales (*.mo)
74 define('LOCALE_PATH', './locale/');
76 /**
77 * Avoid referring to nonexistent files (causes warnings when open_basedir
78 * is used)
80 define('K_PATH_IMAGES', '');