Files
plugins/BackToTop/Plugin.php
chorblack e75f275ef4
Some checks failed
定时更新GitHub源插件 / 自动更新GitHub插件 (push) Has been cancelled
Initial commit
2026-03-07 11:19:25 +08:00

117 lines
2.9 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
/**
* 东方返回顶部样式
*
* @package BackToTop
* @author 夏目贵志
* @version 1.0
* @link https://xiamuyourenzhang.cn/
*/
class BackToTop_Plugin implements Typecho_Plugin_Interface
{
/**
* 激活插件方法,如果激活失败,直接抛出异常
*
* @access public
* @return void
* @throws Typecho_Plugin_Exception
*/
public static function activate() {
Typecho_Plugin::factory('Widget_Archive')->header = array('BackToTop_Plugin', 'header');
Typecho_Plugin::factory('Widget_Archive')->footer = array('BackToTop_Plugin', 'footer');
}
/**
* 禁用插件方法,如果禁用失败,直接抛出异常
*
* @static
* @access public
* @return void
* @throws Typecho_Plugin_Exception
*/
public static function deactivate() {
}
/**
* 获取插件配置面板
*
* @access public
* @param Typecho_Widget_Helper_Form $form 配置面板
* @return void
*/
public static function config(Typecho_Widget_Helper_Form $form) {
$jquery = new Typecho_Widget_Helper_Form_Element_Checkbox('jquery', array('jquery' => '禁止加载jQuery'), null, _t('Js设置'), _t('插件需要加载jQuery如果主题模板已经引用加载JQuery则可以勾选。'));
$form->addInput($jquery);
}
/**
* 个人用户的配置面板
*
* @access public
* @param Typecho_Widget_Helper_Form $form
* @return void
*/
public static function personalConfig(Typecho_Widget_Helper_Form $form) {
}
/**
* 页头输出相关代码
*
* @access public
* @param unknown header
* @return unknown
*/
public static function header() {
$Path = Helper::options()->pluginUrl . '/BackToTop/';
echo '<link rel="stylesheet" type="text/css" href="' . $Path . 'css/BackToTop.css" />';
}
/**
* 页脚输出相关代码
*
* @access public
* @param unknown footer
* @return unknown
*/
public static function footer() {
srand( microtime() * 1000000 );
$num = rand( 1, 3 );
switch( $num )
{
case 1: $image_file = "flandre.png";
break;
case 2: $image_file = "marisa.png";
break;
case 3: $image_file = "reimu.png";
break;
}
$Options = Helper::options()->plugin('BackToTop');
$Path = Helper::options()->pluginUrl . '/BackToTop/';
echo '<img id="BackToTop" src="' . $Path . 'images/'.$image_file.'" title="返回顶部~">';
if (!$Options->jquery || !in_array('jquery', $Options->jquery)) {
echo '<script type="text/javascript" src="https://cdn.bootcss.com/jquery/3.3.1/jquery.min.js"></script>';
}
echo '
<script type="text/javascript">
$(function(){
$("#BackToTop").click(function() {
$("html,body").animate({scrollTop:0}, 500);
});
})
</script>
';
}
}