Translated using Weblate (Italian)
[phpmyadmin.git] / libraries / vendor_config.php
blob669821025bcaac1cc0228b1dfec6bd182c115221
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 declare(strict_types=1);
14 if (! defined('PHPMYADMIN')) {
15 exit;
18 /**
19 * Path to vendor autoload file. Useful when you want to
20 * have have vendor dependencies somewhere else.
22 define('AUTOLOAD_FILE', ROOT_PATH . 'vendor/autoload.php');
24 /**
25 * Directory where cache files are stored.
27 define('TEMP_DIR', ROOT_PATH . 'tmp/');
29 /**
30 * Path to changelog file, can be gzip compressed. Useful when you want to
31 * have documentation somewhere else, eg. /usr/share/doc.
33 define('CHANGELOG_FILE', ROOT_PATH . 'ChangeLog');
35 /**
36 * Path to license file. Useful when you want to have documentation somewhere
37 * else, eg. /usr/share/doc.
39 define('LICENSE_FILE', ROOT_PATH . 'LICENSE');
41 /**
42 * Directory where SQL scripts to create/upgrade configuration storage reside.
44 define('SQL_DIR', ROOT_PATH . 'sql/');
46 /**
47 * Directory where configuration files are stored.
48 * It is not used directly in code, just a convenient
49 * define used further in this file.
51 define('CONFIG_DIR', ROOT_PATH);
53 /**
54 * Filename of a configuration file.
56 define('CONFIG_FILE', CONFIG_DIR . 'config.inc.php');
58 /**
59 * Filename of custom header file.
61 define('CUSTOM_HEADER_FILE', CONFIG_DIR . 'config.header.inc.php');
63 /**
64 * Filename of custom footer file.
66 define('CUSTOM_FOOTER_FILE', CONFIG_DIR . 'config.footer.inc.php');
68 /**
69 * Default value for check for version upgrades.
71 define('VERSION_CHECK_DEFAULT', true);
73 /**
74 * Path to files with compiled locales (*.mo)
76 define('LOCALE_PATH', ROOT_PATH . 'locale/');
78 /**
79 * Avoid referring to nonexistent files (causes warnings when open_basedir
80 * is used)
82 define('K_PATH_IMAGES', ROOT_PATH);