4 Star 9 Fork 0

JefferyWang/qcloud-cos-support

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
uninstall.php 516 Bytes
一键复制 编辑 原始数据 按行查看 历史
JefferyWang 提交于 2015-11-13 23:21 . 功能完善
<?php
//防止有人恶意访问此文件,所以在没有 WP_UNINSTALL_PLUGIN 常量的情况下结束程序
if( !defined( 'WP_UNINSTALL_PLUGIN' ) ) exit();
$oss_options = get_option('cos_options', TRUE);
$upload_url_path = get_option('upload_url_path');
$oss_upload_url_path = esc_attr($oss_options['upload_url_path']);
//如果现在使用的是OSS的URL,则恢复原状
if( $upload_url_path == $oss_upload_url_path ) {
update_option('upload_url_path', "" );
}
//移除配置
delete_option('cos_options');
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/techlivewang/qcloud-cos-support.git
[email protected]:techlivewang/qcloud-cos-support.git
techlivewang
qcloud-cos-support
qcloud-cos-support
master

搜索帮助