Files
infinity-squared/public/config.php

49 lines
1.1 KiB
PHP
Raw Normal View History

2011-11-27 16:33:47 +00:00
<?php
2011-11-30 17:41:02 +00:00
// General settings
// 1 to enable, 0 to disable
ISQ::$general = array(
2012-08-29 14:54:13 +01:00
'name' => 'kwl.me', // The name of your URL shortener
'qr' => 1, // Do you want to display a QR code?
2013-08-30 22:49:35 +01:00
<<<<<<< HEAD
'mobile' => 0, // Do you want to enable the mobile version?
'clipboard' => 1 // Do you want to enable zeroClipboard? (uses flash)
=======
2013-08-14 21:39:47 +01:00
'mobile' => 0 // Do you want to enable the mobile version?
2013-08-30 22:49:35 +01:00
>>>>>>> 656a0c985880d87881d8ab157da0e848527f4c49
2011-11-30 17:41:02 +00:00
);
2011-11-27 16:33:47 +00:00
2011-11-30 17:41:02 +00:00
// Menu- The width of ∞² menu allows you to have about 10 links
// Leave empty to disable
ISQ::$links = array(
2013-02-27 21:48:15 +00:00
'name_1' => 'Tom Slominski',
2012-08-29 14:54:13 +01:00
'url_1' => 'http://tomslominski.net/',
'name_2' => 'Get ∞²!',
2013-02-27 21:48:15 +00:00
'url_2' => 'https://github.com/tomslominski/infinity-squared/',
2011-11-30 17:41:02 +00:00
'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
);
2011-11-27 16:33:47 +00:00
?>