• 大小: 19.49MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-07-27
  • 语言: 其他
  • 标签: PHP  Fastadmin  

资源简介

Fastadmin 1.0.0.20200228
V1.0.0.20200228_beta
新增 新增语言包缓存
新增 新增生成文件后缀图片
新增 新增Layer弹窗自动获得焦点
新增 新增附件图片按序选择填充
新增 新增插件管理一键切换无远程插件模式
修复 修复发送邮箱验证码时URL错误
修复 修复超级管理员开关无权限的BUG
修复 修复curl请求接口发送文件找不到文件的问题
修复 浏览代码修复加载语言包时,输入模块名称时,无效
修复 修复http request post发送文件失败的问题
优化 优化表格列表开关组件
优化 优化安装脚本
优化 优化CRUD菜单删除
优化 优化前台模板
优化 优化插件列表接口检测
优化 优化系统配置

资源截图

代码片段和文件信息


/*
 * This file is part of Pimple.
 *
 * Copyright (c) 2014 Fabien Potencier
 *
 * Permission is hereby granted free of charge to any person obtaining a copy
 * of this software and associated documentation files (the “Software“) to deal
 * in the Software without restriction including without limitation the rights
 * to use copy modify merge publish distribute sublicense and/or sell
 * copies of the Software and to permit persons to whom the Software is furnished
 * to do so subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED “AS IS“ WITHOUT WARRANTY OF ANY KIND EXPRESS OR
 * IMPLIED INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM DAMAGES OR OTHER
 * LIABILITY WHETHER IN AN ACTION OF CONTRACT TORT OR OTHERWISE ARISING FROM
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */

#ifdef HAVE_CONFIG_H
#include “config.h“
#endif

#include “php.h“
#include “php_ini.h“
#include “ext/standard/info.h“
#include “php_pimple.h“
#include “pimple_compat.h“
#include “zend_interfaces.h“
#include “zend.h“
#include “Zend/zend_closures.h“
#include “ext/spl/spl_exceptions.h“
#include “Zend/zend_exceptions.h“
#include “main/php_output.h“
#include “SAPI.h“

static zend_class_entry *pimple_ce_PsrContainerInterface;
static zend_class_entry *pimple_ce_PsrContainerExceptionInterface;
static zend_class_entry *pimple_ce_PsrNotFoundExceptionInterface;

static zend_class_entry *pimple_ce_ExpectedInvokableException;
static zend_class_entry *pimple_ce_FrozenServiceException;
static zend_class_entry *pimple_ce_InvalidServiceIdentifierException;
static zend_class_entry *pimple_ce_UnknownIdentifierException;

static zend_class_entry *pimple_ce;
static zend_object_handlers pimple_object_handlers;
static zend_class_entry *pimple_closure_ce;
static zend_class_entry *pimple_serviceprovider_ce;
static zend_object_handlers pimple_closure_object_handlers;
static zend_internal_function pimple_closure_invoker_function;

#define FETCH_DIM_HANDLERS_VARS  pimple_object *pimple_obj = NULL; \
ulong index; \
pimple_obj = (pimple_object *)zend_object_store_get_object(object TSRMLS_CC); \

#define PIMPLE_object_HANDLE_INHERITANCE_object_HANDLERS do { \
if (ce != pimple_ce) { \
zend_hash_find(&ce->function_table ZEND_STRS(“offsetget“) (void **)&function); \
if (function->common.scope != ce) { /* if the function is not defined in this actual class */ \
pimple_object_handlers.read_dimension = pimple_object_read_dimension; /* then overwrite the handler to use custom one */ \
} \
zend_hash_find(&ce->function_table ZEND_STRS(“offsetset“) (void **)&function); \
if (function->common.scope != ce) { \
pimp

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         162  2020-03-01 07:58  .bowerrc
     文件         149  2020-03-01 07:58  .env.sample
     目录           0  2020-03-01 07:58  addons\
     目录           0  2020-03-01 07:58  application\
     文件          13  2020-03-01 07:58  application\.htaccess
     目录           0  2020-03-01 07:58  application\admin\
     目录           0  2020-03-01 07:58  application\admin\behavior\
     文件         197  2020-03-01 07:58  application\admin\behavior\AdminLog.php
     目录           0  2020-03-01 07:58  application\admin\command\
     目录           0  2020-03-01 07:58  application\admin\command\Addon\
     目录           0  2020-03-01 07:58  application\admin\command\Addon\stubs\
     文件        1252  2020-03-01 07:58  application\admin\command\Addon\stubs\addon.stub
     文件         845  2020-03-01 07:58  application\admin\command\Addon\stubs\config.stub
     文件         210  2020-03-01 07:58  application\admin\command\Addon\stubs\controller.stub
     文件         148  2020-03-01 07:58  application\admin\command\Addon\stubs\info.stub
     文件       16735  2020-03-01 07:58  application\admin\command\Addon.php
     目录           0  2020-03-01 07:58  application\admin\command\Api\
     目录           0  2020-03-01 07:58  application\admin\command\Api\lang\
     文件         836  2020-03-01 07:58  application\admin\command\Api\lang\zh-cn.php
     目录           0  2020-03-01 07:58  application\admin\command\Api\library\
     文件        9095  2020-03-01 07:58  application\admin\command\Api\library\Builder.php
     文件       18657  2020-03-01 07:58  application\admin\command\Api\library\Extractor.php
     目录           0  2020-03-01 07:58  application\admin\command\Api\template\
     文件       30050  2020-03-01 07:58  application\admin\command\Api\template\index.html
     文件        7063  2020-03-01 07:58  application\admin\command\Api.php
     目录           0  2020-03-01 07:58  application\admin\command\Crud\
     目录           0  2020-03-01 07:58  application\admin\command\Crud\stubs\
     文件         495  2020-03-01 07:58  application\admin\command\Crud\stubs\add.stub
     文件         898  2020-03-01 07:58  application\admin\command\Crud\stubs\controller.stub
     文件        1321  2020-03-01 07:58  application\admin\command\Crud\stubs\controllerindex.stub
     文件         497  2020-03-01 07:58  application\admin\command\Crud\stubs\edit.stub
............此处省略5135个文件信息

评论

共有 条评论