通知图标 加载中...
子比文件目录结构,备份文件名,方便查阅-子比美化备份交流社区-盒子内部事务-设计盒子

子比文件目录结构,备份文件名,方便查阅

🏗️ 根目录核心文件

 
 
文件 核心作用
404.php 404错误页面模板
archive.php 分类/标签/作者等归档页面模板
author.php 作者个人主页模板
category.php 分类目录页面模板
composer.json PHP依赖管理配置 (定义主题需要的第三方库)
composer.lock 依赖版本锁定文件 (确保环境一致性)
footer.php 全站底部模板
functions.php 主题功能总入口 (初始化所有功能模块)
go.php 外链跳转/统计页面 (常用于推广链接跟踪)
header.php 全站头部模板
image.php 图片附件展示页面
index.php 网站首页/默认后备模板
page.php 普通页面模板
screenshot.jpg 主题预览图 (WordPress后台显示)
search.php 搜索结果页面模板
sidebar.php 侧边栏模板
single.php 文章详情页模板
style.css 主题主样式表 + 主题信息声明
tag.php 标签页面模板
update_log.md 主题更新日志 (记录版本变更)

⚡ 动态处理核心 (/action/)

这个目录处理所有前端用户交互的PHP逻辑:

 
 
文件 核心作用
action.php 动作处理总控制器
ajax.php AJAX请求统一入口 (前后端数据交互)
author.php 作者相关操作 (关注、取消关注等)
captcha.php 验证码生成和验证
comment.php 评论提交、回复、点赞处理
documentnav.php 文档导航相关功能
function.php 通用功能函数库
img.php 图片上传、处理相关
imgcode.php 图片验证码生成
main.php 主要功能逻辑
media.php 媒体文件处理 (音频、视频)
new_posts.php 新文章发布相关逻辑
post_navs.php 文章导航功能
sign_register.php 用户登录注册处理
user.php 用户资料更新、操作处理

🎨 样式资源 (/css/)

 
 
文件 核心作用
admin-main.css 主题后台管理界面样式
animate.css CSS动画库
bootstrap.css Bootstrap前端框架样式
editor-style.css 文章编辑器样式 (可视化编辑时所见即所得)
font-awesome.min.css Font Awesome图标库
main.css 主题前端主样式文件
new-posts.css 新文章发布页面样式
page-navs.css 页面导航样式
swiper.css Swiper轮播图组件样式
tinymce.css TinyMCE编辑器样式
widget-set.css 小工具设置页面样式
*.min.css 对应文件的压缩版本 (生产环境使用)

🔧 功能模块核心 (/inc/)

这是子比主题最复杂也最重要的部分。

6.1 基础类库 (/inc/class/)

 
 
文件 核心作用
api-audit-class.php API审核类
class.php 通用类定义
db-class.php 数据库操作类
express-class.php 快递查询类 (商城功能)
file-class.php 文件操作类
qrcode.class.php 二维码生成类
SignatureHelper.php 签名助手类 (API调用)
sms-class.php 短信发送类
tx-sdk-send.php 腾讯云SDK发送类

6.2 代码模块 (/inc/code/)

 
 
文件 核心作用
action.php 功能动作代码
aut.php 授权相关代码
code.php 代码高亮相关
file.php 文件处理代码
new_aut.php 新授权系统
require.php 依赖引入管理
tool.php 工具函数
update.php 主题更新检测和处理

6.3 Codestar框架 (/inc/codestar-framework/)

这是子比主题的设置选项框架

  • codestar-framework.php – 框架主文件

  • /assets/ – 框架静态资源

  • /classes/ – 框架核心类

    • admin-options.class.php – 后台选项类

    • metabox-options.class.php – 文章选项类

    • profile-options.class.php – 用户资料选项类

  • /fields/ – 所有设置字段类型

    • text.php – 文本字段

    • textarea.php – 文本域

    • select.php – 下拉选择

    • radio.php – 单选按钮

    • checkbox.php – 多选按钮

    • switcher.php – 开关按钮

    • color.php – 颜色选择器

    • upload.php – 文件上传

    • media.php – 媒体选择

    • …等等30多种字段类型

  • /functions/ – 框架功能函数

  • /samples/ – 配置示例文件

6.4 自定义CSF框架 (/inc/csf-framework/)

这是子比主题基于Codestar框架的自定义扩展,增加了主题特定的字段和功能。

6.5 功能函数库 (/inc/functions/) – 主题核心!

基础功能文件

 
 
文件 核心作用
functions.php 功能函数总控制器
zib-attachment.php 附件处理功能
zib-author.php 作者功能扩展
zib-baidu.php 百度相关功能 (SEO、统计等)
zib-category.php 分类目录功能
zib-comments-list.php 评论列表和功能
zib-content.php 内容处理功能
zib-email.php 邮件发送系统
zib-footer.php 底部功能
zib-frontend-set.php 前端设置功能
zib-head.php HEAD区域功能
zib-header.php 头部功能
zib-index.php 首页功能
zib-page.php 页面功能
zib-post.php 文章功能
zib-posts-list.php 文章列表功能
zib-search.php 搜索功能
zib-share-wechat.php 微信分享功能
zib-share.php 社交分享功能
zib-single.php 文章页功能
zib-svg-icon.php SVG图标系统
zib-theme.php 主题初始化核心
zib-tool.php 工具函数
zib-user.php 用户系统核心

后台管理 (/inc/functions/admin/)

 
 
文件 核心作用
admin-main.php 后台主功能
admin-set.php 后台设置功能

论坛系统 (/inc/functions/bbs/) – 子比核心功能

 
 
文件 核心作用
bbs.php 论坛系统主文件
/action/ – AJAX处理 评论、版块、帖子、用户相关AJAX
/admin/ – 后台管理 论坛设置、元选项
/assets/ – 静态资源 论坛专用样式和脚本
/inc/ – 功能实现 论坛所有核心逻辑
/page/ – 页面模板 论坛各页面逻辑
/template/ – 模板部件 评论模板等
/widgets/ – 小工具 论坛专用小工具

消息系统 (/inc/functions/message/)

 
 
文件 核心作用
functions.php 消息系统主文件
/class/ – 类定义 消息、私信处理类
/functions/ – 功能 后台、AJAX、微信模板消息
/page/ – 页面 消息中心页面

REST API (/inc/functions/rest-api/)

 
 
文件 核心作用
function.php WordPress REST API扩展

商城系统 (/inc/functions/shop/) – 完整电商功能

 
 
文件 核心作用
shop.php 商城主文件
/action/ – 动作处理 购物车、订单等操作
/admin/ – 后台管理 商品、订单管理后台
/assets/ – 静态资源 商城专用样式脚本
/inc/ – 核心逻辑 订单、支付、商品、购物车等
/page/ – 页面 商品页、购物车、分类页等
/template/ – 模板 Vue组件模板
/widgets/ – 小工具 商品小工具

用户系统 (/inc/functions/user/)

 
 
文件 核心作用
ajax.php 用户相关AJAX
invit-code.php 邀请码系统
page.php 用户页面功能
user-auth.php 用户认证功能
user-ban.php 用户封禁系统
user-cap.php 用户权限功能
user-checkin.php 用户签到系统
user-level.php 用户等级系统
user.php 用户功能主文件
user_medal.php 用户勋章系统
/admin/ – 后台 用户管理页面
/page/ – 页面 用户中心页面

6.6 主题选项 (/inc/options/)

 
 
文件 核心作用
action.php 选项动作处理
admin-options.php 主题后台设置选项 (你在后台看到的所有设置)
metabox-options.php 文章/页面编辑时的额外选项框
options-module.php 选项模块函数
options.php 选项处理核心
profile-options.php 用户资料页选项
upgrade.php 升级相关功能
zib-code.php 主题代码相关
zib-update.php 主题更新功能

6.7 小工具 (/inc/widgets/)

 
 
文件 核心作用
widget-class.php 小工具基类
widget-index.php 首页小工具
widget-more.php 更多小工具
widget-posts.php 文章列表小工具
widget-slider.php 轮播图小工具
widget-user.php 用户信息小工具

🚀 JavaScript功能 (/js/)

主功能脚本

 
 
文件 核心作用
admin-main.js 后台管理脚本
author.js 作者页面交互
captcha.js 验证码交互
comment.js 评论功能交互 (提交、回复、点赞)
editextend.js 编辑器扩展功能
gutenberg-extend.js Gutenberg编辑器扩展
imgbox.js 图片灯箱效果
input-expand.js 输入框扩展功能
loader.js 加载动画控制
main.js 主题前端主脚本
message.js 消息系统交互
mini-touch.js 移动端触摸事件
mini-upload.js 迷你上传功能
page-edit.js 页面编辑功能
page-navs.js 页面导航交互
page-template.js 页面模板功能
poster-share.js 海报分享功能
precode.js 代码预览功能
section-navs.js 章节导航
sign-register.js 登录注册交互
slidercaptcha.js 滑块验证码
svg-icon.js SVG图标交互
waterfall.js 瀑布流布局
weixin-share.js 微信分享配置
widget-set.js 小工具设置交互

代码高亮 (/js/enlighter/)

完整的代码语法高亮库,支持多种主题和语言。

第三方库 (/js/libs/)

 
 
文件 核心作用
bootstrap.js Bootstrap交互组件
clipboard.js 剪贴板操作
DPlayer.js 视频播放器 (支持弹幕)
flv.min.js FLV视频格式支持
grade.js 评分组件
hls.min.js HLS流媒体支持
instantclick.min.js 页面预加载库
jquery.min.js jQuery库
jquery.qrcode.min.js 二维码生成
lazysizes.min.js 图片懒加载
petite-vue.iife.js 轻量级Vue框架
Sortable.min.js 拖拽排序
spark-md5.js 文件MD5计算 (断点续传)
swiper.js 轮播图组件

🔐 社交登录 (/oauth/)

完整的OAuth社交登录系统,每个平台包含:

  • login.php – 登录入口

  • callback.php – 回调处理

  • agent/ – 代理登录 (用于某些环境)

支持的平台:QQ、微信、微博、GitHub、Gitee、百度、支付宝


📄 页面模板 (/pages/)

 
 
文件 核心作用
archives.php 文章归档页面
documentnav.php 文档导航页面
download.php 下载中心页面
forums.php 论坛首页
links.php 友情链接页面
newposts.php 最新文章页面
postsnavs.php 文章导航页面
user-auth.php 用户认证页面
user-sign.php 用户登录注册页面

🎭 内容模板 (/template/)

 
 
文件 核心作用
category-dosc.php 文档分类模板
category-topics.php 专题分类模板
comments.php 评论列表模板
content-404.php 404页面内容模板
excerpt.php 文章摘要模板
single-dosc.php 文档文章模板

📦 PHP依赖库 (/vendor/)

通过Composer管理的第三方PHP库:

 
 
核心作用
guzzlehttp/ HTTP客户端 (API请求)
psr/ PSR标准接口 (HTTP消息、工厂等)
qcloudsms/ 腾讯云短信SDK
tencentcloud/ 腾讯云服务SDK (验证码等)
yurunsoft/pay-sdk 支付SDK (支付宝、微信支付)
yurunsoft/yurun-http HTTP请求库
yurunsoft/yurun-oauth-login OAuth登录库

🎯 一言功能 (/yiyan/)

 
 
文件 核心作用
qv-yiyan.php 一言API功能
qv-yiyan.txt 一言文本库

💰 支付系统 (/zibpay/) – 完整电商解决方案

资源文件 (/zibpay/assets/)

 
 
文件 核心作用
element-plus.min.css Vue3 UI组件库样式
main.css 支付系统主样式
pay-page.css 支付页面样式
admin-page.js 后台管理Vue应用
echarts-c.min.js 图表库 (数据统计)
element-plus.min.js Vue3 UI组件库
highcharts.js 高级图表库
pay.js 支付功能前端
vue.global.min.js Vue3框架

核心类 (/zibpay/class/)

 
 
文件 核心作用
ajax-class.php AJAX处理类
alipay-check.php 支付宝校验类
card-pass.php 卡密功能类
order-class.php 订单处理类

功能函数 (/zibpay/functions/)

 
 
文件 核心作用
ajax.php 支付AJAX处理
balance-ajax.php 余额功能AJAX
income-ajax.php 收入统计AJAX
rebate-ajax.php 佣金返利AJAX
widget.php 支付小工具
zibpay-ajax.php 支付主AJAX
zibpay-balance.php 余额支付系统
zibpay-coupon.php 优惠券系统
zibpay-download.php 付费下载功能
zibpay-func.php 支付通用函数
zibpay-income.php 收入统计功能
zibpay-msg.php 支付消息通知
zibpay-order.php 订单管理系统
zibpay-points.php 积分支付功能
zibpay-post.php 付费文章功能
zibpay-rebate.php 推广佣金系统
zibpay-user.php 用户支付功能
zibpay-vip.php 会员付费系统
zibpay-withdraw.php 提现功能

后台管理 (/zibpay/functions/admin/)

 
 
文件 核心作用
admin-ajax.php 后台AJAX
admin-options.php 支付系统设置选项
admin.php 支付后台管理

页面模板 (/zibpay/page/)

 
 
文件 核心作用
charge-card.php 卡密充值页面
coupon.php 优惠券页面
income.php 收入统计页面
index.php 支付首页
order.php 订单管理页面
product.php 商品管理页面
rebate.php 佣金页面
shop.php 商城页面
withdraw.php 提现页面

支付网关SDK (/zibpay/sdk/)

 
 
目录 核心作用
epay/ 易支付网关
payjs/ PayJS支付
paypal/ PayPal国际支付
vmq/ 码支付
xhpay/ 讯虎支付
xunhupay/ 虎皮椒支付

支付回调 (/zibpay/shop/)

每个支付网关的异步通知和同步返回处理:

  • notify.php – 支付结果异步通知

  • return.php – 支付完成同步返回

 


完整目录

\—zibll
| 404.php
| archive.php
| author.php
| category.php
| composer.json
| composer.lock
| footer.php
| functions.php
| go.php
| header.php
| image.php
| index.php
| page.php
| screenshot.jpg
| search.php
| sidebar.php
| single.php
| style.css
| tag.php
| update_log.md
|
+—action
| action.php
| ajax.php
| author.php
| captcha.php
| comment.php
| documentnav.php
| function.php
| img.php
| imgcode.php
| main.php
| media.php
| new_posts.php
| post_navs.php
| sign_register.php
| user.php
|
+—css
| admin-main.css
| admin-main.min.css
| animate.css
| animate.min.css
| bootstrap.css
| bootstrap.min.css
| editor-style.css
| editor-style.min.css
| font-awesome.min.css
| main.css
| main.min.css
| new-posts.css
| new-posts.min.css
| page-navs.css
| page-navs.min.css
| swiper.css
| swiper.min.css
| tinymce.css
| tinymce.min.css
| widget-set.css
| widget-set.min.css
|
+—fonts
| fontawesome-webfont.eot
| fontawesome-webfont.svg
| fontawesome-webfont.ttf
| fontawesome-webfont.woff
| img-code.ttf
| lg.svg
|
+—img
| | 404.svg
| | avatar-default.png
| | draft-badge.svg
| | favicon.png
| | hot-comment.svg
| | icon.png
| | logo.png
| | logo_dark.png
| | mail-bg.png
| | msg-auth.svg
| | msg-comment.svg
| | msg-followed.svg
| | msg-like.svg
| | msg-news.svg
| | msg-pay.svg
| | msg-posts.svg
| | msg-private.svg
| | msg-promotion.svg
| | msg-system.svg
| | msg-vip.svg
| | msg-withdraw.svg
| | msg.svg
| | null-2.svg
| | null-cap.svg
| | null-love.svg
| | null-money.svg
| | null-order.svg
| | null-post.svg
| | null-search.svg
| | null-set.svg
| | null-user.svg
| | null.svg
| | pending-badge.svg
| | playing.svg
| | qrcode.png
| | share_img.jpg
| | slide.jpg
| | slider-bg.jpg
| | slider-layer-1.png
| | slider-layer-2.png
| | spare-pic.svg
| | thumbnail-lg.svg
| | thumbnail-null.svg
| | thumbnail-sm.svg
| | thumbnail.svg
| | topic.jpg
| | trash-badge.svg
| | upload-add.svg
| | user-ban-2.svg
| | user-ban.svg
| | user-level-1.png
| | user-level-10.png
| | user-level-2.png
| | user-level-3.png
| | user-level-4.png
| | user-level-5.png
| | user-level-6.png
| | user-level-7.png
| | user-level-8.png
| | user-level-9.png
| | user_t.jpg
| | vip-1.svg
| | vip-2.svg
| |
| +—captcha
| | 0.jpg
| | 1.jpg
| | 10.jpg
| | 11.jpg
| | 12.jpg
| | 13.jpg
| | 14.jpg
| | 15.jpg
| | 16.jpg
| | 17.jpg
| | 18.jpg
| | 19.jpg
| | 2.jpg
| | 20.jpg
| | 3.jpg
| | 4.jpg
| | 5.jpg
| | 6.jpg
| | 7.jpg
| | 8.jpg
| | 9.jpg
| |
| +—medal
| | medal-1.svg
| | medal-10.svg
| | medal-11.svg
| | medal-12.svg
| | medal-13.svg
| | medal-14.svg
| | medal-15.svg
| | medal-16.svg
| | medal-17.svg
| | medal-18.svg
| | medal-19.svg
| | medal-2.svg
| | medal-20.svg
| | medal-21.svg
| | medal-22.svg
| | medal-23.svg
| | medal-24.svg
| | medal-25.svg
| | medal-26.svg
| | medal-27.svg
| | medal-28.svg
| | medal-29.svg
| | medal-3.svg
| | medal-30.svg
| | medal-4.svg
| | medal-5.svg
| | medal-6.svg
| | medal-7.svg
| | medal-8.svg
| | medal-9.svg
| | medal-background.svg
| |
| \—smilies
| aini.gif
| aixin.gif
| aoman.gif
| baiyan.gif
| bangbangtang.gif
| baojin.gif
| baoquan.gif
| bishi.gif
| bizui.gif
| cahan.gif
| caidao.gif
| chi.gif
| ciya.gif
| dabing.gif
| daku.gif
| dan.gif
| deyi.gif
| doge.gif
| fadai.gif
| fanu.gif
| fendou.gif
| ganga.gif
| gouyin.gif
| guzhang.gif
| haixiu.gif
| hanxiao.gif
| haobang.gif
| haqian.gif
| hecai.gif
| hexie.gif
| huaixiao.gif
| jie.gif
| jingkong.gif
| jingxi.gif
| jingya.gif
| juhua.gif
| keai.gif
| kelian.gif
| koubi.gif
| ku.gif
| kuaikule.gif
| kulou.gif
| kun.gif
| lanqiu.gif
| leiben.gif
| lenghan.gif
| liuhan.gif
| liulei.gif
| nanguo.gif
| OK.gif
| penxue.gif
| piezui.gif
| pijiu.gif
| qiang.gif
| qiaoda.gif
| qinqin.gif
| qiudale.gif
| quantou.gif
| saorao.gif
| se.gif
| shengli.gif
| shouqiang.gif
| shuai.gif
| shui.gif
| tiaopi.gif
| touxiao.gif
| tu.gif
| tuosai.gif
| weiqu.gif
| weixiao.gif
| woshou.gif
| wozuimei.gif
| wunai.gif
| xia.gif
| xiaojiujie.gif
| xiaoku.gif
| xiaoyanger.gif
| xieyanxiao.gif
| xigua.gif
| xu.gif
| yangtuo.gif
| yinxian.gif
| yiwen.gif
| youhengheng.gif
| youling.gif
| yun.gif
| zaijian.gif
| zhayanjian.gif
| zhemo.gif
| zhouma.gif
| zhuakuang.gif
| zuohengheng.gif
|
+—inc
| | dependent.php
| | inc.php
| |
| +—class
| | api-audit-class.php
| | class.php
| | db-class.php
| | express-class.php
| | file-class.php
| | qrcode.class.php
| | SignatureHelper.php
| | sms-class.php
| | tx-sdk-send.php
| |
| +—code
| | action.php
| | aut.php
| | code.php
| | file.php
| | new_aut.php
| | require.php
| | tool.php
| | update.php
| |
| +—codestar-framework
| | | codestar-framework.php
| | | index.php
| | |
| | +—assets
| | | +—css
| | | | style-rtl.css
| | | | style-rtl.min.css
| | | | style.css
| | | | style.min.css
| | | |
| | | +—images
| | | | checkerboard.png
| | | | wp-logo.svg
| | | | wp-plugin-logo.svg
| | | |
| | | +—js
| | | | gutenberg.js
| | | | main.js
| | | | main.min.js
| | | | plugins.js
| | | | plugins.min.js
| | | |
| | | \—scss
| | | | style-rtl.scss
| | | | style.scss
| | | |
| | | \—vendor
| | | _base.scss
| | | _chosen.scss
| | | _customizer.scss
| | | _fields.scss
| | | _helper.scss
| | | _modal.scss
| | | _navmenu.scss
| | | _profile.scss
| | | _responsive.scss
| | | _taxonomy.scss
| | | _themes.scss
| | | _welcome.scss
| | | _widget.scss
| | |
| | +—classes
| | | abstract.class.php
| | | admin-options.class.php
| | | comment-options.class.php
| | | customize-options.class.php
| | | fields.class.php
| | | metabox-options.class.php
| | | nav-menu-options.class.php
| | | profile-options.class.php
| | | setup.class.php
| | | shortcode-options.class.php
| | | taxonomy-options.class.php
| | | widget-options.class.php
| | |
| | +—fields
| | | | index.php
| | | |
| | | +—accordion
| | | | accordion.php
| | | |
| | | +—background
| | | | background.php
| | | |
| | | +—backup
| | | | backup.php
| | | |
| | | +—border
| | | | border.php
| | | |
| | | +—button_set
| | | | button_set.php
| | | |
| | | +—callback
| | | | callback.php
| | | |
| | | +—checkbox
| | | | checkbox.php
| | | |
| | | +—code_editor
| | | | code_editor.php
| | | |
| | | +—color
| | | | color.php
| | | |
| | | +—color_group
| | | | color_group.php
| | | |
| | | +—content
| | | | content.php
| | | |
| | | +—date
| | | | date.php
| | | |
| | | +—dimensions
| | | | dimensions.php
| | | |
| | | +—fieldset
| | | | fieldset.php
| | | |
| | | +—gallery
| | | | gallery.php
| | | |
| | | +—group
| | | | group.php
| | | |
| | | +—heading
| | | | heading.php
| | | |
| | | +—icon
| | | | fa4-icons.php
| | | | fa5-icons.php
| | | | icon.php
| | | |
| | | +—image_select
| | | | image_select.php
| | | |
| | | +—link
| | | | link.php
| | | |
| | | +—link_color
| | | | link_color.php
| | | |
| | | +—map
| | | | map.php
| | | |
| | | +—media
| | | | media.php
| | | |
| | | +—notice
| | | | notice.php
| | | |
| | | +—number
| | | | number.php
| | | |
| | | +—palette
| | | | palette.php
| | | |
| | | +—radio
| | | | radio.php
| | | |
| | | +—repeater
| | | | repeater.php
| | | |
| | | +—select
| | | | select.php
| | | |
| | | +—slider
| | | | slider.php
| | | |
| | | +—sortable
| | | | sortable.php
| | | |
| | | +—sorter
| | | | sorter.php
| | | |
| | | +—spacing
| | | | spacing.php
| | | |
| | | +—spinner
| | | | spinner.php
| | | |
| | | +—subheading
| | | | subheading.php
| | | |
| | | +—submessage
| | | | submessage.php
| | | |
| | | +—switcher
| | | | switcher.php
| | | |
| | | +—tabbed
| | | | tabbed.php
| | | |
| | | +—text
| | | | text.php
| | | |
| | | +—textarea
| | | | textarea.php
| | | |
| | | +—typography
| | | | google-fonts.php
| | | | typography.php
| | | |
| | | +—upload
| | | | upload.php
| | | |
| | | \—wp_editor
| | | wp_editor.php
| | |
| | +—functions
| | | actions.php
| | | customize.php
| | | helpers.php
| | | sanitize.php
| | | validate.php
| | | walker.php
| | |
| | +—languages
| | | ar.mo
| | | ar.po
| | | az.mo
| | | az.po
| | | bn_BD.mo
| | | bn_BD.po
| | | default.pot
| | | de_DE.mo
| | | de_DE.po
| | | es_ES.mo
| | | es_ES.po
| | | fr_FR.mo
| | | fr_FR.po
| | | hi_IN.mo
| | | hi_IN.po
| | | id_ID.mo
| | | id_ID.po
| | | it_IT.mo
| | | it_IT.po
| | | ja.mo
| | | ja.po
| | | ko_KR.mo
| | | ko_KR.po
| | | ne_NP.mo
| | | ne_NP.po
| | | nl_NL.mo
| | | nl_NL.po
| | | pl_PL.mo
| | | pl_PL.po
| | | pt_PT.mo
| | | pt_PT.po
| | | ru_RU.mo
| | | ru_RU.po
| | | th.mo
| | | th.po
| | | tr_TR.mo
| | | tr_TR.po
| | | vi.mo
| | | vi.po
| | | zh_CN.mo
| | | zh_CN.po
| | |
| | +—samples
| | | admin-options.php
| | | comment-options.php
| | | customize-options.php
| | | metabox-options.php
| | | nav-menu-options.php
| | | profile-options.php
| | | shortcode-options.php
| | | taxonomy-options.php
| | | widget-options.php
| | |
| | \—views
| | about.php
| | documentation.php
| | footer.php
| | free-vs-premium.php
| | header.php
| | quickstart.php
| | relnotes.php
| | support.php
| | welcome.php
| |
| +—csf-framework
| | +—assets
| | | +—css
| | | | style.css
| | | | style.min.css
| | | |
| | | +—images
| | | | 1col.png
| | | | 2cl.png
| | | | 2cr.png
| | | | audit_test.jpg
| | | | card-style-2.jpg
| | | | card-style-3.jpg
| | | | card-style-null.jpg
| | | | checkerboard.png
| | | | conter-bottom.jpg
| | | | conter-conter.jpg
| | | | fcode_template_1.png
| | | | header_layout_1.png
| | | | header_layout_2.png
| | | | header_layout_3.png
| | | | ico-delete.png
| | | | left-bottom.jpg
| | | | left-conter.jpg
| | | | list-style-2.jpg
| | | | list-style-null.jpg
| | | | list_no_margin.png
| | | | list_separate.png
| | | | mobile_header_layout_center.png
| | | | mobile_header_layout_left.png
| | | | related_img.png
| | | | related_list.png
| | | | related_text.png
| | | | right-bottom.jpg
| | | | right-conter.jpg
| | | | wp-logo.svg
| | | | wp-plugin-logo.svg
| | | |
| | | +—js
| | | | main.js
| | | | main.min.js
| | | |
| | | +—libs
| | | | \—codemirror
| | | | +—addon
| | | | | \—mode
| | | | | loadmode.min.js
| | | | |
| | | | +—lib
| | | | | codemirror.min.css
| | | | | codemirror.min.js
| | | | |
| | | | +—mode
| | | | | +—css
| | | | | | css.min.js
| | | | | |
| | | | | +—htmlmixed
| | | | | | htmlmixed.min.js
| | | | | |
| | | | | +—javascript
| | | | | | javascript.min.js
| | | | | |
| | | | | \—xml
| | | | | xml.min.js
| | | | |
| | | | \—theme
| | | | dracula.min.css
| | | |
| | | \—scss
| | | | style-rtl.scss
| | | | style.scss
| | | |
| | | \—vendor
| | | _base.scss
| | | _chosen.scss
| | | _customizer.scss
| | | _fields.scss
| | | _helper.scss
| | | _modal.scss
| | | _navmenu.scss
| | | _profile.scss
| | | _responsive.scss
| | | _taxonomy.scss
| | | _themes.scss
| | | _welcome.scss
| | | _widget.scss
| | |
| | +—classes
| | | admin-options.class.php
| | | taxonomy-options.class.php
| | | zib-csf.class.php
| | |
| | \—fields
| | +—accordion
| | | accordion.php
| | |
| | +—background
| | | background.php
| | |
| | +—between_number
| | | between_number.php
| | |
| | +—code_editor
| | | code_editor.php
| | |
| | +—group
| | | group.php
| | |
| | +—palette
| | | palette.php
| | |
| | +—repeater
| | | repeater.php
| | |
| | +—select
| | | select.php
| | |
| | +—text
| | | text.php
| | |
| | \—upload
| | upload.php
| |
| +—functions
| | | functions.php
| | | zib-attachment.php
| | | zib-author.php
| | | zib-baidu.php
| | | zib-category.php
| | | zib-comments-list.php
| | | zib-content.php
| | | zib-email.php
| | | zib-footer.php
| | | zib-frontend-set.php
| | | zib-head.php
| | | zib-header.php
| | | zib-index.php
| | | zib-page.php
| | | zib-post.php
| | | zib-posts-list.php
| | | zib-search.php
| | | zib-share-wechat.php
| | | zib-share.php
| | | zib-single.php
| | | zib-svg-icon.php
| | | zib-theme.php
| | | zib-tool.php
| | | zib-user.php
| | |
| | +—admin
| | | admin-main.php
| | | admin-set.php
| | |
| | +—bbs
| | | | bbs.php
| | | |
| | | +—action
| | | | action.php
| | | | ajax-comment.php
| | | | ajax-other.php
| | | | ajax-plate.php
| | | | ajax-posts.php
| | | | ajax-term.php
| | | | ajax-user.php
| | | |
| | | +—admin
| | | | meta-option.php
| | | | option.php
| | | |
| | | +—assets
| | | | +—css
| | | | | main.css
| | | | | main.min.css
| | | | |
| | | | +—img
| | | | \—js
| | | | main.js
| | | | main.min.js
| | | |
| | | +—inc
| | | | class.admin.php
| | | | class.init.php
| | | | comment.php
| | | | edit-posts.php
| | | | edit.php
| | | | functions.php
| | | | home.php
| | | | moderator.php
| | | | msg.php
| | | | plate-cat.php
| | | | plate.php
| | | | posts.php
| | | | setup.php
| | | | single.php
| | | | template.php
| | | | term.php
| | | | user-page.php
| | | | user.php
| | | |
| | | +—page
| | | | forum-tag.php
| | | | forum-topic.php
| | | | home.php
| | | | plate-cat.php
| | | | plate-edit.php
| | | | plate.php
| | | | posts-edit.php
| | | | posts.php
| | | |
| | | +—template
| | | | comments.php
| | | |
| | | \—widgets
| | | widgets-other.php
| | | widgets-plate.php
| | | widgets-posts.php
| | | widgets-term.php
| | | widgets.php
| | |
| | +—message
| | | | functions.php
| | | |
| | | +—class
| | | | message-class.php
| | | | private-class.php
| | | |
| | | +—functions
| | | | admin.php
| | | | admin_page.php
| | | | ajax.php
| | | | new.php
| | | | user.php
| | | | wechat-template-msg.php
| | | |
| | | \—page
| | | msg-center.php
| | |
| | +—rest-api
| | | function.php
| | |
| | +—shop
| | | | shop.php
| | | |
| | | +—action
| | | | action.php
| | | | other.php
| | | |
| | | +—admin
| | | | | admin.php
| | | | |
| | | | +—actions
| | | | | ajax.php
| | | | |
| | | | +—options
| | | | | admin-option.php
| | | | | meta-option.php
| | | | | option-module.php
| | | | | term-option.php
| | | | |
| | | | \—page
| | | +—assets
| | | | +—css
| | | | | main.css
| | | | | main.min.css
| | | | |
| | | | +—img
| | | | \—js
| | | | china-regions.json
| | | | china-regions.md
| | | | main.js
| | | | main.min.js
| | | |
| | | +—inc
| | | | after-sale.php
| | | | author.php
| | | | cart.php
| | | | cat.php
| | | | class.init.php
| | | | class.setup.php
| | | | comment.php
| | | | discount.php
| | | | functions.php
| | | | home.php
| | | | lists.php
| | | | msg.php
| | | | order.php
| | | | pay.php
| | | | product.php
| | | | public.php
| | | | shipping.php
| | | | single.php
| | | | tag.php
| | | | template.php
| | | | term.php
| | | | user-center.php
| | | | user.php
| | | | vue.php
| | | |
| | | +—page
| | | | cart.php
| | | | cat.php
| | | | dis.php
| | | | product-edit.php
| | | | product.php
| | | | tag.php
| | | |
| | | +—template
| | | | comments.php
| | | | v-cart.html
| | | | v-confirm-modal.html
| | | |
| | | \—widgets
| | | widgets-other.php
| | | widgets-product.php
| | | widgets-term.php
| | | widgets.php
| | |
| | \—user
| | | ajax.php
| | | invit-code.php
| | | page.php
| | | user-auth.php
| | | user-ban.php
| | | user-cap.php
| | | user-checkin.php
| | | user-level.php
| | | user.php
| | | user_medal.php
| | |
| | +—admin
| | | admin.php
| | | auth-page.php
| | | ban-page.php
| | | invit-code-page.php
| | |
| | \—page
| | user-center.php
| |
| +—options
| | action.php
| | admin-options.php
| | metabox-options.php
| | options-module.php
| | options.php
| | profile-options.php
| | upgrade.php
| | zib-code.php
| | zib-update.php
| |
| \—widgets
| widget-class.php
| widget-index.php
| widget-more.php
| widget-posts.php
| widget-slider.php
| widget-user.php
|
+—js
| | admin-main.js
| | admin-main.min.js
| | author.js
| | author.min.js
| | captcha.js
| | captcha.min.js
| | comment.js
| | comment.min.js
| | editextend.js
| | editextend.min.js
| | gutenberg-extend.js
| | gutenberg-extend.min.js
| | imgbox.js
| | imgbox.min.js
| | input-expand.js
| | input-expand.min.js
| | loader.js
| | main.js
| | main.min.js
| | message.js
| | message.min.js
| | mini-touch.js
| | mini-touch.min.js
| | mini-upload.js
| | mini-upload.min.js
| | page-edit.js
| | page-edit.min.js
| | page-navs.js
| | page-navs.min.js
| | page-template.js
| | page-template.min.js
| | poster-share.js
| | poster-share.min.js
| | precode.js
| | section-navs.js
| | section-navs.min.js
| | sign-register.js
| | sign-register.min.js
| | slidercaptcha.js
| | slidercaptcha.min.js
| | svg-icon.js
| | waterfall.js
| | waterfall.min.js
| | weixin-share.js
| | weixin-share.min.js
| | widget-set.js
| | widget-set.min.js
| |
| +—enlighter
| | enlighterjs.atomic.min.css
| | enlighterjs.beyond.min.css
| | enlighterjs.bootstrap4.min.css
| | enlighterjs.classic.min.css
| | enlighterjs.css
| | enlighterjs.dracula.min.css
| | enlighterjs.droide.min.css
| | enlighterjs.eclipse.min.css
| | enlighterjs.enlighter.min.css
| | enlighterjs.godzilla.min.css
| | enlighterjs.js
| | enlighterjs.min.css
| | enlighterjs.min.js
| | enlighterjs.minimal.min.css
| | enlighterjs.monokai.min.css
| | enlighterjs.mowtwo.min.css
| | enlighterjs.rowhammer.min.css
| |
| \—libs
| bootstrap.js
| bootstrap.min.js
| clipboard.js
| clipboard.min.js
| dash.all.min.js
| DPlayer.js
| DPlayer.min.js
| flv.min.js
| grade.js
| grade.min.js
| hls.min.js
| html5.min.js
| instantclick.min.js
| jquery.cookie.min.js
| jquery.min.js
| jquery.qrcode.min.js
| lazysizes.min.js
| petite-vue.iife.js
| Sortable.min.js
| spark-md5.js
| spark-md5.min.js
| swiper.js
| swiper.min.js
| swiper.min.js.map
|
+—oauth
| | index.php
| | oauth.php
| |
| +—agent
| | callback.php
| | login.php
| |
| +—alipay
| | callback.php
| | login.php
| |
| +—alipayagent
| | login.php
| |
| +—baidu
| | callback.php
| | login.php
| |
| +—baiduagent
| | login.php
| |
| +—clogin
| | callback.php
| | login.php
| |
| +—gitee
| | callback.php
| | login.php
| |
| +—github
| | callback.php
| | login.php
| |
| +—githubagent
| | login.php
| |
| +—qq
| | callback.php
| | login.php
| |
| +—qqagent
| | login.php
| |
| +—sdk
| | agent.php
| | clogin.php
| | weixingzh.php
| |
| +—weibo
| | callback.php
| | login.php
| |
| +—weiboagent
| | login.php
| |
| +—weixin
| | callback.php
| | login.php
| |
| +—weixinagent
| | login.php
| |
| \—weixingzh
| callback.php
| login.php
|
+—pages
| archives.php
| documentnav.php
| download.php
| forums.php
| links.php
| newposts.php
| postsnavs.php
| user-auth.php
| user-sign.php
|
+—template
| category-dosc.php
| category-topics.php
| comments.php
| content-404.php
| excerpt.php
| single-dosc.php
|
+—vendor
| | autoload.php
| |
| +—bin
| +—composer
| | autoload_classmap.php
| | autoload_files.php
| | autoload_namespaces.php
| | autoload_psr4.php
| | autoload_real.php
| | autoload_static.php
| | ClassLoader.php
| | installed.json
| | installed.php
| | InstalledVersions.php
| | LICENSE
| | platform_check.php
| |
| +—guzzlehttp
| | +—guzzle
| | | | CHANGELOG.md
| | | | composer.json
| | | | LICENSE
| | | | README.md
| | | | UPGRADING.md
| | | |
| | | \—src
| | | | BodySummarizer.php
| | | | BodySummarizerInterface.php
| | | | Client.php
| | | | ClientInterface.php
| | | | ClientTrait.php
| | | | functions.php
| | | | functions_include.php
| | | | HandlerStack.php
| | | | MessageFormatter.php
| | | | MessageFormatterInterface.php
| | | | Middleware.php
| | | | Pool.php
| | | | PrepareBodyMiddleware.php
| | | | RedirectMiddleware.php
| | | | RequestOptions.php
| | | | RetryMiddleware.php
| | | | TransferStats.php
| | | | Utils.php
| | | |
| | | +—Cookie
| | | | CookieJar.php
| | | | CookieJarInterface.php
| | | | FileCookieJar.php
| | | | SessionCookieJar.php
| | | | SetCookie.php
| | | |
| | | +—Exception
| | | | BadResponseException.php
| | | | ClientException.php
| | | | ConnectException.php
| | | | GuzzleException.php
| | | | InvalidArgumentException.php
| | | | RequestException.php
| | | | ServerException.php
| | | | TooManyRedirectsException.php
| | | | TransferException.php
| | | |
| | | \—Handler
| | | CurlFactory.php
| | | CurlFactoryInterface.php
| | | CurlHandler.php
| | | CurlMultiHandler.php
| | | EasyHandle.php
| | | HeaderProcessor.php
| | | MockHandler.php
| | | Proxy.php
| | | StreamHandler.php
| | |
| | +—promises
| | | | CHANGELOG.md
| | | | composer.json
| | | | LICENSE
| | | | Makefile
| | | | README.md
| | | |
| | | \—src
| | | AggregateException.php
| | | CancellationException.php
| | | Coroutine.php
| | | Create.php
| | | Each.php
| | | EachPromise.php
| | | FulfilledPromise.php
| | | functions.php
| | | functions_include.php
| | | Is.php
| | | Promise.php
| | | PromiseInterface.php
| | | PromisorInterface.php
| | | RejectedPromise.php
| | | RejectionException.php
| | | TaskQueue.php
| | | TaskQueueInterface.php
| | | Utils.php
| | |
| | \—psr7
| | | CHANGELOG.md
| | | composer.json
| | | LICENSE
| | | README.md
| | |
| | \—src
| | | AppendStream.php
| | | BufferStream.php
| | | CachingStream.php
| | | DroppingStream.php
| | | FnStream.php
| | | Header.php
| | | HttpFactory.php
| | | InflateStream.php
| | | LazyOpenStream.php
| | | LimitStream.php
| | | Message.php
| | | MessageTrait.php
| | | MimeType.php
| | | MultipartStream.php
| | | NoSeekStream.php
| | | PumpStream.php
| | | Query.php
| | | Request.php
| | | Response.php
| | | Rfc7230.php
| | | ServerRequest.php
| | | Stream.php
| | | StreamDecoratorTrait.php
| | | StreamWrapper.php
| | | UploadedFile.php
| | | Uri.php
| | | UriNormalizer.php
| | | UriResolver.php
| | | Utils.php
| | |
| | \—Exception
| | MalformedUriException.php
| |
| +—psr
| | +—http-client
| | | | CHANGELOG.md
| | | | composer.json
| | | | LICENSE
| | | | README.md
| | | |
| | | \—src
| | | ClientExceptionInterface.php
| | | ClientInterface.php
| | | NetworkExceptionInterface.php
| | | RequestExceptionInterface.php
| | |
| | +—http-factory
| | | | .gitignore
| | | | .pullapprove.yml
| | | | composer.json
| | | | LICENSE
| | | | README.md
| | | |
| | | \—src
| | | RequestFactoryInterface.php
| | | ResponseFactoryInterface.php
| | | ServerRequestFactoryInterface.php
| | | StreamFactoryInterface.php
| | | UploadedFileFactoryInterface.php
| | | UriFactoryInterface.php
| | |
| | \—http-message
| | | CHANGELOG.md
| | | composer.json
| | | LICENSE
| | | README.md
| | |
| | \—src
| | MessageInterface.php
| | RequestInterface.php
| | ResponseInterface.php
| | ServerRequestInterface.php
| | StreamInterface.php
| | UploadedFileInterface.php
| | UriInterface.php
| |
| +—qcloudsms
| | \—qcloudsms_php
| | | .gitignore
| | | composer.json
| | | gendoc.sh
| | | LICENSE
| | | README.md
| | | sami_config.php
| | |
| | +—demo
| | | | README.md
| | | |
| | | +—composer
| | | | app.php
| | | | composer.json
| | | | README.md
| | | |
| | | \—simple
| | | app.php
| | |
| | +—docs
| | | | classes.html
| | | | doc-index.html
| | | | index.html
| | | | interfaces.html
| | | | namespaces.html
| | | | opensearch.xml
| | | | PROJECT_VERSION
| | | | Qcloud.html
| | | | renderer.index
| | | | sami.js
| | | | SAMI_VERSION
| | | | search.html
| | | | traits.html
| | | |
| | | +—css
| | | | bootstrap-theme.min.css
| | | | bootstrap.min.css
| | | | sami.css
| | | |
| | | +—fonts
| | | | glyphicons-halflings-regular.eot
| | | | glyphicons-halflings-regular.svg
| | | | glyphicons-halflings-regular.ttf
| | | | glyphicons-halflings-regular.woff
| | | |
| | | +—images
| | | | image1.png
| | | | image2.png
| | | | image3.png
| | | | image4.png
| | | | image5.png
| | | | image6.png
| | | | image7.png
| | | | image8.png
| | | | image9.png
| | | |
| | | +—js
| | | | bootstrap.min.js
| | | | jquery-1.11.1.min.js
| | | | typeahead.min.js
| | | |
| | | \—Qcloud
| | | | Sms.html
| | | |
| | | \—Sms
| | | FileVoiceSender.html
| | | SmsMobileStatusPuller.html
| | | SmsMultiSender.html
| | | SmsSenderUtil.html
| | | SmsSingleSender.html
| | | SmsStatusPuller.html
| | | SmsVoicePromptSender.html
| | | SmsVoiceVerifyCodeSender.html
| | | TtsVoiceSender.html
| | | VoiceFileUploader.html
| | |
| | \—src
| | FileVoiceSender.php
| | index.php
| | SmsMobileStatusPuller.php
| | SmsMultiSender.php
| | SmsSenderUtil.php
| | SmsSingleSender.php
| | SmsStatusPuller.php
| | SmsVoicePromptSender.php
| | SmsVoiceVerifyCodeSender.php
| | TtsVoiceSender.php
| | VoiceFileUploader.php
| |
| +—ralouphie
| | \—getallheaders
| | | composer.json
| | | LICENSE
| | | README.md
| | |
| | \—src
| | getallheaders.php
| |
| +—symfony
| | \—deprecation-contracts
| | .gitignore
| | CHANGELOG.md
| | composer.json
| | function.php
| | LICENSE
| | README.md
| |
| +—tencentcloud
| | +—captcha
| | | | composer.json
| | | | LICENSE
| | | | README.MD
| | | |
| | | \—src
| | | \—TencentCloud
| | | \—Captcha
| | | \—V20190722
| | | | CaptchaClient.php
| | | |
| | | \—Models
| | | CaptchaOperDataInterceptUnit.php
| | | CaptchaOperDataLoadTimeUnit.php
| | | CaptchaOperDataRes.php
| | | CaptchaOperDataTryTimesDistributeUnit.php
| | | CaptchaOperDataTryTimesUnit.php
| | | CaptchaQueryData.php
| | | CaptchaTicketDataRes.php
| | | CaptchaUserAllAppId.php
| | | DescribeCaptchaAppIdInfoRequest.php
| | | DescribeCaptchaAppIdInfoResponse.php
| | | DescribeCaptchaDataRequest.php
| | | DescribeCaptchaDataResponse.php
| | | DescribeCaptchaDataSumRequest.php
| | | DescribeCaptchaDataSumResponse.php
| | | DescribeCaptchaMiniDataRequest.php
| | | DescribeCaptchaMiniDataResponse.php
| | | DescribeCaptchaMiniDataSumRequest.php
| | | DescribeCaptchaMiniDataSumResponse.php
| | | DescribeCaptchaMiniOperDataRequest.php
| | | DescribeCaptchaMiniOperDataResponse.php
| | | DescribeCaptchaMiniResultRequest.php
| | | DescribeCaptchaMiniResultResponse.php
| | | DescribeCaptchaMiniRiskResultRequest.php
| | | DescribeCaptchaMiniRiskResultResponse.php
| | | DescribeCaptchaOperDataRequest.php
| | | DescribeCaptchaOperDataResponse.php
| | | DescribeCaptchaResultRequest.php
| | | DescribeCaptchaResultResponse.php
| | | DescribeCaptchaTicketDataRequest.php
| | | DescribeCaptchaTicketDataResponse.php
| | | DescribeCaptchaUserAllAppIdRequest.php
| | | DescribeCaptchaUserAllAppIdResponse.php
| | | OutputManageMarketingRiskValue.php
| | | TicketAmountUnit.php
| | | TicketInterceptUnit.php
| | | TicketThroughUnit.php
| | | UpdateCaptchaAppIdInfoRequest.php
| | | UpdateCaptchaAppIdInfoResponse.php
| | |
| | \—common
| | | composer.json
| | | LICENSE
| | | README.MD
| | |
| | \—src
| | \—TencentCloud
| | \—Common
| | | AbstractClient.php
| | | AbstractModel.php
| | | Credential.php
| | | Sign.php
| | |
| | +—Exception
| | | TencentCloudSDKException.php
| | |
| | +—Http
| | | HttpConnection.php
| | |
| | \—Profile
| | ClientProfile.php
| | HttpProfile.php
| |
| \—yurunsoft
| +—pay-sdk
| | | composer.json
| | | LICENSE
| | | README.md
| | |
| | \—src
| | | AlipayRequestBase.php
| | | Base.php
| | | NotifyBase.php
| | | PublicBase.php
| | | RequestBase.php
| | | WeixinRequestBase.php
| | |
| | +—Alipay
| | | | SDK.php
| | | |
| | | \—Params
| | | | PublicParams.php
| | | |
| | | +—Pay
| | | | BusinessParams.php
| | | | Request.php
| | | |
| | | +—Refund
| | | | BusinessParams.php
| | | | Request.php
| | | |
| | | +—RefundPwd
| | | | BusinessParams.php
| | | | Request.php
| | | |
| | | \—WapPay
| | | BusinessParams.php
| | | ExtUserInfo.php
| | | Request.php
| | |
| | +—AlipayApp
| | | | SDK.php
| | | |
| | | +—App
| | | | | ExtUserInfo.php
| | | | |
| | | | \—Params
| | | | \—Pay
| | | | BusinessParams.php
| | | | ExtendParams.php
| | | | Request.php
| | | |
| | | +—FTF
| | | | \—Params
| | | | | ExtendParams.php
| | | | | GoodsDetail.php
| | | | |
| | | | +—Pay
| | | | | BusinessParams.php
| | | | | Request.php
| | | | |
| | | | \—QR
| | | | BusinessParams.php
| | | | Request.php
| | | |
| | | +—Fund
| | | | +—Query
| | | | | BusinessParams.php
| | | | | Request.php
| | | | |
| | | | \—Transfer
| | | | BusinessParams.php
| | | | Request.php
| | | |
| | | +—MiniApp
| | | | \—Params
| | | | \—Pay
| | | | BusinessParams.php
| | | | ExtendParams.php
| | | | Request.php
| | | |
| | | +—Page
| | | | \—Params
| | | | | GoodsDetail.php
| | | | |
| | | | \—Pay
| | | | BusinessParams.php
| | | | ExtendParams.php
| | | | Request.php
| | | |
| | | +—Params
| | | | | PublicParams.php
| | | | |
| | | | +—Cancel
| | | | | BusinessParams.php
| | | | | Request.php
| | | | |
| | | | +—Close
| | | | | BusinessParams.php
| | | | | Request.php
| | | | |
| | | | +—DownloadBill
| | | | | BusinessParams.php
| | | | | Request.php
| | | | |
| | | | +—Query
| | | | | BusinessParams.php
| | | | | Request.php
| | | | |
| | | | +—Refund
| | | | | BusinessParams.php
| | | | | Request.php
| | | | |
| | | | +—RefundQuery
| | | | | BusinessParams.php
| | | | | Request.php
| | | | |
| | | | \—Settle
| | | | BusinessParams.php
| | | | Request.php
| | | | RoyaltyParameter.php
| | | |
| | | \—Wap
| | | \—Params
| | | \—Pay
| | | BusinessParams.php
| | | ExtendParams.php
| | | Request.php
| | |
| | +—AlipayCrossBorder
| | | | SDK.php
| | | |
| | | +—Customs
| | | | +—Query
| | | | | Request.php
| | | | |
| | | | \—Submit
| | | | Request.php
| | | |
| | | +—InStore
| | | | +—BarcodePay
| | | | | ExtendInfo.php
| | | | | Request.php
| | | | |
| | | | +—Cancel
| | | | | Request.php
| | | | |
| | | | +—CreateMerchantQR
| | | | | BizData.php
| | | | | ChannelFee.php
| | | | | Request.php
| | | | |
| | | | +—CreateQR
| | | | | Request.php
| | | | |
| | | | +—ModifyMerchantQR
| | | | | Request.php
| | | | |
| | | | +—ModifyStatus
| | | | | Request.php
| | | | |
| | | | +—PreCreate
| | | | | ExtendInfo.php
| | | | | GoodsDetail.php
| | | | | Request.php
| | | | |
| | | | +—Query
| | | | | Request.php
| | | | |
| | | | \—Refund
| | | | Request.php
| | | |
| | | +—Online
| | | | +—DownloadCompare
| | | | | Request.php
| | | | |
| | | | +—DownloadSettlement
| | | | | Request.php
| | | | |
| | | | +—ExchageRate
| | | | | Request.php
| | | | |
| | | | +—Notify
| | | | | Base.php
| | | | | Pay.php
| | | | | Sync.php
| | | | |
| | | | +—NotifyVerify
| | | | | Request.php
| | | | |
| | | | +—Pay
| | | | | Request.php
| | | | |
| | | | +—Query
| | | | | Request.php
| | | | |
| | | | +—Refund
| | | | | Request.php
| | | | |
| | | | \—WapPay
| | | | Request.php
| | | |
| | | \—Params
| | | PublicParams.php
| | | SplitFundInfo.php
| | |
| | +—Lib
| | | | ObjectToArray.php
| | | | XML.php
| | | |
| | | \—Encrypt
| | | AES.php
| | | Base.php
| | | DSA.php
| | | RSA.php
| | | RSA2.php
| | |
| | +—Traits
| | | FormParams.php
| | | JSONParams.php
| | | XMLParams.php
| | |
| | \—Weixin
| | | SDK.php
| | |
| | +—APP
| | | \—Params
| | | | SceneInfo.php
| | | |
| | | +—Client
| | | | Request.php
| | | |
| | | \—Pay
| | | Request.php
| | |
| | +—AuthCodeToOpenid
| | | Request.php
| | |
| | +—CloseOrder
| | | Request.php
| | |
| | +—CompanyPay
| | | +—Bank
| | | | +—Pay
| | | | | Request.php
| | | | |
| | | | \—Query
| | | | Request.php
| | | |
| | | \—Weixin
| | | +—Pay
| | | | Request.php
| | | |
| | | \—Query
| | | Request.php
| | |
| | +—CustomDeclareOrder
| | | Request.php
| | |
| | +—CustomDeclareQuery
| | | Request.php
| | |
| | +—DownloadBill
| | | Request.php
| | |
| | +—ExchageRate
| | | Request.php
| | |
| | +—GetPublicKey
| | | Request.php
| | |
| | +—H5
| | | \—Params
| | | | SceneInfo.php
| | | |
| | | \—Pay
| | | Request.php
| | |
| | +—JSAPI
| | | \—Params
| | | | SceneInfo.php
| | | |
| | | +—JSParams
| | | | Request.php
| | | |
| | | \—Pay
| | | Request.php
| | |
| | +—Micropay
| | | \—Params
| | | | SceneInfo.php
| | | |
| | | \—Pay
| | | Request.php
| | |
| | +—Native
| | | \—Params
| | | | SceneInfo.php
| | | |
| | | \—Pay
| | | Mode1Request.php
| | | Request.php
| | |
| | +—Notify
| | | Base.php
| | | Pay.php
| | | PayMode1.php
| | | Refund.php
| | |
| | +—OrderQuery
| | | Request.php
| | |
| | +—Params
| | | Detail.php
| | | GoodsDetail.php
| | | PayRequestBase.php
| | | PublicParams.php
| | |
| | +—QueryComment
| | | Request.php
| | |
| | +—Refund
| | | Request.php
| | |
| | +—RefundQuery
| | | Request.php
| | |
| | +—Reply
| | | Base.php
| | | Pay.php
| | | PayMode1.php
| | |
| | +—Report
| | | Request.php
| | | Trades.php
| | |
| | +—Reverse
| | | Request.php
| | |
| | +—SettlementQuery
| | | Request.php
| | |
| | \—Shorturl
| | Request.php
| |
| +—yurun-http
| | | .travis.yml
| | | composer.json
| | | LICENSE
| | | README.md
| | |
| | \—src
| | | HttpRequest.php
| | | YurunHttp.php
| | |
| | \—YurunHttp
| | | Attributes.php
| | | FormDataBuilder.php
| | | Random.php
| | |
| | +—Co
| | | Batch.php
| | |
| | +—Cookie
| | | CookieItem.php
| | | CookieManager.php
| | |
| | +—Exception
| | | WebSocketException.php
| | |
| | +—Handler
| | | | Curl.php
| | | | IHandler.php
| | | | Swoole.php
| | | |
| | | +—Contract
| | | | IConnectionManager.php
| | | |
| | | \—Swoole
| | | BaseConnectionManager.php
| | | Http2ConnectionManager.php
| | | HttpConnectionManager.php
| | |
| | +—Http
| | | | Request.php
| | | | Response.php
| | | |
| | | \—Psr7
| | | | AbstractMessage.php
| | | | Request.php
| | | | Response.php
| | | | ServerRequest.php
| | | | UploadedFile.php
| | | | Uri.php
| | | |
| | | \—Consts
| | | MediaType.php
| | | RequestHeader.php
| | | RequestMethod.php
| | | ResponseHeader.php
| | | StatusCode.php
| | |
| | +—Http2
| | | IHttp2Client.php
| | | SwooleClient.php
| | |
| | +—Stream
| | | FileStream.php
| | | MemoryStream.php
| | | StreamMode.php
| | |
| | +—Traits
| | | TCookieManager.php
| | | THandler.php
| | |
| | \—WebSocket
| | IWebSocketClient.php
| | Swoole.php
| |
| \—yurun-oauth-login
| | composer.json
| | LICENSE
| | README.md
| |
| \—src
| | ApiException.php
| | Base.php
| |
| +—Alipay
| | loginAgent.html
| | OAuth2.php
| |
| +—Baidu
| | loginAgent.html
| | OAuth2.php
| |
| +—Coding
| | loginAgent.html
| | OAuth2.php
| |
| +—CSDN
| | loginAgent.html
| | OAuth2.php
| |
| +—Gitee
| | loginAgent.html
| | OAuth2.php
| |
| +—Github
| | loginAgent.html
| | OAuth2.php
| |
| +—Lib
| | Base.php
| | RSA.php
| | RSA2.php
| |
| +—OSChina
| | loginAgent.html
| | OAuth2.php
| |
| +—QQ
| | loginAgent.html
| | OAuth2.php
| | OpenidMode.php
| |
| +—Weibo
| | loginAgent.html
| | OAuth2.php
| |
| \—Weixin
| loginAgent.html
| OAuth2.php
| OpenidMode.php
|
+—yiyan
| qv-yiyan.php
| qv-yiyan.txt
|
\—zibpay
| download.php
| functions.php
|
+—assets
| +—css
| | element-plus.min.css
| | main.css
| | pay-page.css
| |
| +—img
| | alipay-sys-b.png
| | alipay-sys.png
| | pay-alipay-logo.svg
| | pay-balance-logo.svg
| | pay-card-pass-logo.svg
| | pay-paypal-logo.svg
| | pay-qrcode.png
| | pay-wechat-logo.svg
| | Thumbs.db
| | wechat-sys-b.png
| | wechat-sys.png
| |
| \—js
| admin-page.js
| admin-page.min.js
| echarts-c.min.js
| element-plus-zh-cn.min.js
| element-plus.min.js
| highcharts.js
| jquery.form.js
| pay.js
| pay.min.js
| vue-echarts.min.js
| vue-router.global.min.js
| vue.global.min.js
| westeros.js
| westeros.min.js
|
+—class
| ajax-class.php
| alipay-check.php
| card-pass.php
| order-class.php
|
+—functions
| | ajax.php
| | balance-ajax.php
| | income-ajax.php
| | rebate-ajax.php
| | widget.php
| | zibpay-ajax.php
| | zibpay-balance.php
| | zibpay-coupon.php
| | zibpay-download.php
| | zibpay-func.php
| | zibpay-income.php
| | zibpay-msg.php
| | zibpay-order.php
| | zibpay-points.php
| | zibpay-post.php
| | zibpay-rebate.php
| | zibpay-user.php
| | zibpay-vip.php
| | zibpay-withdraw.php
| |
| \—admin
| admin-ajax.php
| admin-options.php
| admin.php
|
+—page
| | charge-card.php
| | coupon.php
| | income.php
| | index.php
| | order.php
| | product.php
| | rebate.php
| | shop.php
| | withdraw.php
| |
| \—template
| after-sale-dialog.php
| after-sale.php
| content.php
| dashboard.php
| footer.php
| header.php
| order-dialog.php
| order.php
| shipping-dialog.php
| shipping.php
|
+—sdk
| +—epay
| | epay.class.php
| |
| +—payjs
| | payjs.class.php
| | README.md
| |
| +—paypal
| | httprequest.php
| | paypal.php
| |
| +—vmq
| | vmq.class.php
| |
| +—xhpay
| | composer.json
| | demo.php
| | LICENSE
| | README.md
| | xhpay.class.php
| |
| \—xunhupay
| api.php
| notify.php
|
\—shop
+—alipay
| notify.php
| return.php
|
+—codepay
| notify.php
|
+—epay
| notify.php
|
+—payjs
| notify.php
|
+—paypal
| return.php
|
+—vmq
| notify.php
| return.php
|
+—weixin
| notify.php
| return.php
|
+—xhpay
| notify.php
| return.php
|
\—xunhupay
notify.php

    请登录后查看评论内容