summaryrefslogtreecommitdiff
path: root/includes/config.defaults.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/config.defaults.php')
-rw-r--r--includes/config.defaults.php14
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(),