-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.php
75 lines (73 loc) · 3.75 KB
/
config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?php
/**
* QRcdr - php QR Code generator
* config.php
*
* Main configuration settings
*
* PHP version 5.3+
*
* @category PHP
* @package QRcdr
* @author Nicola Franchini <[email protected]>
* @copyright 2015-2019 Nicola Franchini
* @license item sold on codecanyon https://codecanyon.net/item/qrcdr-responsive-qr-code-generator/9226839
* @link http://veno.es/qrcdr/
*/
$_CONFIG = array(
'siteName'=> 'YuanMa.IN',
'lang' => 'cn', // main language
'uploads_dir' => 'temp', // uploads directory
'qrcodes_dir' => 'qrcodes', // qr codes directory
'delete_old_files' => true, // delete periodically old files
'file_lifetime' => 24, // delete files older than..(hours) from /uploads_dir and /qrcodes_dir
'uploader' => true, // let users upload their own logo
'upload_max_filesize' => 1000, // max filesize in Kb
'thumb_size' => 130, // the size of the user's uploaded thumbnail
'qr_bgcolor' => '#FFFFFF', // default background color for generated qrcodes
'qr_color' => '#000000', // default foreground color for generated qrcodes
'session_name' => 'qrSession', // custom session name for the script
'placeholder' => 'images/placeholder.svg', // default placeholder
'link' => true, // activate link tab
'location' => false, // activate location tab
'email' => true, // activate email tab
'text' => true, // activate text tab
'tel' => true, // activate telephone tab
'sms' => true, // activate sms tab
'whatsapp' => true, // activate whatsapp tab
'wifi' => true, // activate wifi tab
'vcard' => false, // activate v-card tab
'paypal' => false, // activate PayPal tab
'bitcoin' => true, // activate BitCoin tab
'default_tab' => '#link', // available options: #link | #location | #email | #text | #sms | #wifi | #vcard | #paypal | #bitcoin | #whatsapp
'detect_browser_lang' => false, // detect browser language
'google_api_key' => 'YOUR-API-KEY', // https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key
'color_primary' => false, // main color, used for buttons and header background. set a #hex color or false to get random colors
);
/**
* QRcdr - php QR Code generator
* config.php
*
* Main configuration settings
*
* PHP version 5.3+
*
* @category PHP
* @package QRcdr
* @author Nicola Franchini <[email protected]>
* @copyright 2015-2019 Nicola Franchini
* @license item sold on codecanyon https://codecanyon.net/item/qrcdr-responsive-qr-code-generator/9226839
* @link http://veno.es/qrcdr/
*/
$_CONFIG_Menu = array(
'menu_1' => 'http://www.yuanma.in', // main language
'menu_2' => 'http://huoma.yuanma.in', // uploads directory
'menu_3' => 'http://jike.in', // qr codes directory
'menu_4' => 'http://www.shenzhenjia.net', // qr codes directory
);
$_FRIEND_LINKS = array(
'menu_1' => 'http://www.yuanma.in', // main language
'menu_2' => 'http://huoma.yuanma.in', // uploads directory
'menu_3' => 'http://jike.in', // qr codes directory
'menu_4' => 'http://www.shenzhenjia.net', // qr codes directory
);