diff options
author | Guillaume Mazoyer <respawneral@gmail.com> | 2014-12-08 20:51:03 +0100 |
---|---|---|
committer | Guillaume Mazoyer <respawneral@gmail.com> | 2014-12-08 20:51:03 +0100 |
commit | c7861bc5ff03c1eb2b7e33d3f3a94d8a095650ab (patch) | |
tree | 240419aaa7ba0ca84878a664fea2468464d36567 /includes/config.defaults.php | |
parent | 656261727b9354fa9ecb46382888873e6eceb3a3 (diff) |
Define more default values.
Some can be set to 'null' to avoid displaying some info.
Diffstat (limited to 'includes/config.defaults.php')
-rw-r--r-- | includes/config.defaults.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/includes/config.defaults.php b/includes/config.defaults.php index d174967..24182c5 100644 --- a/includes/config.defaults.php +++ b/includes/config.defaults.php @@ -15,6 +15,12 @@ $config = array( 'custom_bootstrap_theme' => false, // CSS to use 'css' => 'css/style.css', + // Title + 'title' => 'Looking Glass', + // Image (null for no image) + 'image' => null, + // Disclaimer (null for no disclaimer) + 'disclaimer' => 'Disclaimer example', // Display the title 'show_title' => true, // Show visitor IP address @@ -23,6 +29,14 @@ $config = array( 'order' => array('routers', 'commands', 'parameters', 'buttons') ), + // Contact (both null for no contact) + 'contact' => array( + // Name of the contact + 'name' => 'Example Support', + // Email of the contact + 'mail' => 'support@example.com' + ), + // Filters 'filters' => array(), |