代码拉取完成,页面将自动刷新
同步操作将从 yangtoude/easy-copy-paste 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
<div class="wrap">
<div id="icon-options-general" class="icon32">
<br>
</div>
<h2>Easy Copy Paste设置</h2>
<div id="setting-error-settings_dismissible">
<p><strong id="s_err"></strong></p>
</div>
<?php if ($updated): ?>
<div id="setting-error-settings_updated" class="updated settings-error">
<p><strong>设置已保存。</strong></p>
</div>
<?php endif; ?>
<form name="form1" method="post" action="<?php echo wp_nonce_url('./options-general.php?page=' . plugin_basename(dirname(__FILE__)) . '/easy-copy-paste.php'); ?>" onsubmit="return validate_form(this)">
<table class="form-table">
<tbody>
<tr valign="top">
<th scope="row">
<label for="host_id">网站主机域名</label>
</th>
<td>
<input name="host" type="text" id="host_id" value="<?php echo $ecp_options['host']; ?>" class="regular-text" placeholder="请输入网站主机域名">
<p class="description">请填写网站的主机域名(url地址),比如,example.com。注意:不要带http://或https://前缀。</p>
</td>
</tr>
</tbody>
</table>
<p class="submit">
<input type="submit" name="submit" id="submit" class="button button-primary" value="保存更改">
</p>
</form>
</div>
<script>
/**
* 获取input表单元素,设置提示信息和样式
*
* @param {Object} field 表单元素
* @param {string} alerttxt 提示信息
* @return {boolean}
*/
function validate_required(field, alerttxt) {
if (null == field.value || "" == field.value) {
document.getElementById('setting-error-settings_dismissible')
.setAttribute('class', 'error notice is-dismissible');
document.getElementById('s_err').innerHTML = alerttxt;
return false;
} else {
return true;
}
}
/**
* 验证表单元素
*
* @param {Object} thisform 验证的表单
* @return {boolean}
*/
function validate_form(thisform) {
// form.field_id 表单根据id来获取对应的表单域
if (validate_required(thisform.host_id, "网站主机域名必须填写!") == false) {
host_id.focus();
return false;
}
}
</script>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。