1
0
Fork 0
mirror of https://github.com/yunluo/gdk.git synced 2024-05-23 08:32:18 +02:00
gdk/framework/plugin-options.php

396 lines
12 KiB
PHP
Raw Normal View History

2020-01-25 12:06:43 +01:00
<?php
/**
2020-01-27 15:28:34 +01:00
* Git 插件后台选项
2020-01-25 12:06:43 +01:00
*/
if ( ! defined( 'WPINC' ) ) {
die;
}
$current_theme = wp_get_theme();
2020-01-25 15:50:40 +01:00
$gdk_default_options = [];
$gdk_options = [];
include('options-config.php');
2020-01-25 18:54:41 +01:00
$gdk_current_options = get_option('gdk_options_setup');
2020-01-25 12:06:43 +01:00
2020-01-25 15:50:40 +01:00
function gdk_update_options() {
global $gdk_default_options, $gdk_options, $gdk_current_options;
foreach ($gdk_options as $panel) {
2020-01-25 12:06:43 +01:00
foreach ($panel as $option) {
2020-01-26 18:57:04 +01:00
$id = $option['id'] ?? '';
$type = $option['type'] ?? '';
$std = $option['std'] ?? '';
2020-01-25 12:06:43 +01:00
if ( !$id ) continue;
2020-01-25 18:54:41 +01:00
$gdk_default_options[$id] = $std;
2020-01-25 15:50:40 +01:00
if ( isset($gdk_current_options[$id]) ) continue;
2020-01-25 18:54:41 +01:00
$gdk_current_options[$id] = $std;
2020-01-25 12:06:43 +01:00
}
}
}
2020-01-25 15:50:40 +01:00
gdk_update_options();
2020-01-25 12:06:43 +01:00
//获取设置选项
2020-01-27 05:06:36 +01:00
function gdk_option($id, $returnDefault = false) {
2020-01-25 15:50:40 +01:00
global $gdk_default_options, $gdk_current_options;
return stripslashes( $returnDefault ? $gdk_default_options[$id] : $gdk_current_options[$id] );
2020-01-25 12:06:43 +01:00
}
//设置页面模板
2020-01-25 15:50:40 +01:00
function gdk_options_page() {
global $gdk_options;
2020-01-25 12:06:43 +01:00
?>
<div class="wrap">
2020-01-25 15:50:40 +01:00
<h2>GDK选项</h2>
<hr/>
2020-01-25 12:06:43 +01:00
<?php
2020-01-25 18:54:41 +01:00
if (isset($_GET['update'])) echo '<div class="updated"><p><strong>设置已保存。</strong></p></div>';
if (isset($_GET['reset'])) echo '<div class="updated"><p><strong>设置已重置。</strong></p></div>';
2020-01-25 12:06:43 +01:00
?>
<div class="wp-filter">
<ul class="filter-links">
<?php
$activePanelIdx = empty($_GET['panel']) ? 0 : $_GET['panel'];
2020-01-25 15:50:40 +01:00
foreach ( array_keys($gdk_options) as $i => $name ) {
2020-01-25 12:06:43 +01:00
echo '<li><a href="#panel_' . $i . '" data-panel="' . $i . '" ' . ( $i == $activePanelIdx ? 'class="current"' : '' ) . '>' . $name . '</a></li>';
}
?>
2020-01-26 19:49:22 +01:00
<li><a href="#panel_data" data-panel="data">数据清理</a></li>
2020-01-27 15:28:34 +01:00
<li><a href="#panel_about" data-panel="about">关于插件</a></li>
2020-01-25 12:06:43 +01:00
</ul>
2020-01-27 15:28:34 +01:00
<div class="search-form"><label class="screen-reader-text" for="wp-filter-search-input">筛选插件选项…</label><input placeholder="筛选插件选项…" type="search" id="wp-filter-search-input" class="wp-filter-search"></div>
2020-01-25 12:06:43 +01:00
</div>
<form method="post">
<?php
$index = 0;
2020-01-25 15:50:40 +01:00
foreach ( $gdk_options as $panel ) {
2020-01-26 18:57:04 +01:00
echo '<div class="panel gdk_option" id="panel_' . $index . '" ' . ( $index == $activePanelIdx ? ' style="display:block"' : '' ) . '><table class="form-table">';
2020-01-25 12:06:43 +01:00
foreach ( $panel as $option ) {
$type = $option['type'];
if ( $type == 'title' ) {
?>
<tr class="title">
<th colspan="2">
<h3><?php echo $option['title']; ?></h3>
<?php if ( isset( $option['desc'] ) ) echo '<p>' . $option['desc'] . '</p>'; ?>
</th>
</tr>
<?php
continue;
}
$id = $option['id'];
?>
<tr id="row-<?php echo $id; ?>">
<th><label for="<?php echo $id; ?>"><?php echo $option['name']; ?></label></th>
<td>
<?php
switch ( $type ) {
case 'text':
?>
<label>
2020-01-27 05:06:36 +01:00
<input name="<?php echo $id; ?>" class="regular-text" id="<?php echo $id; ?>" type="text" value="<?php echo esc_attr(gdk_option( $id )) ?>" />
2020-01-25 12:06:43 +01:00
</label>
<p class="description"><?php echo $option['desc']; ?></p>
<?php
break;
case 'number':
?>
<label>
2020-01-27 05:06:36 +01:00
<input name="<?php echo $id; ?>" class="small-text" id="<?php echo $id; ?>" type="number" value="<?php echo esc_attr(gdk_option( $id )) ?>" />
2020-01-25 12:06:43 +01:00
<span class="description"><?php echo $option['desc']; ?></span>
</label>
<?php
break;
case 'textarea':
?>
<p><label for="<?php echo $id; ?>"><?php echo $option['desc']; ?></label></p>
2020-01-27 05:06:36 +01:00
<p><textarea name="<?php echo $id; ?>" id="<?php echo $id; ?>" rows="10" cols="50" class="large-text code"><?php echo esc_textarea(gdk_option( $id )) ?></textarea></p>
2020-01-25 12:06:43 +01:00
<?php
break;
case 'radio':
?>
<fieldset>
<?php foreach ($option['options'] as $val => $name) : ?>
<label>
2020-01-27 05:06:36 +01:00
<input type="radio" name="<?php echo $id; ?>" id="<?php echo $id . '_' . $val; ?>" value="<?php echo $val; ?>" <?php checked( gdk_option( $id ), $val); ?>>
2020-01-25 12:06:43 +01:00
<?php echo $name; ?>
</label>
<?php endforeach; ?>
</fieldset>
<p class="description"><?php echo $option['desc']; ?></p>
<?php
break;
case 'checkbox':
?>
<label>
2020-01-27 05:06:36 +01:00
<input type='checkbox' name="<?php echo $id; ?>" id="<?php echo $id; ?>" value="1" <?php echo checked(gdk_option($id)); ?> />
2020-01-25 12:06:43 +01:00
<span><?php echo $option['desc']; ?></span>
</label>
<?php
break;
case 'checkboxs':
?>
<fieldset>
2020-01-27 05:06:36 +01:00
<?php $checkboxValues = gdk_option( $id );
2020-01-25 15:50:40 +01:00
if ( !is_array($checkboxValues) ) $checkboxValues = [];
2020-01-25 12:06:43 +01:00
foreach ( $option['options'] as $id => $name ) : ?>
<label>
<input type="checkbox" name="<?php echo $id; ?>[]" id="<?php echo $id; ?>[]" value="<?php echo $id; ?>" <?php checked( in_array($id, $checkboxValues), true); ?>>
<?php echo $name; ?>
</label>
<?php endforeach; ?>
</fieldset>
<p class="description"><?php echo $option['desc']; ?></p>
<?php
break;
default:
?>
<label>
2020-01-27 05:06:36 +01:00
<input name="<?php echo $id; ?>" class="regular-text" id="<?php echo $id; ?>" type="<?php echo $type; ?>" value="<?php echo esc_attr(gdk_option( $id )) ?>" />
2020-01-25 12:06:43 +01:00
</label>
<p class="description"><?php echo $option['desc']; ?></p>
<?php
break;
}
echo '</td></tr>';
}
echo '</table></div>';
$index++;
}
?>
2020-01-26 19:49:22 +01:00
<div class="panel" id="panel_data">
<table class="form-table">
<?php echo wp_clean_up_page();?>
</table>
</div>
2020-01-25 12:06:43 +01:00
<div class="panel" id="panel_about">
<table class="form-table">
<tr>
<th><h4>云落小贴士</h4></th>
<td>
2020-01-25 15:50:40 +01:00
<p>哈哈</p>
2020-01-25 12:06:43 +01:00
</td>
</tr>
<tr>
<th><h4>联系方式</h4></th>
<td>
<ul>
<li>865113728推荐</li>
<li>邮箱:<a href="mailto:sp91@qq.com">sp91@qq.com</a></li>
<li><p style="font-size:14px;color:#72777c">* 和主题无关的问题恕不回复</p></li>
</ul>
</td>
</tr>
<tr>
<th><h4>相关链接</h4></th>
<td>
<ul>
<li>主题发布页面:<a target="_blank" href="https://gitcafe.net/archives/3589.html">https://gitcafe.net/archives/3589.html</a></li>
<li>使用文档页面:<a target="_blank" href="https://gitcafe.net/archives/3275.html">https://gitcafe.net/archives/3275.html</a></li>
<li>代码托管页面:<a target="_blank" href="https://dev.tencent.com/u/googlo/p/Git/git">https://dev.tencent.com/u/googlo/p/Git/git</a></li>
<li>更新日志页面:<a target="_blank" href="https://gitcafe.net/tool/gitrss.php">https://gitcafe.net/tool/gitrss.php</a></li>
<li>主题反馈页面:<a target="_blank" href="https://support.qq.com/products/51158">https://support.qq.com/products/51158</a></li>
</ul>
</td>
</tr>
<tr>
<th><h4>第三方支持</h4></th>
<td>
<ul>
<li>感谢以下组织或个人:</li>
<li>PayJs 、Eapay、WeAuth小程序、Cloud9 、Cloud Studio、Coding 、Gitee 、Github、Server酱、jsDelivr、V2EX</li>
<li>露兜、畅萌、小影、大前端、知更鸟、yusi等等</li>
</ul>
</td>
</tr>
</table>
</div>
2020-01-26 19:49:22 +01:00
<hr />
<p class="submit" style="display:inline;float:left;margin-right:50px;">
2020-01-25 12:06:43 +01:00
<input name="submit" type="submit" class="button button-primary" value="保存更改"/>
<input type="hidden" name="action" value="update" />
<input type="hidden" name="panel" value="<?php echo $activePanelIdx; ?>" id="active_panel_name" />
</p>
</form>
2020-01-26 19:49:22 +01:00
<form method="post" style="display:inline;float:left;margin-right:50px;">
2020-01-25 12:06:43 +01:00
<p class="submit">
<input name="reset" type="submit" class="button button-secondary" value="重置选项" onclick="return confirm('你确定要重置选项吗?');"/>
<input type="hidden" name="action" value="reset" />
2020-01-25 12:06:43 +01:00
</p>
</form>
<form style="display:inline;float:left;margin-right:50px;">
2020-01-25 12:06:43 +01:00
<p class="submit">
<input type="button" class="button button-secondary mail_test" value="SMTP测试" onclick="return confirm('点击后点击后,网站会向指定邮箱发送测试邮件,如果发送有响应则证明邮箱成功,如果没有任何响应说明邮箱配置失败!');"/>
2020-01-25 12:06:43 +01:00
</p>
</form>
</div>
<!-- 静态资源css&js -->
<style>
.panel {
display: none;
margin: 0 20px;
}
.panel h3 {
margin: 0;
border-bottom: 1px solid #d2d3e0;
padding-bottom: 5px;
}
2020-01-27 15:28:34 +01:00
.key_word{
color:#f70044;
font-weight:bold;
text-decoration:none;
margin: 10px;
}
2020-01-25 12:06:43 +01:00
.panel th {
font-weight: normal;
}
.wp-filter {
padding: 0 20px;
margin-bottom: 0;
font-size: 15px;
2020-01-25 12:06:43 +01:00
}
2020-01-25 15:50:40 +01:00
.filter-links .current {
border-bottom: 4px solid #6b48ff;
}
2020-01-26 18:57:04 +01:00
.gdk_option input[type=radio]:checked::before {
background-color: #6b48ff;
}
.gdk_option input[type=radio]:focus, .gdk_option input[type=checkbox]:focus{
2020-01-26 18:57:04 +01:00
box-shadow: 0 0 0 1px #6b48ff;
}
2020-01-25 12:06:43 +01:00
.wp-filter .drawer-toggle:before {
content: "\f463";
color: #fff!important;
background: #e14d43;
border-radius: 50%;
box-shadow: inset 0 0 0 2px #e14d43, 0 0 0 2px #e14d43;
}
.wrap.searching .nav-tab-wrapper a,
.wrap.searching .panel tr,
body.show-filters .wrap form {
display: none
}
.wrap.searching .panel {
display: block!important;
}
.filter-drawer {
padding-top: 0;
padding-bottom: 0;
}
.filter-drawer ul {
list-style: disc inside;
}
</style>
<style id="theme-options-filter"></style>
<script>
/* global wp */
jQuery(function ($) {
var $body = $("body");
var $themeOptionsFilter = $("#theme-options-filter");
var $wpFilterSearchInput = $("#wp-filter-search-input");
$(".filter-links a").click(function () {
$(this).addClass("current").parent().siblings().children(".current").removeClass("current");
$(".panel").hide();
$($(this).attr("href")).show();
$("#active_panel_name").val($(this).data("panel"));
$body.removeClass("show-filters");
return false;
});
if ($wpFilterSearchInput.is(":visible")) {
var wrap = $(".wrap");
$(".panel tr").each(function () {
$(this).attr("data-searchtext", $(this).text().replace(/\r|\n|px/g, '').replace(/ +/g, ' ').replace(/^\s+|\s+$/g, '').toLowerCase());
});
$wpFilterSearchInput.on("input", function () {
var text = $(this).val().trim().toLowerCase();
if (text) {
wrap.addClass("searching");
$themeOptionsFilter.text(".wrap.searching .panel tr[data-searchtext*='" + text + "']{display:block}");
} else {
wrap.removeClass("searching");
$themeOptionsFilter.text("");
}
});
}
$(".wrap form").submit(function(){
$(".submit .button").prop("disabled", true);
$(this).find(".submit .button").val("正在提交…");
});
$(".mail_test").click(function () {
var ajax_data = { action: 'gdk_test_email' };
$.post(ajaxurl, ajax_data,
function(a) {
if (a == '1') {
swal("测试成功", "您的SMTP邮箱邮件发送已成功,Enjoy it", "success");
}else{
swal("测试失败", "您的SMTP邮箱邮件响应失败,请重试", "error");
}
});
});
2020-01-28 07:51:13 +01:00
/* 配置文本框以隐藏显示功能,可以同时伸缩8个元素*/
function depend(n, e, i, c, t, u, v, g, d) {
2020-01-27 15:28:34 +01:00
$("input[name=" + n + "]:checked").val(function() {
2020-01-28 07:51:13 +01:00
"0" == this.value && $(e, i, c, t, u, v, g, d).hide();
}), $("input[name=" + n + "]").change(function() {
$(e, i, c, t, u, v, g, d).toggle();
2020-01-27 15:28:34 +01:00
});
}
//依赖关系,第一个是需要点击的name值,后面是需要伸缩的ID值,参照下面写
depend('gdk_lock_login','#row-gdk_failed_login_limit,#row-gdk_lockout_duration');
depend('gdk_smtp','#row-gdk_smtp_username,#row-gdk_smtp_host,#row-gdk_smtp_port,#row-gdk_smtp_mail,#row-gdk_smtp_password');
2020-02-02 19:46:18 +01:00
depend('gdk_baidu_push','#row-gdk_baidu_token');
depend('gdk_tag_link','#row-gdk_tag_num');
2020-02-02 04:13:58 +01:00
depend('gdk_cdn','#row-gdk_cdn_host,#row-gdk_cdn_ext,#row-gdk_cdn_dir,#row-gdk_cdn_style,#row-gdk_cdn_water');
2020-01-28 07:51:13 +01:00
depend('gdk_h5notice','#row-git_notification_title,#row-git_notification_days,#row-git_notification_cookie,#row-git_notification_icon,#row-git_notification_link,#row-git_notification_body');
2020-02-02 04:13:58 +01:00
depend('gdk_payjs','#row-gdk_rate,#row-git_payjs_rate,#row-gdk_payjs_id,#row-gdk_payjs_key');
2020-01-27 15:28:34 +01:00
2020-01-25 12:06:43 +01:00
});
</script>
<?php
}
2020-01-25 15:50:40 +01:00
function gdk_add_options_page() {
global $gdk_options;
if ( isset($_POST['action']) && isset($_GET['page']) && $_GET['page'] == 'gdk-options' ) {
2020-01-25 12:06:43 +01:00
$action = $_POST['action'];
switch ( $action ) {
case 'update':
$_POST['uid'] = uniqid();
2020-01-25 15:50:40 +01:00
update_option('gdk_options_setup', $_POST);
gdk_update_options();
header('Location: admin.php?page=gdk-options&update=true&panel=' . $_POST['panel']);
2020-01-25 12:06:43 +01:00
break;
case 'reset':
2020-01-25 15:50:40 +01:00
delete_option('gdk_options_setup');
gdk_update_options();
header('Location: admin.php?page=gdk-options&reset=true&panel=' . $_POST['panel']);
2020-01-25 12:06:43 +01:00
break;
}
exit;
}
2020-01-25 15:50:40 +01:00
add_menu_page( 'GDK选项', 'GDK选项', 'manage_options', 'gdk-options', 'gdk_options_page','dashicons-buddicons-replies' );
2020-01-25 12:06:43 +01:00
}
2020-01-25 15:50:40 +01:00
add_action( 'admin_menu', 'gdk_add_options_page' );