Files
infinity-squared/public/config.php
Tom Slominski db53128170 1.2
2011-11-30 17:41:02 +00:00

43 lines
807 B
PHP

<?php
// General settings
// 1 to enable, 0 to disable
ISQ::$general = array(
'name' => 'Edit public/config.php to set up ∞²', // The name of your URL shortener
'qr' => 1 // Do you want to display a QR code?
);
// Menu- The width of ∞² menu allows you to have about 10 links
// Leave empty to disable
ISQ::$links = array(
'name_1' => '',
'url_1' => '',
'name_2' => '',
'url_2' => '',
'name_3' => '',
'url_3' => '',
'name_4' => '',
'url_4' => '',
'name_5' => '',
'url_5' => '',
'name_6' => '',
'url_6' => '',
'name_7' => '',
'url_7' => '',
'name_8' => '',
'url_8' => '',
'name_9' => '',
'url_9' => '',
'name_10' => '',
'url_10' => ''
);
// Social sharing
// 1 to enable, 0 to disable
ISQ::$social = array(
'facebook' => 1,
'twitter' => 1,
'plus' => 1,
'linkedin' => 1
);
?>