Upgraded phpmyadmin to 4.0.4 (All Languages) - No modifications yet
[openemr.git] / phpmyadmin / libraries / vendor_config.php
blob92356f3aef1c173850d58ae858857b806343e559
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
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 * Path to config file generated using setup script.
31 define('SETUP_CONFIG_FILE', './config/config.inc.php');
33 /**
34 * Whether setup requires writable directory where config
35 * file will be generated.
37 define('SETUP_DIR_WRITABLE', true);
39 /**
40 * Directory where configuration files are stored.
41 * It is not used directly in code, just a convenient
42 * define used further in this file.
44 define('CONFIG_DIR', './');
46 /**
47 * Filename of a configuration file.
49 define('CONFIG_FILE', CONFIG_DIR . 'config.inc.php');
51 /**
52 * Filename of custom header file.
54 define('CUSTOM_HEADER_FILE', CONFIG_DIR . 'config.header.inc.php');
56 /**
57 * Filename of custom footer file.
59 define('CUSTOM_FOOTER_FILE', CONFIG_DIR . 'config.footer.inc.php');
61 /**
62 * Default value for check for version upgrades.
64 define('VERSION_CHECK_DEFAULT', true);
66 /**
67 * Path to gettext.inc file. Useful when you want php-gettext somewhere else,
68 * eg. /usr/share/php/gettext/gettext.inc.
70 define('GETTEXT_INC', './libraries/php-gettext/gettext.inc');
71 /**
72 * Path to tcpdf.php file. Useful when you want to use system tcpdf,
73 * eg. /usr/share/php/tcpdf/tcpdf.php.
75 define('TCPDF_INC', './libraries/tcpdf/tcpdf.php');