-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtips-master.php
More file actions
57 lines (51 loc) · 2.2 KB
/
tips-master.php
File metadata and controls
57 lines (51 loc) · 2.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
<?php
/*
Plugin Name: 小贴士
Version: 1.1
Plugin URL:
Description: 这是世界上第一个emlog插件,它会在你的管理页面送上一句温馨的小提示。
Author: emlog
Author URL: http://www.emlog.net
*/
!defined('EMLOG_ROOT') && exit('access deined!');
$array_tips = array(
'你可以在文章中上传多个附件',
'试试给你的EM后台换个风格吧,就在设置里面',
'emlog支持灵活的标签(tag)功能',
'在撰写文章的时候你可以使用Tab键方便的缩进内容',
'你可以为你的文章写一段漂亮的摘要,这样仅让摘要显示在首页并出现阅读全文链接',
'为防文章丢失,emlog会在你书写文章的时候为你自动保存它们',
'你可以在文章中插入flash格式的多媒体文件',
'不一样的心情,文章表情图标为您传达',
'你可以把你未写完的文章保存到草稿箱里,等下次有时间的时候再写',
'emlog会把太大的图片附件自动生产缩略图,从而加快页面加载速度',
'请关注后台首页的 官方信息 栏目,这里有最新的emlog动态',
'你可以把图片附件嵌入到内容中,让你的文章图文并茂',
'你可以在写文章的时候为文章设置访问密码,只让你授予密码的人访问',
'emlog支持多人联合撰写',
'emlog支持自建页面,并且可以上传照片,为自己做一个图文并茂的自我介绍页吧',
'新建一个允许发表评论的页面,你会发现其实它还是一个简单的留言板',
'检查你的站点目录下是否存在安装文件:install.php,有的话请删除它',
'及时升级浏览器,更好的体验emlog',
'今天你备份数据了吗?',
'从明天起,做一个幸福的人。喂马,砍柴,周游世界',
);
function tips() {
global $array_tips;
$i = mt_rand(0, count($array_tips) - 1);
$tip = $array_tips[$i];
echo "<div id=\"tip\"> $tip</div>";
}
addAction('adm_main_top', 'tips');
function tips_css() {
echo "<style type='text/css'>
#tip{
background:url(../content/plugins/tips/icon_tips.gif) no-repeat left 3px;
padding:3px 18px;
margin:5px 0px;
font-size:12px;
color:#999999;
}
</style>\n";
}
addAction('adm_head', 'tips_css');