-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathfunctions.php
240 lines (200 loc) · 11.4 KB
/
functions.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
<?php
if (!defined('__TYPECHO_ROOT_DIR__')) exit;
function get_post_view($archive){
$cid = $archive->cid;
$db = Typecho_Db::get();
$prefix = $db->getPrefix();
if (!array_key_exists('views', $db->fetchRow($db->select()->from('table.contents')))) {
$db->query('ALTER TABLE `' . $prefix . 'contents` ADD `views` INT(10) DEFAULT 0;');
echo 0;
return;
}
$row = $db->fetchRow($db->select('views')->from('table.contents')->where('cid = ?', $cid));
if ($archive->is('single')) {
$views = Typecho_Cookie::get('extend_contents_views');
if(empty($views)){
$views = array();
}else{
$views = explode(',', $views);
}
if(!in_array($cid,$views)){
$db->query($db->update('table.contents')->rows(array('views' => (int) $row['views'] + 1))->where('cid = ?', $cid));
array_push($views, $cid);
$views = implode(',', $views);
Typecho_Cookie::set('extend_contents_views', $views);
}
}
echo $row['views'];
}
function themeConfig($form) {
$css = new Typecho_Widget_Helper_Form_Element_Radio('css',
array(
'green' => _t('[小草绿]'),
),
'green',
_t('网站外观配色选择【必填】'));
$form->addInput($css->multiMode());
$Abstract= new Typecho_Widget_Helper_Form_Element_Radio('Abstract',
array('able' => _t('启用'),
'disable' => _t('禁止'),
),
'able', _t('是否启用自动摘要'), _t('默认启用,默认显示全文,在发布文章时请使用“摘要分割线”工具;启用则自动获取摘要'));
$form->addInput($Abstract);
$search= new Typecho_Widget_Helper_Form_Element_Radio('search',
array('able' => _t('启用'),
'disable' => _t('禁止'),
),
'able', _t('是否启用搜索功能'), _t('默认启用,启用则会在头部添加搜索框'));
$form->addInput($search);
$Title= new Typecho_Widget_Helper_Form_Element_Radio('Title',
array('able' => _t('启用'),
'disable' => _t('禁止'),
),
'disable', _t('是否启用动态博客标题'), _t('默认禁止,启用博客title则会动起来'));
$form->addInput($Title);
$Caidai= new Typecho_Widget_Helper_Form_Element_Radio('Caidai',
array('able' => _t('启用'),
'disable' => _t('禁止'),
),
'disable', _t('是否启用背景彩带'), _t('默认禁止,启用博客背景还有动态彩带'));
$form->addInput($Caidai);
$Webdt= new Typecho_Widget_Helper_Form_Element_Radio('Webdt',
array('able' => _t('启用'),
'disable' => _t('禁止'),
),
'disable', _t('是否启用网站地图'), _t('默认禁止,启用则会在底部增加网站地图显示'));
$form->addInput($Webdt);
$Icp= new Typecho_Widget_Helper_Form_Element_Radio('Icp',
array('able' => _t('启用'),
'disable' => _t('禁止'),
),
'disable', _t('是否启用工信部许可证号'), _t('默认禁止,启用则会在底部增加工信备案许可证号显示'));
$form->addInput($Icp);
$Gongan= new Typecho_Widget_Helper_Form_Element_Radio('Gongan',
array('able' => _t('启用'),
'disable' => _t('禁止'),
),
'disable', _t('是否启用公安部许可证号'), _t('默认禁止,启用则会在底部增加公安备案许可证号显示'));
$form->addInput($Gongan);
$Zoom= new Typecho_Widget_Helper_Form_Element_Radio('Zoom',
array('able' => _t('启用'),
'disable' => _t('禁止'),
),
'able', _t('是否启用灯箱功能'), _t('默认启用,启用则会在文章或页面加载灯箱效果'));
$form->addInput($Zoom);
$Demo= new Typecho_Widget_Helper_Form_Element_Radio('Demo',
array('able' => _t('启用'),
'disable' => _t('禁止'),
),
'disable', _t('是否启用公告功能'), _t('默认禁止,启用则会在头像处弹窗显示公告'));
$form->addInput($Demo);
$Prism= new Typecho_Widget_Helper_Form_Element_Radio('Prism',
array('able' => _t('启用'),
'disable' => _t('禁止'),
),
'able', _t('是否启用代码高亮'), _t('默认启用,启用则会在文章或页面加载代码高亮效果'));
$form->addInput($Prism);
$Copyright= new Typecho_Widget_Helper_Form_Element_Radio('Copyright',
array('able' => _t('启用'),
'disable' => _t('禁止'),
),
'disable', _t('是否启用版权保护功能'), _t('默认禁止,启用则别人在复制你的博文时会自动显示版权所有者'));
$form->addInput($Copyright);
$Gress= new Typecho_Widget_Helper_Form_Element_Radio('Gress',
array('able' => _t('启用'),
'disable' => _t('禁止'),
),
'able', _t('是否启用加载动画'), _t('默认禁止,启用则在顶部显示加载动画'));
$form->addInput($Gress);
$Reward= new Typecho_Widget_Helper_Form_Element_Radio('Reward',
array('able' => _t('启用'),
'disable' => _t('禁止'),
),
'disable', _t('是否启用文章打赏'), _t('默认禁止,启用则在文章页面显示打赏按钮'));
$form->addInput($Reward);
$Compress= new Typecho_Widget_Helper_Form_Element_Radio('Compress',
array('able' => _t('启用'),
'disable' => _t('禁止'),
),
'disable', _t('是否启用HTML代码压缩功能'), _t('默认禁止,启用则会gzip压缩HTML代码,如程序环境不支持导致前台报错请关闭该功能'));
$form->addInput($Compress);
$logoUrl = new Typecho_Widget_Helper_Form_Element_Text('logoUrl', NULL, NULL, _t('你的头像地址【必填】'), _t('在这里填入一个图片URL地址, 以在网站标题前加上一个自己的头像'));
$form->addInput($logoUrl);
$ico = new Typecho_Widget_Helper_Form_Element_Text('ico', NULL, NULL, _t('你的ico图标地址【必填】'), _t('在这里填入你的ICO图标地址,若没有你可以自行制作ico图标后放到站点根目录,在此处填入链接即可'));
$form->addInput($ico);
$qqlink = new Typecho_Widget_Helper_Form_Element_Text('qqlink', NULL, NULL, _t('你的QQ联系地址'), _t('在这里填入QQ号码'));
$form->addInput($qqlink);
$mlink = new Typecho_Widget_Helper_Form_Element_Text('mlink', NULL, NULL, _t('你的联系邮箱'), _t('在这里填入你的邮箱联系地址'));
$form->addInput($mlink);
$glink = new Typecho_Widget_Helper_Form_Element_Text('glink', NULL, NULL, _t('你的github库'), _t('在这里填入你的github库地址'));
$form->addInput($glink);
$musiclink = new Typecho_Widget_Helper_Form_Element_Text('musiclink', NULL, NULL, _t('你的音乐地址'), _t('在这里填入你的音乐地址'));
$form->addInput($musiclink);
$zddt = new Typecho_Widget_Helper_Form_Element_Text('zddt', NULL, NULL, _t('你的站点地图'), _t('在这里填入你的站点地图地址,若没有;请使用相关工具或插件生成'));
$form->addInput($zddt);
$wzdt = new Typecho_Widget_Helper_Form_Element_Text('wzdt', NULL, NULL, _t('你的网站地图'), _t('在这里填入你的网站地图地址,若没有;请使用相关工具或插件生成'));
$form->addInput($wzdt);
$wzdsw = new Typecho_Widget_Helper_Form_Element_Text('wzdsw', NULL, NULL, _t('你的打赏文案'), _t('在这里填入你的文章打赏文案,默认显示在打赏按钮上方'));
$form->addInput($wzdsw);
$jrxq = new Typecho_Widget_Helper_Form_Element_Textarea('jrxq', NULL, NULL, _t('你的站点公告'), _t('在这里填入你的站点公告,默认弹窗显示在头像处,默认支持html'));
$form->addInput($jrxq);
$wechat = new Typecho_Widget_Helper_Form_Element_Text('wechat', NULL, NULL, _t('你的微信链接'), _t('在这里填入你的微信打赏链接,默认显示在打赏按钮下方'));
$form->addInput($wechat);
$zhifubao = new Typecho_Widget_Helper_Form_Element_Text('zhifubao', NULL, NULL, _t('你的支付宝链接'), _t('在这里填入你的支付宝打赏链接,默认显示在打赏按钮下方'));
$form->addInput($zhifubao);
$icp= new Typecho_Widget_Helper_Form_Element_Text('icp', NULL, NULL, _t('你的工信备案许可证号'), _t('在这里填入你的备案许可证号,若没有;请忽略或及时备案'));
$form->addInput($icp);
$gonganurl= new Typecho_Widget_Helper_Form_Element_Text('gonganurl', NULL, NULL, _t('你的公安备案许可证链接'), _t('在这里填入你的公安备案许可证链接,若没有;请忽略或及时备案'));
$form->addInput($gonganurl);
$gongan= new Typecho_Widget_Helper_Form_Element_Text('gongan', NULL, NULL, _t('你的公安备案许可证号'), _t('在这里填入你的公安备案许可证号,若没有;请忽略或及时备案'));
$form->addInput($gongan);
}
/* 压缩网页 */
function compressHtml($html_source) {
$chunks = preg_split('/(<!--<nocompress>-->.*?<!--<\/nocompress>-->|<nocompress>.*?<\/nocompress>|<pre.*?\/pre>|<textarea.*?\/textarea>|<script.*?\/script>)/msi', $html_source, -1, PREG_SPLIT_DELIM_CAPTURE);
$compress = '';
foreach ($chunks as $c) {
if (strtolower(substr($c, 0, 19)) == '<!--<nocompress>-->') {
$c = substr($c, 19, strlen($c) - 19 - 20);
$compress .= $c;
continue;
} else if (strtolower(substr($c, 0, 12)) == '<nocompress>') {
$c = substr($c, 12, strlen($c) - 12 - 13);
$compress .= $c;
continue;
} else if (strtolower(substr($c, 0, 4)) == '<pre' || strtolower(substr($c, 0, 9)) == '<textarea') {
$compress .= $c;
continue;
} else if (strtolower(substr($c, 0, 7)) == '<script' && strpos($c, '//') != false && (strpos($c, "\r") !== false || strpos($c, "\n") !== false)) {
$tmps = preg_split('/(\r|\n)/ms', $c, -1, PREG_SPLIT_NO_EMPTY);
$c = '';
foreach ($tmps as $tmp) {
if (strpos($tmp, '//') !== false) {
if (substr(trim($tmp), 0, 2) == '//') {
continue;
}
$chars = preg_split('//', $tmp, -1, PREG_SPLIT_NO_EMPTY);
$is_quot = $is_apos = false;
foreach ($chars as $key => $char) {
if ($char == '"' && $chars[$key - 1] != '\\' && !$is_apos) {
$is_quot = !$is_quot;
} else if ($char == '\'' && $chars[$key - 1] != '\\' && !$is_quot) {
$is_apos = !$is_apos;
} else if ($char == '/' && $chars[$key + 1] == '/' && !$is_quot && !$is_apos) {
$tmp = substr($tmp, 0, $key);
break;
}
}
}
$c .= $tmp;
}
}
$c = preg_replace('/[\\n\\r\\t]+/', ' ', $c);
$c = preg_replace('/\\s{2,}/', ' ', $c);
$c = preg_replace('/>\\s</', '> <', $c);
$c = preg_replace('/\\/\\*.*?\\*\\//i', '', $c);
$c = preg_replace('/<!--[^!]*-->/', '', $c);
$compress .= $c;
}
return $compress;
}