-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzthumb-config.php
58 lines (52 loc) · 1.65 KB
/
zthumb-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
<?php
// $watermark = file_get_contents('image_watermark.data');
$DEFAULT_IMAGE = 'error.jpg';
$SITE_WATERMARKS = [
'' => 'watermark_vth.png',
'default' => 'watermark_vth.png',
'vth' => 'watermark_vth.png',
'vthcom' => 'watermark_vthcom.png',
'vthcomvn' => 'watermark_vthcomvn.png',
'dn' => 'watermark_dn.png',
'bd' => 'watermark_bd.png',
'bdcomvn' => 'watermark_bdcomvn.png',
'hn' => 'watermark_hn.png',
'local' => 'watermark_local.png',
];
$SITE_WATERMARK_LOGOS = [
'' => 'watermark_vth.png',
'default' => 'watermark_vth.png',
'vth' => 'watermark_vth.png',
'dn' => 'watermark_dn.png',
'bd' => 'watermark_bd.png',
'bdcomvn' => 'watermark_bdcomvn.png',
'hn' => 'watermark_hn.png',
'local' => 'watermark_local.png',
];
$SITES = [
'' => 'https://vanthienhung.vn',
'default' => 'https://vanthienhung.vn',
'vth' => 'https://vanthienhung.vn',
'vthcom' => 'https://vanthienhung.com',
'vthcomvn' => 'https://vanthienhung.com.vn',
'bd' => 'https://congnghiepbinhduong.vn',
'bdcomvn' => 'https://congnghiepbinhduong.com.vn',
'dn' => 'https://congnghiepdongnai.vn',
'hn' => 'https://congnghiephanoi.vn',
'local' => 'http://localhost',
];
// $watermark = file_get_contents('image_watermark.data');
// if (!empty($watermark)) {
// foreach ($SITE_WATERMARKS as $key) {
// $SITE_WATERMARKS[$key] = $watermark;
// }
// foreach ($SITE_WATERMARK_LOGOS as $key) {
// $SITE_WATERMARK_LOGOS[$key] = $watermark;
// }
// }
// $defaultImage = file_get_contents('default_product_image.data');
// if (!empty($defaultImage)) {
// $DEFAULT_IMAGE = $defaultImage;
// }
define('DEFAULT_OPTION_WATERMARK', false);
define('DEBUG_ON', false);