User_Schema class : removed tabs + commented code + organized structure, Delete listi...
[phpmyadmin-themes.git] / libraries / vendor_config.php
blob35b6dea377f134daff627313ad08746e922066f7
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 * @version $Id$
11 * @package phpMyAdmin
14 /**
15 * Path to changelog file, can be gzip compressed. Useful when you want to
16 * have documentation somewhere else, eg. /usr/share/doc.
18 define('CHANGELOG_FILE', './ChangeLog');
20 /**
21 * Path to license file. Useful when you want to have documentation somewhere
22 * else, eg. /usr/share/doc.
24 define('LICENSE_FILE', './LICENSE');
26 /**
27 * Path to config file generated using setup script.
29 define('SETUP_CONFIG_FILE', './config/config.inc.php');
31 /**
32 * Whether setup requires writable directory where config
33 * file will be generated.
35 define('SETUP_DIR_WRITABLE', true);
37 /**
38 * Directory where configuration files are stored.
39 * It is not used directly in code, just a convenient
40 * define used further in this file.
42 define('CONFIG_DIR', './');
44 /**
45 * Filename of a configuration file.
47 define('CONFIG_FILE', CONFIG_DIR . 'config.inc.php');
49 /**
50 * Filename of custom header file.
52 define('CUSTOM_HEADER_FILE', CONFIG_DIR . 'config.header.inc.php');
54 /**
55 * Filename of custom footer file.
57 define('CUSTOM_FOOTER_FILE', CONFIG_DIR . 'config.footer.inc.php');