-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodule.php
More file actions
587 lines (570 loc) · 21.2 KB
/
module.php
File metadata and controls
587 lines (570 loc) · 21.2 KB
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
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
<?php
/**
* 侧边栏组件、页面模块
*/
if (!defined('EMLOG_ROOT')) {
exit('error!');
}
?>
<?php
//widget:blogger
function widget_blogger($title)
{
global $CACHE;
$user_cache = $CACHE->readCache('user');
$name = $user_cache[1]['mail'] != '' ? "<a href=\"mailto:" . $user_cache[1]['mail'] . "\">" . $user_cache[1]['name'] . "</a>" : $user_cache[1]['name']; ?>
<div class="widget widget-user">
<h3><?php echo $title; ?></h3>
<ul id="bloggerinfo">
<div id="bloggerinfoimg">
<?php if (!empty($user_cache[1]['photo']['src'])): ?>
<img src="<?php echo BLOG_URL . $user_cache[1]['photo']['src']; ?>"
width="<?php echo $user_cache[1]['photo']['width']; ?>"
height="<?php echo $user_cache[1]['photo']['height']; ?>" alt="blogger"/>
<?php endif; ?>
</div>
<p><b><?php echo $name; ?></b>
<?php echo $user_cache[1]['des']; ?></p>
</ul>
</div>
<?php } ?>
<?php
//widget:日历
function widget_calendar($title)
{ ?>
<div class="widget widget-calendar">
<h3><?php echo $title; ?></h3>
<div id="calendar">
</div>
<script>sendinfo('<?php echo Calendar::url(); ?>', 'calendar');</script>
</div>
<?php } ?>
<?php
//widget:标签
function widget_tag($title)
{
global $CACHE;
$tag_cache = $CACHE->readCache('tags'); ?>
<div class="widget widget-tags">
<h3><?php echo $title; ?></h3>
<div class="widget-inner">
<?php foreach ($tag_cache as $value): ?>
<a href="<?php echo Url::tag($value['tagurl']); ?>" title="<?php echo $value['usenum']; ?> 篇文章"
style="font-size:<?php echo $value['fontsize']; ?>pt;">#<?php echo $value['tagname']; ?>#</a>
<?php endforeach; ?>
</div>
</div>
<?php } ?>
<?php
//widget:热门标签
function widget_hot_tag($num = 10)
{
global $CACHE;
$tag_cache = $CACHE->readCache('tags');
$sort = array(
'direction' => 'SORT_DESC', //排序顺序标志 SORT_DESC 降序;SORT_ASC 升序
'field' => 'usenum', //排序字段
);
$arrSort = array();
foreach ($tag_cache AS $uniqid => $row) {
foreach ($row AS $key => $value) {
$arrSort[$key][$uniqid] = $value;
}
}
if ($sort['direction']) {
array_multisort($arrSort[$sort['field']], constant($sort['direction']), $tag_cache);
}
?>
<div class="widget widget-topic">
<h3>热门话题</h3>
<div class="widget-inner">
<?php $i = 0;
foreach ($tag_cache as $value): $i++;
if ($i > $num) break; ?>
<a href="<?php echo Url::tag($value['tagurl']); ?>" title="<?php echo $value['usenum']; ?> 篇文章"
class="topic-item">#<?php echo $value['tagname']; ?>#</a>
<?php endforeach; ?>
</div>
</div>
<?php } ?>
<?php
//widget:分类
function widget_sort($title)
{
global $CACHE;
$sort_cache = $CACHE->readCache('sort'); ?>
<div class="widget widget-sorts">
<h3><?php echo $title; ?></h3>
<ul id="blogsort">
<?php
foreach ($sort_cache as $value):
if ($value['pid'] != 0) continue;
?>
<li>
<a href="<?php echo Url::sort($value['sid']); ?>"><?php echo $value['sortname']; ?>
(<?php echo $value['lognum'] ?>)</a>
</li>
<?php if (!empty($value['children'])): ?>
<?php
$children = $value['children'];
foreach ($children as $key):
$value = $sort_cache[$key];
?>
<li>
<a href="<?php echo Url::sort($value['sid']); ?>">| <?php echo $value['sortname']; ?>
(<?php echo $value['lognum'] ?>)</a>
</li>
<?php endforeach; ?>
<?php endif; ?>
<?php endforeach; ?>
</ul>
</div>
<?php } ?>
<?php
//widget:最新微语
function widget_twitter($title)
{
global $CACHE;
$newtws_cache = $CACHE->readCache('newtw');
$istwitter = Option::get('istwitter');
?>
<div class="widget widget_twitter">
<h3><?php echo $title; ?></h3>
<ul id="twitter">
<?php foreach ($newtws_cache as $value): ?>
<?php $img = empty($value['img']) ? "" : '<a title="查看图片" class="t_img" href="' . BLOG_URL . str_replace('thum-', '', $value['img']) . '" target="_blank"> </a>'; ?>
<li><?php echo $value['t']; ?><?php echo $img; ?><p><?php echo smartDate($value['date']); ?></p></li>
<?php endforeach; ?>
<?php if ($istwitter == 'y') : ?>
<p><a href="<?php echo BLOG_URL . 't/'; ?>">更多»</a></p>
<?php endif; ?>
</ul>
</div>
<?php } ?>
<?php
//widget:最新评论
function widget_newcomm($title)
{
global $CACHE;
$com_cache = $CACHE->readCache('comment');
?>
<div class="widget widget-comment">
<h3><?php echo $title; ?></h3>
<ul>
<?php
foreach ($com_cache as $value):
$url = Url::comment($value['gid'], $value['page'], $value['cid']);
$log = getOneLogByGid($value['gid']);
$time = gmdate('Y-n-j', $value['date']);
?>
<li>
<div class="comment-inner">
<img class="avatar" src="<?php echo getGravatar($value['mail']); ?>">
<i class="username"><?php echo $value['name']; ?></i>
<span class="time"><?php echo $time; ?></span>
<p class="comment-content"><?php echo $value['content']; ?></p>
</div>
<div class="comment-refer">
<i class="iconfont icon-yinhao"></i>
<span class="t">来源<a href="<?php echo $url; ?>"
target="_blank"><?php echo $log['log_title']; ?></a></span>
</div>
</li>
<?php endforeach; ?>
</ul>
</div>
<?php } ?>
<?php
//widget:最新文章
function widget_newlog($title)
{
global $CACHE;
$newLogs_cache = $CACHE->readCache('newlog');
?>
<div class="widget widget-newlog">
<h3><?php echo $title; ?></h3>
<ul id="newlog">
<?php foreach ($newLogs_cache as $value): ?>
<li><a href="<?php echo Url::log($value['gid']); ?>"><?php echo $value['title']; ?></a></li>
<?php endforeach; ?>
</ul>
</div>
<?php } ?>
<?php
//widget:热门文章
function widget_hotlog($title)
{
$index_hotlognum = Option::get('index_hotlognum');
$Log_Model = new Log_Model();
$randLogs = $Log_Model->getLogsForHome("order by views desc", $page = 1, $index_hotlognum);
?>
<div class="widget widget-hot">
<h3><?php echo $title; ?></h3>
<ul id="hotlog">
<?php foreach ($randLogs as $value): ?>
<li>
<a href="<?php echo Url::log($value['gid']); ?>">
<img src="<?php echo getImgFromDesc($value['content']); ?>"
alt="<?php echo $value['title']; ?>">
<h4><?php echo $value['title']; ?></h4>
</a>
</li>
<?php endforeach; ?>
</ul>
</div>
<?php } ?>
<?php
//widget:随机文章
function widget_random_log($title)
{
$index_randlognum = Option::get('index_randlognum');
$Log_Model = new Log_Model();
$randLogs = $Log_Model->getRandLog($index_randlognum); ?>
<div class="widget widget-random-log">
<h3><?php echo $title; ?></h3>
<ul id="randlog">
<?php foreach ($randLogs as $value): ?>
<li><a href="<?php echo Url::log($value['gid']); ?>"><?php echo $value['title']; ?></a></li>
<?php endforeach; ?>
</ul>
</div>
<?php } ?>
<?php
//widget:搜索
function widget_search($title)
{ ?>
<div class="widget widget-search">
<h3><?php echo $title; ?></h3>
<ul id="logsearch">
<form name="keyform" method="get" action="<?php echo BLOG_URL; ?>index.php">
<input name="keyword" class="input" style="width: 100%;box-sizing: border-box;border: 1px solid #eee;"
placeholder="search.." type="text"/>
</form>
</ul>
</div>
<?php } ?>
<?php
//widget:归档
function widget_archive($title)
{
global $CACHE;
$record_cache = $CACHE->readCache('record');
?>
<div class="widget widget-archive">
<h3><?php echo $title; ?></h3>
<ul id="record">
<?php foreach ($record_cache as $value): ?>
<li><a href="<?php echo Url::record($value['date']); ?>"><?php echo $value['record']; ?>
(<?php echo $value['lognum']; ?>)</a></li>
<?php endforeach; ?>
</ul>
</div>
<?php } ?>
<?php
//widget:自定义组件
function widget_custom_text($title, $content)
{ ?>
<div class="widget">
<h3><?php echo $title; ?></h3>
<ul>
<?php echo $content; ?>
</ul>
</div>
<?php } ?>
<?php
//widget:链接
function widget_link($title)
{
global $CACHE;
$link_cache = $CACHE->readCache('link');
//if (!blog_tool_ishome()) return;#只在首页显示友链去掉双斜杠注释即可
?>
<div class="widget">
<h3><?php echo $title; ?></h3>
<div class="widget-inner">
<?php foreach ($link_cache as $value): ?>
<a class="label label-tag" href="<?php echo $value['url']; ?>" title="<?php echo $value['des']; ?>"
target="_blank"><?php echo $value['link']; ?></a>
<?php endforeach; ?>
</div>
</div>
<?php } ?>
<?php
//blog:导航
function blog_navi()
{
global $CACHE;
$navi_cache = $CACHE->readCache('navi');
?>
<ul class="menu" id="menu">
<?php
foreach ($navi_cache as $value):
if ($value['pid'] != 0) {
continue;
}
if ($value['url'] == ROLE_ADMIN && (ROLE == ROLE_ADMIN || ROLE == ROLE_WRITER)):
?>
<li class="menu-item"><a href="<?php echo BLOG_URL; ?>admin/">管理站点</a></li>
<li class="menu-item"><a href="<?php echo BLOG_URL; ?>admin/?action=logout">退出</a></li>
<?php
continue;
endif;
$newtab = $value['newtab'] == 'y' ? 'target="_blank"' : '';
$value['url'] = $value['isdefault'] == 'y' ? BLOG_URL . $value['url'] : trim($value['url'], '/');
$current_tab = BLOG_URL . trim(Dispatcher::setPath(), '/') == $value['url'] ? 'menu-item active' : 'menu-item';
?>
<li class="<?php echo $current_tab; ?>">
<a href="<?php echo $value['url']; ?>" <?php echo $newtab; ?>><?php echo $value['naviname']; ?></a>
<?php if (!empty($value['children'])) : ?>
<ul class="sub-nav">
<?php foreach ($value['children'] as $row) {
echo '<li><a href="' . Url::sort($row['sid']) . '">' . $row['sortname'] . '</a></li>';
} ?>
</ul>
<?php endif; ?>
<?php if (!empty($value['childnavi'])) : ?>
<ul class="sub-nav">
<?php foreach ($value['childnavi'] as $row) {
$newtab = $row['newtab'] == 'y' ? 'target="_blank"' : '';
echo '<li><a href="' . $row['url'] . "\" $newtab >" . $row['naviname'] . '</a></li>';
} ?>
</ul>
<?php endif; ?>
</li>
<?php endforeach; ?>
</ul>
<?php } ?>
<?php
//blog:置顶
function topflg($top, $sortop = 'n', $sortid = null)
{
if (blog_tool_ishome()) {
echo $top == 'y' ? "【顶】" : '';
} elseif ($sortid) {
echo $sortop == 'y' ? "【顶】" : '';
}
}
?>
<?php
//blog:编辑
function editflg($logid, $author)
{
$editflg = ROLE == ROLE_ADMIN || $author == UID ? '<a href="' . BLOG_URL . 'admin/write_log.php?action=edit&gid=' . $logid . '" target="_blank">编辑</a>' : '';
echo $editflg;
}
?>
<?php
//blog:分类
function blog_sort($blogid)
{
global $CACHE;
$log_cache_sort = $CACHE->readCache('logsort');
if (!empty($log_cache_sort[$blogid])) {
echo '<a href="';
echo Url::sort($log_cache_sort[$blogid]['id']);
echo '">';
echo $log_cache_sort[$blogid]['name'];
echo "</a>";
} else {
echo '未分类';
}
}
//blog:文章标签
function blog_tag($blogid)
{
global $CACHE;
$log_cache_tags = $CACHE->readCache('logtags');
if (!empty($log_cache_tags[$blogid])) {
$tag = '';
foreach ($log_cache_tags[$blogid] as $value) {
$tag .= "<a href='" . Url::tag($value['tagurl']) . "' class='label label-tag'>#" . $value['tagname'] . '#</a>';
}
echo $tag;
}
}
?>
<?php
//blog:文章作者
function blog_author($uid)
{
global $CACHE;
$user_cache = $CACHE->readCache('user');
$author = $user_cache[$uid]['name'];
$mail = $user_cache[$uid]['mail'];
$des = $user_cache[$uid]['des'];
$title = !empty($mail) || !empty($des) ? "title=\"$des $mail\"" : '';
echo '<a href="' . Url::author($uid) . "\" $title class='user'>$author</a>";
}
function get_author_by_uid($uid)
{
global $CACHE;
$user_cache = $CACHE->readCache('user');
return $user_cache[$uid];
}
?>
<?php
//blog:相邻文章
function neighbor_log($neighborLog)
{
extract($neighborLog); ?>
<?php if ($prevLog): ?>
<div class="prev">
<i class="iconfont icon-left"></i>
上一篇
<h3><a href="<?php echo Url::log($prevLog['gid']) ?>"><?php echo $prevLog['title']; ?></a></h3>
</div>
<?php endif; ?>
<?php if ($nextLog): ?>
<div class="next">
下一篇
<i class="iconfont icon-right"></i>
<h3><a href="<?php echo Url::log($nextLog['gid']) ?>"><?php echo $nextLog['title']; ?></a></h3>
</div>
<?php endif; ?>
<?php } ?>
<?php
//blog:评论列表
function blog_comments($comments)
{
extract($comments);
if ($commentStacks): ?>
<a name="comments"></a>
<h3 class="comment-header">评论:</h3>
<?php endif; ?>
<?php
$isGravatar = Option::get('isgravatar');
foreach ($commentStacks as $cid):
$comment = $comments[$cid];
$comment['poster'] = $comment['url'] ? '<a href="' . $comment['url'] . '" target="_blank">' . $comment['poster'] . '</a>' : $comment['poster'];
?>
<div class="comment" id="comment-<?php echo $comment['cid']; ?>">
<a name="<?php echo $comment['cid']; ?>"></a>
<?php if ($isGravatar == 'y'): ?>
<div class="avatar"><img src="<?php echo getGravatar($comment['mail']); ?>"/></div><?php endif; ?>
<div class="comment-info">
<div class="poster"><?php echo $comment['poster']; ?> </div>
<span class="comment-time"><?php echo
$comment['date']; ?></span>
<div class="comment-content"><?php echo $comment['content']; ?></div>
<div class="comment-reply"><a href="#comment-<?php echo $comment['cid']; ?>"
onclick="commentReply(<?php echo $comment['cid']; ?>,this)">回复</a></div>
</div>
<?php blog_comments_children($comments, $comment['children']); ?>
</div>
<?php endforeach; ?>
<div class="pagination" id="pagenavi">
<?php echo $commentPageUrl; ?>
</div>
<?php } ?>
<?php
//blog:子评论列表
function blog_comments_children($comments, $children)
{
$isGravatar = Option::get('isgravatar');
foreach ($children as $child):
$comment = $comments[$child];
$comment['poster'] = $comment['url'] ? '<a href="' . $comment['url'] . '" target="_blank">' . $comment['poster'] . '</a>' : $comment['poster'];
?>
<div class="comment comment-children" id="comment-<?php echo $comment['cid']; ?>">
<a name="<?php echo $comment['cid']; ?>"></a>
<?php if ($isGravatar == 'y'): ?>
<div class="avatar"><img src="<?php echo getGravatar($comment['mail']); ?>"/></div><?php endif; ?>
<div class="comment-info">
<b><?php echo $comment['poster']; ?> </b><br/><span
class="comment-time"><?php echo $comment['date']; ?></span>
<div class="comment-content"><?php echo $comment['content']; ?></div>
<?php if ($comment['level'] < 4): ?>
<div class="comment-reply"><a href="#comment-<?php echo $comment['cid']; ?>"
onclick="commentReply(<?php echo $comment['cid']; ?>,this)">回复</a>
</div><?php endif; ?>
</div>
<?php blog_comments_children($comments, $comment['children']); ?>
</div>
<?php endforeach; ?>
<?php } ?>
<?php
//blog:发表评论表单
function blog_comments_post($logid, $ckname, $ckmail, $ckurl, $verifyCode, $allow_remark)
{
if ($allow_remark == 'y'): ?>
<div id="comment-place">
<div class="comment-post" id="comment-post">
<div class="cancel-reply" id="cancel-reply" style="display:none"><a href="javascript:void(0);"
onclick="cancelReply()">取消回复</a>
</div>
<h3 class="comment-header">发表评论:<a name="respond"></a></h3>
<form method="post" name="commentform" action="<?php echo BLOG_URL; ?>index.php?action=addcom"
id="commentform">
<input type="hidden" name="gid" value="<?php echo $logid; ?>"/>
<?php if (ROLE == ROLE_VISITOR): ?>
<div class="form-group">
<label for="comname">昵称</label>
<input type="text" name="comname" maxlength="49" value="<?php echo $ckname; ?>" size="22"
tabindex="1" placeholder="昵称">
</div>
<div class="form-group">
<label for="commail">邮件地址 (选填)</label>
<input type="text" name="commail" maxlength="128" value="<?php echo $ckmail; ?>" size="22"
tabindex="2" placeholder="填写邮件方便联系">
</div>
<div class="form-group">
<label for="comurl">个人主页 (选填)</label>
<input type="text" name="comurl" maxlength="128" value="<?php echo $ckurl; ?>" size="22"
tabindex="3">
</div>
<?php endif; ?>
<div class="form-group">
<label for="comment">评论内容</label>
<textarea name="comment" id="comment" rows="5" tabindex="4" placeholder="请文明评论"></textarea>
</div>
<p><?php echo $verifyCode; ?> <input type="submit" id="comment_submit" value="发表评论" class="btn"
tabindex="6"/></p>
<input type="hidden" name="pid" id="comment-pid" value="0" size="22" tabindex="1"/>
</form>
</div>
</div>
<?php endif; ?>
<?php } ?>
<?php
//blog-tool:判断是否是首页
function blog_tool_ishome()
{
if (BLOG_URL . trim(Dispatcher::setPath(), '/') == BLOG_URL) {
return true;
} else {
return FALSE;
}
}
// 由gid获取文章信息
function getOneLogByGid($gid)
{
$log = new Log_Model();
return $log->getOneLogForHome($gid);
}
/**
* 获取系统信息,包括文章数,阅读量,留言数
* @author jaeheng <jaeheng@126.com>
* @return array [article, viewNum, commentsNum]
*/
function getSystemInfo()
{
$articleNumSql = "select count(*) as article from " . DB_PREFIX . "blog where hide = 'n' and checked = 'y' and type = 'blog'";
$viewNumSql = "SELECT sum(views) as views FROM " . DB_PREFIX . "blog where type = 'blog' and hide = 'n' and checked = 'y'";
$commentsNumSql = "SELECT count(*) as comments FROM " . DB_PREFIX . "comment";
$db = Database::getInstance();
$articleNum = $db->fetch_array($db->query($articleNumSql));
$viewNum = $db->fetch_array($db->query($viewNumSql));
$commentsNum = $db->fetch_array($db->query($commentsNumSql));
return array('articelNum' => $articleNum['article'], 'viewNum' => $viewNum['views'], 'commentsNum' =>
$commentsNum['comments']);
}
/**
* 获取一段html中的第一个图片
* @param $content
* @return string img
*/
function getImgFromDesc($content)
{
preg_match_all("|<img[^>]+src=\"([^>\"]+)\"?[^>]*>|is", $content, $img);
return !empty($img[1]) ? $img[1][0] : TEMPLATE_URL . 'dist/images/article.jpg';
}