-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPlugin.php
106 lines (98 loc) · 2.99 KB
/
Plugin.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
<?php
use Typecho\Widget\Helper\Form\Element\Textarea;
use Widget\Options;
if (!defined('__TYPECHO_ROOT_DIR__')) {
exit;
}
/**
* 试试神奇的Konami密码: ↑ ↑ ↓ ↓ ← → ← → B A
*
* @package Konami
* @author 小A
* @version 2.0
* @link http://xiaoa.me
*/
class Konami_Plugin implements Typecho_Plugin_Interface
{
/**
* 激活插件方法,如果激活失败,直接抛出异常
*/
public static function activate()
{
Typecho_Plugin::factory('Widget_Archive')->header = array(__CLASS__, 'header');
Typecho_Plugin::factory('Widget_Archive')->footer = array(__CLASS__, 'footer');
}
/**
* 禁用插件方法,如果禁用失败,直接抛出异常
*/
public static function deactivate()
{
}
/**
* 获取插件配置面板
*
* @param Form $form 配置面板
*/
public static function config(Typecho_Widget_Helper_Form $form){
/* 自定义彩蛋内容 */
$html = '<div id="konami" style="display:none;position:fixed;height:100%;width:100%;z-index:9999;top:0;left:0;background:rgba(00, 00, 00, 0.8);">';
$html .= '<span style="position: absolute;left: 50%;transform: translate(-50%,-50%);top: 50%; color: #FFFFFF;font-size: 18em;">KONAMI</span>';
$html .= '</div>';
$htmlcontent= new Textarea('KonamiHtml', null, $html, _t('自定义彩蛋显示内容html'), _t('彩蛋显示html的效果,会添加到body'));
$form->addInput($htmlcontent->multiMode());
/* 自定义彩蛋脚本 */
$js = '$("#konami").fadeIn(1500).fadeOut(1500);';
$jscontent= new Textarea('KonamiJS', null, $js, _t('自定义彩蛋执行脚本'), _t('正确的可执行脚本,可使用JQuery'));
$form->addInput($jscontent->multiMode());
}
/**
* 个人用户的配置面板
*
* @param Form $form
*/
public static function personalConfig(Typecho_Widget_Helper_Form $form)
{
}
/**
*为header添加js文件
*@return void
*/
public static function header() {
$jqueryUrl = Helper::options()->pluginUrl . '/Konami/jquery.min.js';
//写入JS
echo <<<CODE
<script type="text/javascript" src="{$jqueryUrl}"></script>
CODE;
}
/**
*为footer添加js文件
*@return void
*/
public static function footer() {
// 获取系统配置选项
$options = Options::alloc();
$KonamiConfig = $options->plugin('Konami');
$html = $KonamiConfig->KonamiHtml;
$js = $KonamiConfig->KonamiJS;
echo <<<CODE
<script type="text/javascript">
$(document).ready(function() {
//Konami Code
var k = [];
$("body").append('$html');
$(document).keydown(function(e) {
e = e || window.event;
k.push(e.keyCode);
if (k.toString().indexOf("38,38,40,40,37,39,37,39,66,65") >= 0) {
$js;
k = [];
}
else if (k.length == 10) {
k.shift();
}
});
});
</script>
CODE;
}
}