Updating the config sample

This commit is contained in:
Tom Slominski
2015-03-02 19:24:58 +00:00
parent 9d34d89f27
commit dacca1f8d8

View File

@@ -1,16 +1,17 @@
<?php <?php
// Copy and rename your file to config.php in this directory to edit your settings // Copy and rename your file to config.php in the /public/ directory to edit your settings
// 0, FALSE or '' to disable
// Pretty much everything else to enable, such as 1, TRUE or any string
// General settings // GENERAL SETTINGS
// 1 to enable, 0 to disable
ISQ::$general = array( ISQ::$general = array(
'name' => 'URL shortener', // The name of your URL shortener 'name' => 'URL shortener', // The name of your URL shortener
'qr' => 1, // Do you want to display a QR code? 'qr' => TRUE, // Do you want to display a QR code?
'clipboard' => 1 // Do you want to enable zeroClipboard? (uses flash) 'clipboard' => 1 // Do you want to enable zeroClipboard? (uses flash)
); );
// Menu links // MENU LINKS
// Add more comma seperated arrays to add more links // Add more comma seperated arrays to add more links
ISQ::$links = array( ISQ::$links = array(
array( array(
@@ -27,17 +28,16 @@ ISQ::$links = array(
) )
); );
// Social sharing // SOCIAL SHARING
// 1 to enable, 0 to disable
ISQ::$social = array( ISQ::$social = array(
'facebook' => 1, 'facebook' => TRUE,
'twitter' => 1, 'twitter' => TRUE,
'plus' => 1, 'plus' => TRUE,
'linkedin' => 1, 'linkedin' => TRUE,
'tumblr' => 1 'tumblr' => TRUE
); );
// reCAPTCHA API keys // reCAPTCHA API KEYS
// Get yourls from https://www.google.com/recaptcha/admin // Get yourls from https://www.google.com/recaptcha/admin
ISQ::$recaptcha = array( ISQ::$recaptcha = array(
'sitekey' => '', 'sitekey' => '',