Skip to content
Navigation Menu
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Copilot app
Direct agents from issue to merge
MCP Registry
Integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Code Quality
Enforce quality at merge
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
View all resources
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
GitHub Stars
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Search
/
Sign in
Sign up
Appearance settings
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
Uh oh!
There was an error while loading.
Please reload this page
.
emlog-plus
/
tips
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Files
Expand file tree
master
Breadcrumbs
tips
/
tips-master.php
Copy path
Blame
More file actions
Blame
More file actions
Latest commit
History
History
History
57 lines (51 loc) · 2.2 KB
master
Breadcrumbs
tips
/
tips-master.php
Copy path
Top
File metadata and controls
Code
Blame
57 lines (51 loc) · 2.2 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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');
You can’t perform that action at this time.