├── cache ├── database │ ├── Query │ │ └── .gitignore │ ├── Seeds │ │ └── .gitignore │ ├── Sql │ │ └── .gitignore │ └── Migrations │ │ └── .gitignore ├── qqwry.dat ├── Readme.txt ├── captcha.ttf ├── preview.png ├── watermark │ ├── default.png │ └── default.ttf ├── api.php ├── app │ └── .htaccess ├── cloud │ └── .htaccess ├── data │ └── .htaccess ├── error │ └── .htaccess ├── file │ └── .htaccess ├── log │ └── .htaccess ├── temp │ └── .htaccess ├── attach │ └── .htaccess ├── authcode │ └── .htaccess ├── backups │ ├── .htaccess │ ├── db │ │ ├── .htaccess │ │ └── index.html │ ├── file │ │ ├── .htaccess │ │ └── index.html │ ├── theme │ │ ├── .htaccess │ │ └── index.html │ └── template │ │ ├── .htaccess │ │ └── index.html ├── config │ ├── .htaccess │ └── notice.php ├── debugbar │ └── .htaccess ├── debuglog │ └── .htaccess ├── session │ └── .htaccess ├── template │ └── .htaccess ├── thread │ └── .htaccess ├── .htaccess └── index.html ├── dayrui ├── System │ ├── Config │ │ ├── DotEnv.php │ │ ├── Filters.php │ │ └── AutoloadConfig.php │ ├── Extend │ │ ├── Database.php │ │ └── Hook.php │ ├── Debug │ │ ├── Toolbar │ │ │ ├── Collectors │ │ │ │ ├── Timers.php │ │ │ │ └── Config.php │ │ │ └── Views │ │ │ │ ├── _files.tpl │ │ │ │ └── _routes.tpl │ │ └── ExceptionHandlerInterface.php │ ├── Exceptions │ │ ├── Views │ │ │ ├── cli │ │ │ │ ├── error_404.php │ │ │ │ └── production.php │ │ │ └── html │ │ │ │ └── production.php │ │ ├── CriticalError.php │ │ ├── HTTPExceptionInterface.php │ │ ├── RuntimeException.php │ │ ├── ExceptionInterface.php │ │ └── HasExitCodeInterface.php │ └── Database │ │ └── Exceptions │ │ ├── ExceptionInterface.php │ │ └── DatabaseException.php ├── Fcms │ ├── Model │ │ ├── Category.php │ │ ├── Content.php │ │ ├── Module.php │ │ ├── Search.php │ │ └── Group.php │ ├── Config │ │ └── Routes.php │ ├── View │ │ ├── install │ │ │ └── footer.html │ │ ├── cron_show.html │ │ ├── go.html │ │ ├── api_test_https.html │ │ ├── cloud_app_file.html │ │ ├── cloud_go.html │ │ ├── api_export_code.html │ │ ├── api_upload_data.html │ │ ├── cloud_app_delete.html │ │ ├── attachment_edit.html │ │ ├── footer.html │ │ ├── main │ │ │ └── mylink.html │ │ ├── api_upload_filelist.html │ │ ├── role_site.html │ │ ├── index_auth_edit.html │ │ ├── api_rewrite_code.html │ │ ├── role_verify.html │ │ ├── api_login.html │ │ ├── cloud_login_ajax.html │ │ ├── html_msg.html │ │ └── cloud_online.html │ ├── Readme.txt │ ├── Control │ │ └── Api │ │ │ ├── Buy.php │ │ │ └── Pay.php │ └── Core │ │ └── App.php ├── ThinkPHP │ ├── System │ │ ├── app │ │ │ ├── .htaccess │ │ │ ├── common.php │ │ │ ├── Request.php │ │ │ ├── service.php │ │ │ ├── provider.php │ │ │ ├── middleware.php │ │ │ ├── event.php │ │ │ └── AppService.php │ │ ├── extend │ │ │ └── .gitignore │ │ ├── ReadMe.txt │ │ ├── vendor │ │ │ └── .htaccess │ │ ├── config │ │ │ ├── middleware.php │ │ │ ├── console.php │ │ │ ├── trace.php │ │ │ ├── session.php │ │ │ ├── cookie.php │ │ │ ├── filesystem.php │ │ │ ├── view.php │ │ │ ├── lang.php │ │ │ └── app.php │ │ └── think │ └── Extend │ │ ├── Hook.php │ │ ├── Controller.php │ │ └── Run.php ├── CodeIgniter │ ├── System │ │ ├── ReadMe.txt │ │ ├── Validation │ │ │ ├── Views │ │ │ │ ├── single.php │ │ │ │ └── list.php │ │ │ └── StrictRules │ │ │ │ └── FileRules.php │ │ ├── Commands │ │ │ └── Generators │ │ │ │ └── Views │ │ │ │ ├── cell_view.tpl.php │ │ │ │ ├── cell.tpl.php │ │ │ │ ├── config.tpl.php │ │ │ │ ├── validation.tpl.php │ │ │ │ ├── seeder.tpl.php │ │ │ │ └── entity.tpl.php │ │ ├── .htaccess │ │ ├── ThirdParty │ │ │ ├── PSR │ │ │ │ └── Log │ │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ │ ├── LoggerAwareInterface.php │ │ │ │ │ ├── LogLevel.php │ │ │ │ │ ├── LoggerAwareTrait.php │ │ │ │ │ └── NullLogger.php │ │ │ ├── Escaper │ │ │ │ └── Exception │ │ │ │ │ ├── ExceptionInterface.php │ │ │ │ │ ├── RuntimeException.php │ │ │ │ │ └── InvalidArgumentException.php │ │ │ └── Kint │ │ │ │ └── resources │ │ │ │ └── compiled │ │ │ │ ├── plain.css │ │ │ │ ├── plain.js │ │ │ │ ├── shared.js │ │ │ │ └── microtime.js │ │ ├── index.html │ │ ├── Debug │ │ │ ├── Toolbar │ │ │ │ └── Views │ │ │ │ │ ├── _files.tpl │ │ │ │ │ ├── _events.tpl │ │ │ │ │ ├── _logs.tpl │ │ │ │ │ ├── _history.tpl │ │ │ │ │ └── _database.tpl │ │ │ └── ExceptionHandlerInterface.php │ │ ├── Language │ │ │ └── en │ │ │ │ ├── RESTful.php │ │ │ │ ├── Test.php │ │ │ │ ├── Language.php │ │ │ │ ├── Log.php │ │ │ │ ├── Filters.php │ │ │ │ ├── Security.php │ │ │ │ ├── Fabricator.php │ │ │ │ ├── Files.php │ │ │ │ ├── Errors.php │ │ │ │ ├── Format.php │ │ │ │ ├── Cache.php │ │ │ │ ├── Number.php │ │ │ │ ├── Encryption.php │ │ │ │ ├── Router.php │ │ │ │ ├── Pager.php │ │ │ │ ├── View.php │ │ │ │ └── Publisher.php │ │ ├── Test │ │ │ ├── Mock │ │ │ │ ├── MockQuery.php │ │ │ │ ├── MockIncomingRequest.php │ │ │ │ ├── MockBuilder.php │ │ │ │ ├── MockAutoload.php │ │ │ │ ├── MockCodeIgniter.php │ │ │ │ ├── MockResourceController.php │ │ │ │ ├── MockTable.php │ │ │ │ ├── MockAppConfig.php │ │ │ │ ├── MockResourcePresenter.php │ │ │ │ ├── MockSecurity.php │ │ │ │ ├── MockEvents.php │ │ │ │ ├── MockCommon.php │ │ │ │ ├── MockResponse.php │ │ │ │ ├── MockSecurityConfig.php │ │ │ │ ├── MockFileLogger.php │ │ │ │ ├── MockServices.php │ │ │ │ └── MockEmail.php │ │ │ ├── CIDatabaseTestCase.php │ │ │ ├── FeatureResponse.php │ │ │ └── IniTestTrait.php │ │ ├── HTTP │ │ │ ├── ResponsableInterface.php │ │ │ └── Exceptions │ │ │ │ └── BadRequestException.php │ │ ├── Exceptions │ │ │ ├── EmergencyError.php │ │ │ ├── AlertError.php │ │ │ ├── HTTPExceptionInterface.php │ │ │ ├── CriticalError.php │ │ │ ├── ExceptionInterface.php │ │ │ ├── HasExitCodeInterface.php │ │ │ ├── TestException.php │ │ │ └── ConfigException.php │ │ ├── Router │ │ │ ├── Exceptions │ │ │ │ ├── MethodNotFoundException.php │ │ │ │ └── RedirectException.php │ │ │ └── AutoRouterInterface.php │ │ ├── Entity.php │ │ ├── Entity │ │ │ └── Cast │ │ │ │ ├── FloatCast.php │ │ │ │ ├── IntegerCast.php │ │ │ │ ├── BooleanCast.php │ │ │ │ ├── ObjectCast.php │ │ │ │ ├── StringCast.php │ │ │ │ ├── URICast.php │ │ │ │ ├── CSVCast.php │ │ │ │ ├── TimestampCast.php │ │ │ │ ├── IntBoolCast.php │ │ │ │ └── ArrayCast.php │ │ ├── Cache │ │ │ └── Exceptions │ │ │ │ └── ExceptionInterface.php │ │ ├── Database │ │ │ └── Exceptions │ │ │ │ ├── DatabaseException.php │ │ │ │ └── ExceptionInterface.php │ │ ├── Format │ │ │ └── FormatterInterface.php │ │ ├── Pager │ │ │ └── Views │ │ │ │ ├── default_simple.php │ │ │ │ └── default_head.php │ │ ├── View │ │ │ └── ViewDecoratorInterface.php │ │ ├── Files │ │ │ └── Exceptions │ │ │ │ └── FileNotFoundException.php │ │ ├── Log │ │ │ └── Exceptions │ │ │ │ └── LogException.php │ │ └── CLI │ │ │ └── Exceptions │ │ │ └── CLIException.php │ ├── Config │ │ ├── Events.php │ │ ├── ForeignCharacters.php │ │ ├── Language │ │ │ └── zh-cn │ │ │ │ └── Cache.php │ │ ├── CURLRequest.php │ │ ├── Autoload.php │ │ ├── Images.php │ │ └── Publisher.php │ ├── View │ │ ├── errors │ │ │ ├── cli │ │ │ │ ├── error_404.php │ │ │ │ ├── production.php │ │ │ │ └── error_exception.php │ │ │ └── html │ │ │ │ ├── error_500.php │ │ │ │ └── production.php │ │ └── toolbar │ │ │ ├── _files.tpl │ │ │ ├── _events.tpl │ │ │ ├── _logs.tpl │ │ │ ├── _routes.tpl │ │ │ ├── _history.tpl │ │ │ ├── _database.tpl │ │ │ └── _views.tpl │ └── Extend │ │ ├── Request.php │ │ ├── Controller.php │ │ ├── Session.php │ │ └── Hook.php ├── Laravel │ ├── System │ │ ├── ReadMe.txt │ │ ├── bootstrap │ │ │ └── cache │ │ │ │ └── .gitignore │ │ ├── vendor │ │ │ └── .htaccess │ │ ├── app │ │ │ ├── Http │ │ │ │ └── Middleware │ │ │ │ │ ├── EncryptCookies.php │ │ │ │ │ ├── VerifyCsrfToken.php │ │ │ │ │ ├── PreventRequestsDuringMaintenance.php │ │ │ │ │ ├── TrustHosts.php │ │ │ │ │ ├── TrimStrings.php │ │ │ │ │ ├── Authenticate.php │ │ │ │ │ └── TrustProxies.php │ │ │ ├── Listeners │ │ │ │ └── QueryListener.php │ │ │ ├── Providers │ │ │ │ ├── BroadcastServiceProvider.php │ │ │ │ ├── AppServiceProvider.php │ │ │ │ └── AuthServiceProvider.php │ │ │ └── Console │ │ │ │ └── Kernel.php │ │ ├── routes │ │ │ ├── channels.php │ │ │ ├── api.php │ │ │ └── console.php │ │ └── config │ │ │ └── cors.php │ └── Extend │ │ ├── Controller.php │ │ └── Hook.php ├── My │ └── Config │ │ ├── Install.php │ │ ├── Menu.php │ │ └── Version.php ├── api.php ├── App │ └── .htaccess └── .htaccess ├── public ├── static │ ├── assets │ │ ├── global │ │ │ ├── css │ │ │ │ ├── my.css │ │ │ │ └── mobile.css │ │ │ ├── plugins │ │ │ │ ├── jquery-minicolors │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── jquery.minicolors.png │ │ │ │ │ ├── readme.md │ │ │ │ │ ├── composer.json │ │ │ │ │ ├── bower.json │ │ │ │ │ └── component.json │ │ │ │ ├── dropzone │ │ │ │ │ └── upload.jpg │ │ │ │ ├── bootstrap-colorpicker │ │ │ │ │ └── img │ │ │ │ │ │ ├── hue.png │ │ │ │ │ │ ├── alpha.png │ │ │ │ │ │ └── saturation.png │ │ │ │ ├── jquery-fileupload │ │ │ │ │ └── img │ │ │ │ │ │ ├── loading.gif │ │ │ │ │ │ └── progressbar.gif │ │ │ │ ├── jquery-multi-select │ │ │ │ │ ├── README.markdown │ │ │ │ │ ├── img │ │ │ │ │ │ ├── switch.png │ │ │ │ │ │ └── switch_original.png │ │ │ │ │ └── LICENSE.txt │ │ │ │ ├── codemirror │ │ │ │ │ ├── addon │ │ │ │ │ │ ├── display │ │ │ │ │ │ │ └── fullscreen.css │ │ │ │ │ │ ├── search │ │ │ │ │ │ │ └── matchesonscrollbar.css │ │ │ │ │ │ ├── fold │ │ │ │ │ │ │ └── foldgutter.css │ │ │ │ │ │ ├── dialog │ │ │ │ │ │ │ └── dialog.css │ │ │ │ │ │ ├── hint │ │ │ │ │ │ │ └── show-hint.css │ │ │ │ │ │ └── mode │ │ │ │ │ │ │ └── multiplex_test.js │ │ │ │ │ └── theme │ │ │ │ │ │ └── neat.css │ │ │ │ ├── jquery-slimscroll │ │ │ │ │ └── README.md │ │ │ │ └── bootstrap-select │ │ │ │ │ └── js │ │ │ │ │ └── i18n │ │ │ │ │ ├── defaults-en_US.min.js │ │ │ │ │ └── defaults-zh_CN.min.js │ │ │ └── img │ │ │ │ ├── view.png │ │ │ │ ├── loading.gif │ │ │ │ ├── sort_asc.png │ │ │ │ ├── sort_both.png │ │ │ │ ├── sort_desc.png │ │ │ │ ├── remove-icon-small.png │ │ │ │ ├── search_icon_light.png │ │ │ │ ├── sidebar-toggler.png │ │ │ │ ├── syncfusion-icons.png │ │ │ │ ├── datatable-row-openclose.png │ │ │ │ └── sidebar-toggler-inverse.png │ │ ├── js │ │ │ ├── my.js │ │ │ └── layer │ │ │ │ └── theme │ │ │ │ └── default │ │ │ │ ├── icon.png │ │ │ │ ├── icon-ext.png │ │ │ │ ├── loading-0.gif │ │ │ │ ├── loading-1.gif │ │ │ │ └── loading-2.gif │ │ ├── logo.png │ │ ├── logo-web.png │ │ ├── images │ │ │ ├── avatar.png │ │ │ ├── ext │ │ │ │ ├── 7z.png │ │ │ │ ├── js.png │ │ │ │ ├── ps.png │ │ │ │ ├── py.png │ │ │ │ ├── rb.png │ │ │ │ ├── up.png │ │ │ │ ├── air.png │ │ │ │ ├── avi.png │ │ │ │ ├── bmp.png │ │ │ │ ├── cmd.png │ │ │ │ ├── code.png │ │ │ │ ├── cpp.png │ │ │ │ ├── css.png │ │ │ │ ├── csv.png │ │ │ │ ├── dll.png │ │ │ │ ├── doc.png │ │ │ │ ├── docx.png │ │ │ │ ├── dwg.png │ │ │ │ ├── edit.png │ │ │ │ ├── exe.png │ │ │ │ ├── file.png │ │ │ │ ├── fla.png │ │ │ │ ├── flv.png │ │ │ │ ├── fon.png │ │ │ │ ├── font.png │ │ │ │ ├── gif.png │ │ │ │ ├── html.png │ │ │ │ ├── info.png │ │ │ │ ├── ini.png │ │ │ │ ├── jpg.png │ │ │ │ ├── mdb.png │ │ │ │ ├── midi.png │ │ │ │ ├── mp3.png │ │ │ │ ├── mp4.png │ │ │ │ ├── mpg.png │ │ │ │ ├── odbc.png │ │ │ │ ├── oexe.png │ │ │ │ ├── ogg.png │ │ │ │ ├── pdf.png │ │ │ │ ├── php.png │ │ │ │ ├── png.png │ │ │ │ ├── pps.png │ │ │ │ ├── ppsx.png │ │ │ │ ├── ppt.png │ │ │ │ ├── pptx.png │ │ │ │ ├── psd.png │ │ │ │ ├── rar.gif │ │ │ │ ├── rar.png │ │ │ │ ├── reg.png │ │ │ │ ├── rtf.png │ │ │ │ ├── sql.png │ │ │ │ ├── svg.png │ │ │ │ ├── swf.png │ │ │ │ ├── tar.png │ │ │ │ ├── tif.png │ │ │ │ ├── tiff.png │ │ │ │ ├── ttf.png │ │ │ │ ├── txt.png │ │ │ │ ├── url.png │ │ │ │ ├── wav.png │ │ │ │ ├── wma.png │ │ │ │ ├── wmv.png │ │ │ │ ├── xls.png │ │ │ │ ├── xlsx.png │ │ │ │ ├── xml.png │ │ │ │ ├── zip.png │ │ │ │ ├── error.png │ │ │ │ ├── folder.png │ │ │ │ ├── search.png │ │ │ │ ├── setting.png │ │ │ │ └── appStore.png │ │ │ ├── nopic.gif │ │ │ ├── mloading.gif │ │ │ ├── loading-0.gif │ │ │ ├── loading-1.gif │ │ │ ├── loading-2.gif │ │ │ ├── star_level1.gif │ │ │ ├── star_level2.gif │ │ │ └── star_level3.gif │ │ ├── layui │ │ │ └── font │ │ │ │ ├── iconfont.eot │ │ │ │ ├── iconfont.ttf │ │ │ │ ├── iconfont.woff │ │ │ │ └── iconfont.woff2 │ │ └── icon │ │ │ └── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── bootstrap-icons.woff │ │ │ ├── bootstrap-icons.woff2 │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ └── default │ │ └── index.html ├── api │ ├── language │ │ ├── en │ │ │ └── lang.php │ │ └── zh-cn │ │ │ └── lang.php │ └── cron.php ├── uploadfile │ ├── .htaccess │ ├── member │ │ └── index.html │ ├── thumb │ │ └── index.html │ └── weixin │ │ └── index.html ├── favicon.ico ├── mobile │ ├── favicon.ico │ ├── index.php │ └── api.php └── admin.php ├── config ├── custom.php ├── api.php ├── hooks.php ├── .htaccess ├── notice │ └── email │ │ └── admin_password_error.html ├── fileext.php ├── myfield │ └── test.php ├── field.php └── rewrite.php ├── template ├── pc │ └── default │ │ ├── thumb.jpg │ │ └── home │ │ └── 404.html ├── mobile │ └── default │ │ ├── thumb.jpg │ │ └── home │ │ └── 404.html ├── api.php └── .htaccess ├── index.php ├── Readme.txt └── README.md /cache/database/Query/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cache/database/Seeds/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cache/database/Sql/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dayrui/System/Config/DotEnv.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dayrui/System/Config/Filters.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dayrui/System/Extend/Database.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cache/database/Migrations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/static/assets/global/css/my.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dayrui/System/Config/AutoloadConfig.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/static/assets/js/my.js: -------------------------------------------------------------------------------- 1 | /* 自定义js文件 */ -------------------------------------------------------------------------------- /dayrui/Fcms/Model/Category.php: -------------------------------------------------------------------------------- 1 | 2 | Deny from all 3 | -------------------------------------------------------------------------------- /cache/qqwry.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/cache/qqwry.dat -------------------------------------------------------------------------------- /dayrui/My/Config/Menu.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dayrui/Fcms/Config/Routes.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /public/static/assets/images/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/avatar.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/7z.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/7z.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/js.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/ps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/ps.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/py.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/py.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/rb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/rb.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/up.png -------------------------------------------------------------------------------- /public/static/assets/images/nopic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/nopic.gif -------------------------------------------------------------------------------- /public/static/assets/global/img/view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/global/img/view.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/air.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/air.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/avi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/avi.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/bmp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/bmp.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/cmd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/cmd.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/code.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/cpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/cpp.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/css.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/csv.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/dll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/dll.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/doc.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/docx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/docx.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/dwg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/dwg.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/edit.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/exe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/exe.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/file.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/fla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/fla.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/flv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/flv.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/fon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/fon.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/font.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/gif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/gif.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/html.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/info.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/ini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/ini.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/jpg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/jpg.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/mdb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/mdb.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/midi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/midi.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/mp3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/mp3.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/mp4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/mp4.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/mpg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/mpg.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/odbc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/odbc.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/oexe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/oexe.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/ogg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/ogg.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/pdf.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/php.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/php.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/png.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/pps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/pps.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/ppsx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/ppsx.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/ppt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/ppt.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/pptx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/pptx.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/psd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/psd.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/rar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/rar.gif -------------------------------------------------------------------------------- /public/static/assets/images/ext/rar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/rar.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/reg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/reg.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/rtf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/rtf.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/sql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/sql.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/svg.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/swf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/swf.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/tar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/tar.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/tif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/tif.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/tiff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/tiff.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/ttf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/ttf.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/txt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/txt.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/url.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/wav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/wav.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/wma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/wma.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/wmv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/wmv.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/xls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/xls.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/xlsx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/xlsx.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/xml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/xml.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/zip.png -------------------------------------------------------------------------------- /public/static/assets/images/mloading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/mloading.gif -------------------------------------------------------------------------------- /dayrui/Fcms/View/install/footer.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /public/static/assets/global/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/global/img/loading.gif -------------------------------------------------------------------------------- /public/static/assets/images/ext/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/error.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/folder.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/search.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/setting.png -------------------------------------------------------------------------------- /public/static/assets/images/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/loading-0.gif -------------------------------------------------------------------------------- /public/static/assets/images/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/loading-1.gif -------------------------------------------------------------------------------- /public/static/assets/images/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/loading-2.gif -------------------------------------------------------------------------------- /public/static/assets/images/star_level1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/star_level1.gif -------------------------------------------------------------------------------- /public/static/assets/images/star_level2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/star_level2.gif -------------------------------------------------------------------------------- /public/static/assets/images/star_level3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/star_level3.gif -------------------------------------------------------------------------------- /public/static/assets/global/img/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/global/img/sort_asc.png -------------------------------------------------------------------------------- /public/static/assets/global/img/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/global/img/sort_both.png -------------------------------------------------------------------------------- /public/static/assets/global/img/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/global/img/sort_desc.png -------------------------------------------------------------------------------- /public/static/assets/images/ext/appStore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/images/ext/appStore.png -------------------------------------------------------------------------------- /public/static/assets/layui/font/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/layui/font/iconfont.eot -------------------------------------------------------------------------------- /public/static/assets/layui/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/layui/font/iconfont.ttf -------------------------------------------------------------------------------- /public/static/assets/layui/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/layui/font/iconfont.woff -------------------------------------------------------------------------------- /dayrui/ThinkPHP/System/app/Request.php: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | 7 | -------------------------------------------------------------------------------- /cache/cloud/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | 7 | -------------------------------------------------------------------------------- /cache/data/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | 7 | -------------------------------------------------------------------------------- /cache/error/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | 7 | -------------------------------------------------------------------------------- /cache/file/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | 7 | -------------------------------------------------------------------------------- /cache/log/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | 7 | -------------------------------------------------------------------------------- /cache/temp/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | 7 | -------------------------------------------------------------------------------- /dayrui/App/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | 7 | -------------------------------------------------------------------------------- /public/static/assets/global/plugins/dropzone/upload.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/global/plugins/dropzone/upload.jpg -------------------------------------------------------------------------------- /public/static/assets/icon/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/icon/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /public/static/assets/icon/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/icon/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /template/api.php: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | 7 | -------------------------------------------------------------------------------- /cache/authcode/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | 7 | -------------------------------------------------------------------------------- /cache/backups/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | 7 | -------------------------------------------------------------------------------- /cache/backups/db/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | 7 | -------------------------------------------------------------------------------- /cache/config/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | 7 | -------------------------------------------------------------------------------- /cache/debugbar/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | 7 | -------------------------------------------------------------------------------- /cache/debuglog/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | 7 | -------------------------------------------------------------------------------- /cache/session/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | 7 | -------------------------------------------------------------------------------- /cache/template/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | 7 | -------------------------------------------------------------------------------- /cache/thread/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | 7 | -------------------------------------------------------------------------------- /public/static/assets/icon/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/icon/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /public/static/assets/icon/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/icon/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /public/static/assets/js/layer/theme/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/js/layer/theme/default/icon-ext.png -------------------------------------------------------------------------------- /public/static/assets/js/layer/theme/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/js/layer/theme/default/loading-0.gif -------------------------------------------------------------------------------- /public/static/assets/js/layer/theme/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/js/layer/theme/default/loading-1.gif -------------------------------------------------------------------------------- /public/static/assets/js/layer/theme/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/js/layer/theme/default/loading-2.gif -------------------------------------------------------------------------------- /cache/backups/file/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | 7 | -------------------------------------------------------------------------------- /cache/backups/theme/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | 7 | -------------------------------------------------------------------------------- /config/hooks.php: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | 7 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | 7 | -------------------------------------------------------------------------------- /dayrui/System/Exceptions/Views/cli/error_404.php: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | 7 | -------------------------------------------------------------------------------- /dayrui/ThinkPHP/System/vendor/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | 7 | -------------------------------------------------------------------------------- /public/static/assets/global/plugins/bootstrap-colorpicker/img/hue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/global/plugins/bootstrap-colorpicker/img/hue.png -------------------------------------------------------------------------------- /public/static/assets/global/plugins/jquery-fileupload/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/global/plugins/jquery-fileupload/img/loading.gif -------------------------------------------------------------------------------- /public/static/assets/global/plugins/jquery-multi-select/README.markdown: -------------------------------------------------------------------------------- 1 | # jquery.multi-select.js 2 | 3 | Usage and Demos [http://loudev.com](http://loudev.com "jquery.multi-select.js") 4 | -------------------------------------------------------------------------------- /public/static/assets/global/plugins/jquery-multi-select/img/switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/global/plugins/jquery-multi-select/img/switch.png -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/ThirdParty/PSR/Log/InvalidArgumentException.php: -------------------------------------------------------------------------------- 1 | [], 6 | // 优先级设置,此数组中的中间件会按照数组中的顺序优先执行 7 | 'priority' => [], 8 | ]; 9 | -------------------------------------------------------------------------------- /dayrui/ThinkPHP/System/think: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env php 2 | console->run(); -------------------------------------------------------------------------------- /public/static/assets/global/plugins/bootstrap-colorpicker/img/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/global/plugins/bootstrap-colorpicker/img/alpha.png -------------------------------------------------------------------------------- /public/static/assets/global/plugins/jquery-fileupload/img/progressbar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/global/plugins/jquery-fileupload/img/progressbar.gif -------------------------------------------------------------------------------- /dayrui/Fcms/View/cron_show.html: -------------------------------------------------------------------------------- 1 | {template "header.html"} 2 |

{dr_lang('错误信息')}:

3 |
{$show_error}
4 |

{dr_lang('执行参数')}:

5 |
{$show_value}
6 | {template "footer.html"} -------------------------------------------------------------------------------- /public/admin.php: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | 7 | 8 | Deny from all 9 | -------------------------------------------------------------------------------- /cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /config/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | 7 | 8 | Deny from all 9 | -------------------------------------------------------------------------------- /dayrui/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | 7 | 8 | Deny from all 9 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/View/errors/cli/production.php: -------------------------------------------------------------------------------- 1 | '新的语言', 7 | */ 8 | 9 | return [ 10 | 11 | //'保存' => '储存Save', 12 | 13 | ]; -------------------------------------------------------------------------------- /public/static/assets/global/plugins/bootstrap-colorpicker/img/saturation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/global/plugins/bootstrap-colorpicker/img/saturation.png -------------------------------------------------------------------------------- /public/static/assets/global/plugins/jquery-multi-select/img/switch_original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayrui/xunruicms/HEAD/public/static/assets/global/plugins/jquery-multi-select/img/switch_original.png -------------------------------------------------------------------------------- /template/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | 7 | 8 | Deny from all 9 | -------------------------------------------------------------------------------- /cache/backups/db/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /cache/backups/file/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /cache/backups/theme/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Commands/Generators/Views/cell.tpl.php: -------------------------------------------------------------------------------- 1 | <@php 2 | 3 | namespace {namespace}; 4 | 5 | use CodeIgniter\View\Cells\Cell; 6 | 7 | class {class} extends Cell 8 | { 9 | // 10 | } 11 | -------------------------------------------------------------------------------- /dayrui/Fcms/View/go.html: -------------------------------------------------------------------------------- 1 | {if $goto_url} 2 | 3 | {else} 4 | 5 | 没有获取到转向字段值。 6 | {/if} -------------------------------------------------------------------------------- /public/static/assets/global/plugins/codemirror/addon/display/fullscreen.css: -------------------------------------------------------------------------------- 1 | .CodeMirror-fullscreen { 2 | position: fixed; 3 | top: 0; left: 0; right: 0; bottom: 0; 4 | height: auto; 5 | z-index: 9; 6 | } 7 | -------------------------------------------------------------------------------- /cache/backups/template/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /dayrui/My/Config/Version.php: -------------------------------------------------------------------------------- 1 | '8', 6 | 'name' => '迅睿CMS开源框架', 7 | 'version' => '4.6.2', 8 | 'updatetime' => '-', 9 | 'downtime' => '-', 10 | 11 | ]; 12 | -------------------------------------------------------------------------------- /public/static/default/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public/uploadfile/member/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public/uploadfile/thumb/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public/uploadfile/weixin/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Commands/Generators/Views/config.tpl.php: -------------------------------------------------------------------------------- 1 | <@php 2 | 3 | namespace {namespace}; 4 | 5 | use CodeIgniter\Config\BaseConfig; 6 | 7 | class {class} extends BaseConfig 8 | { 9 | // 10 | } 11 | -------------------------------------------------------------------------------- /config/notice/email/admin_password_error.html: -------------------------------------------------------------------------------- 1 | 您好,{$username},您的帐户于{dr_date($sys_time)}登录密码({$password})错误过多,账号已被禁止登录。 2 |
3 | 解除方式:打开开发者模式,登录后台,权限菜单,角色账号,找到本账号解除锁定。 4 |
5 | 登录地点:{$ip_address}。 6 |
7 | 来自:{SITE_NAME}。 -------------------------------------------------------------------------------- /public/api/cron.php: -------------------------------------------------------------------------------- 1 | Request::class, 8 | 'think\exception\Handle' => ExceptionHandle::class, 9 | ]; 10 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/ThirdParty/Escaper/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- 1 | 系统无法通过PHP获取网址数据:{$url}

2 |

如果手动访问此地址无任何问题时,你可以使用下方来手动开启HTTPS功能:

3 |

1、打开文件cache/config/system.php(不能使用记事本等非法编辑器);

4 |

2、将SYS_HTTPS值改为1,表示开启https了;如果手动开启登录或网站地址有异常时,可以设置为0表示关闭。

-------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Commands/Generators/Views/seeder.tpl.php: -------------------------------------------------------------------------------- 1 | <@php 2 | 3 | namespace {namespace}; 4 | 5 | use CodeIgniter\Database\Seeder; 6 | 7 | class {class} extends Seeder 8 | { 9 | public function run() 10 | { 11 | // 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /dayrui/Fcms/Model/Group.php: -------------------------------------------------------------------------------- 1 | 5 | {loop $files $t} 6 |

{$t}

7 | {/loop} 8 | 9 | {/if} 10 | {template "footer.html"} -------------------------------------------------------------------------------- /dayrui/ThinkPHP/System/app/middleware.php: -------------------------------------------------------------------------------- 1 | [ 8 | ], 9 | ]; 10 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Validation/Views/list.php: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | -------------------------------------------------------------------------------- /public/mobile/api.php: -------------------------------------------------------------------------------- 1 | [ 5 | ], 6 | 7 | 'listen' => [ 8 | 'AppInit' => [], 9 | 'HttpRun' => [], 10 | 'HttpEnd' => [], 11 | 'LogLevel' => [], 12 | 'LogWrite' => [], 13 | ], 14 | 15 | 'subscribe' => [ 16 | ], 17 | ]; 18 | -------------------------------------------------------------------------------- /dayrui/ThinkPHP/System/config/trace.php: -------------------------------------------------------------------------------- 1 | 'Html', 8 | // 读取的日志通道名 9 | 'channel' => '', 10 | ]; 11 | -------------------------------------------------------------------------------- /dayrui/ThinkPHP/System/app/AppService.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /dayrui/ThinkPHP/Extend/Controller.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | {userFiles} 4 | 5 | {name} 6 | {path} 7 | 8 | {/userFiles} 9 | {coreFiles} 10 | 11 | {name} 12 | {path} 13 | 14 | {/coreFiles} 15 | 16 | 17 | -------------------------------------------------------------------------------- /config/fileext.php: -------------------------------------------------------------------------------- 1 | notallowed = [ 6 | 'php', 7 | 'php3', 8 | 'asp', 9 | 'jsp', 10 | 'jspx', 11 | 'aspx', 12 | 'exe', 13 | 'sh', 14 | 'phtml', 15 | ]; 16 | 17 | // 允许远程下载文件扩展名 18 | $this->down_file_ext = [ 19 | 'jpg', 20 | 'jpeg', 21 | 'gif', 22 | 'png', 23 | 'webp', 24 | 'zip', 25 | 'aaa', 26 | ]; -------------------------------------------------------------------------------- /dayrui/Fcms/Control/Api/Buy.php: -------------------------------------------------------------------------------- 1 | PHP版本需要在".$min."及以上,当前".PHP_VERSION."
最低支持PHP7.2环境,需要在这里下载兼容包:https://www.xunruicms.com/doc/1166.html"); 12 | } 13 | 14 | echo '请将public目录设置为网站主目录:https://www.xunruicms.com/doc/1280.html'; -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Debug/Toolbar/Views/_files.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 | {userFiles} 4 | 5 | 6 | 7 | 8 | {/userFiles} 9 | {coreFiles} 10 | 11 | 12 | 13 | 14 | {/coreFiles} 15 | 16 |
{name}{path}
{name}{path}
17 | -------------------------------------------------------------------------------- /dayrui/Fcms/Control/Api/Pay.php: -------------------------------------------------------------------------------- 1 | cookie(SYS_KEY.$name, $value, $expire)->sendHeaders(); 10 | } 11 | 12 | function get_cookie($name) { 13 | return \Illuminate\Support\Facades\Cookie::get(SYS_KEY.$name);; 14 | } -------------------------------------------------------------------------------- /dayrui/Laravel/System/app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- 1 | 13 | */ 14 | protected $except = [ 15 | // 16 | ]; 17 | } 18 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/ThirdParty/PSR/Log/LoggerAwareInterface.php: -------------------------------------------------------------------------------- 1 | 3 | {$form} 4 |
5 | 11 |
12 | -------------------------------------------------------------------------------- /dayrui/Laravel/System/app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- 1 | 13 | */ 14 | protected $except = [ 15 | // 16 | ]; 17 | } 18 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Language/en/RESTful.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // RESTful language settings 13 | return [ 14 | 'notImplemented' => '"{0}" action not implemented.', 15 | ]; 16 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Language/en/Test.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Testing language settings 13 | return [ 14 | 'invalidMockClass' => '"{0}" is not a valid Mock class', 15 | ]; 16 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/ThirdParty/PSR/Log/LogLevel.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Test\Mock; 13 | 14 | use CodeIgniter\Database\Query; 15 | 16 | class MockQuery extends Query 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Language/en/Language.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // "Language" language settings 13 | return [ 14 | 'invalidMessageFormat' => 'Invalid message format: "{0}", args: "{1}"', 15 | ]; 16 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/HTTP/ResponsableInterface.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\HTTP; 13 | 14 | interface ResponsableInterface 15 | { 16 | public function getResponse(): ResponseInterface; 17 | } 18 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/View/toolbar/_events.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | {events} 11 | 12 | 13 | 14 | 15 | 16 | {/events} 17 | 18 |
TimeEvent NameTimes Called
{ duration } ms{event}{count}
19 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Debug/Toolbar/Views/_events.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | {events} 11 | 12 | 13 | 14 | 15 | 16 | {/events} 17 | 18 |
TimeEvent NameTimes Called
{ duration } ms{event}{count}
19 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Test/Mock/MockIncomingRequest.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Test\Mock; 13 | 14 | use CodeIgniter\HTTP\IncomingRequest; 15 | 16 | class MockIncomingRequest extends IncomingRequest 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /dayrui/Fcms/View/api_upload_data.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 | {dr_file_list_preview_html($t)} 5 |
6 | 7 |
8 |
-------------------------------------------------------------------------------- /dayrui/Fcms/View/cloud_app_delete.html: -------------------------------------------------------------------------------- 1 | {template "header.html"} 2 | 3 |
4 | {dr_form_hidden()} 5 |

1、{dr_lang('本操作将删除目录(%s)中的文件', $path)}

6 |

2、{dr_lang('如果该应用在其他目录中存在的文件,需要手动删除')}

7 | {if $files} 8 |
9 | {loop $files $t} 10 |

{$t}

11 | {/loop} 12 |
13 | {/if} 14 |
15 | 16 | {template "footer.html"} -------------------------------------------------------------------------------- /dayrui/Laravel/System/app/Http/Middleware/PreventRequestsDuringMaintenance.php: -------------------------------------------------------------------------------- 1 | 13 | */ 14 | protected $except = [ 15 | // 16 | ]; 17 | } 18 | -------------------------------------------------------------------------------- /dayrui/Laravel/System/app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- 1 | 13 | */ 14 | public function hosts() 15 | { 16 | return [ 17 | $this->allSubdomainsOfApplicationUrl(), 18 | ]; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Exceptions/EmergencyError.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Exceptions; 13 | 14 | use Error; 15 | 16 | /** 17 | * Error: system is unusable 18 | */ 19 | class EmergencyError extends Error 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /dayrui/Laravel/System/app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- 1 | 13 | */ 14 | protected $except = [ 15 | 'current_password', 16 | 'password', 17 | 'password_confirmation', 18 | ]; 19 | } 20 | -------------------------------------------------------------------------------- /dayrui/Laravel/System/app/Listeners/QueryListener.php: -------------------------------------------------------------------------------- 1 | sql)); 13 | $event->bindings && $sql = vsprintf($sql, $event->bindings); 14 | \Phpcmf\Service::M()->db->setLastQuery(str_replace('_XS_', '%', $sql)); 15 | } 16 | } -------------------------------------------------------------------------------- /dayrui/Laravel/System/app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Log language settings 13 | return [ 14 | 'invalidLogLevel' => '"{0}" is an invalid log level.', 15 | 'invalidMessageType' => 'The given message type "{0}" is not supported.', 16 | ]; 17 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/View/toolbar/_logs.tpl: -------------------------------------------------------------------------------- 1 | { if $logs == [] } 2 |

Nothing was logged. If you were expecting logged items, ensure that LoggerConfig file has the correct threshold set.

3 | { else } 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | {logs} 13 | 14 | 15 | 16 | 17 | {/logs} 18 | 19 |
SeverityMessage
{level}{msg}
20 | { endif } 21 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Exceptions/AlertError.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Exceptions; 13 | 14 | use Error; 15 | 16 | /** 17 | * Error: Action must be taken immediately (system/db down, etc) 18 | */ 19 | class AlertError extends Error 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Exceptions/HTTPExceptionInterface.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Exceptions; 13 | 14 | /** 15 | * Interface for Exceptions that has exception code as HTTP status code. 16 | */ 17 | interface HTTPExceptionInterface 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Exceptions/CriticalError.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Exceptions; 13 | 14 | use Error; 15 | 16 | /** 17 | * Error: Critical conditions, like component unavailable, etc. 18 | */ 19 | class CriticalError extends Error 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Debug/Toolbar/Views/_logs.tpl: -------------------------------------------------------------------------------- 1 | { if $logs == [] } 2 |

Nothing was logged. If you were expecting logged items, ensure that LoggerConfig file has the correct threshold set.

3 | { else } 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | {logs} 13 | 14 | 15 | 16 | 17 | {/logs} 18 | 19 |
SeverityMessage
{level}{msg}
20 | { endif } 21 | -------------------------------------------------------------------------------- /dayrui/System/Debug/Toolbar/Views/_files.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Router/Exceptions/MethodNotFoundException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Router\Exceptions; 13 | 14 | use RuntimeException; 15 | 16 | /** 17 | * @internal 18 | */ 19 | final class MethodNotFoundException extends RuntimeException 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /dayrui/System/Exceptions/CriticalError.php: -------------------------------------------------------------------------------- 1 | 9 | * 10 | * For the full copyright and license information, please view 11 | * the LICENSE file that was distributed with this source code. 12 | */ 13 | 14 | namespace CodeIgniter\Exceptions; 15 | 16 | /** 17 | * Error: Critical conditions, like component unavailable, etc. 18 | */ 19 | class CriticalError extends RuntimeException 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /Readme.txt: -------------------------------------------------------------------------------- 1 | 2 | 迅睿CMS官方下载地址:https://www.xunruicms.com/down/ 3 | 4 | 5 | #### 安装路径 6 | 将网站运行目录(主目录)设置为:public(如果没有就忽略设置) 7 | 安装环境监测:/test.php 8 | 程序安装地址:/install.php 9 | 后台登录地址:/admin****.php(****是随机的) 10 | 重置后台地址:https://www.xunruicms.com/doc/1097.html 11 | 首次使用方法:https://www.xunruicms.com/doc/631.html 12 | 13 | #### 运行环境 14 | 15 | Laravel内核:PHP8.0及以上 16 | ThinkPHP内核:PHP7.4及以上 17 | CodeIgniter内核:PHP7.4及以上 18 | CodeIgniter72内核:PHP7.2及以上 19 | 20 | MySQL数据库:MySQL5及以上,推荐5.7及以上 21 | 22 | 23 | #### 内核切换方法 24 | https://www.xunruicms.com/doc/1246.html -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Language/en/Filters.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Filters language settings 13 | return [ 14 | 'noFilter' => '"{0}" filter must have a matching alias defined.', 15 | 'incorrectInterface' => '"{0}" must implement CodeIgniter\Filters\FilterInterface.', 16 | ]; 17 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/ThirdParty/PSR/Log/LoggerAwareTrait.php: -------------------------------------------------------------------------------- 1 | logger = $logger; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/ThirdParty/Kint/resources/compiled/shared.js: -------------------------------------------------------------------------------- 1 | void 0===window.kintShared&&(window.kintShared=function(){"use strict";var e={dedupe:function(e,n){return[].forEach.call(document.querySelectorAll(e),function(e){e!==(n=n&&n.ownerDocument.contains(n)?n:e)&&e.parentNode.removeChild(e)}),n},runOnce:function(e){"complete"===document.readyState?e():window.addEventListener("load",e)}};return window.addEventListener("click",function(e){var n;e.target.classList.contains("kint-ide-link")&&((n=new XMLHttpRequest).open("GET",e.target.href),n.send(null),e.preventDefault())}),e}()); 2 | -------------------------------------------------------------------------------- /dayrui/Laravel/System/app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- 1 | 9 | * 10 | * For the full copyright and license information, please view 11 | * the LICENSE file that was distributed with this source code. 12 | */ 13 | 14 | namespace CodeIgniter\Exceptions; 15 | 16 | /** 17 | * Interface for Exceptions that has exception code as HTTP status code. 18 | */ 19 | interface HTTPExceptionInterface extends ExceptionInterface 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /public/static/assets/global/css/mobile.css: -------------------------------------------------------------------------------- 1 | 2 | .body-ifram { 3 | background: rgba(0, 0, 0, 0) url("../img/view.png") no-repeat scroll center center; 4 | height: 805px; 5 | text-align: center; 6 | } 7 | #mobile-view { 8 | height: 576px; 9 | padding-top: 108px; 10 | width: 360px; 11 | } 12 | a { 13 | background: #00d2ed none repeat scroll 0 0; 14 | border-radius: 4px; 15 | color: #fff; 16 | display: inline-block; 17 | font-size: 15px; 18 | padding: 11px 22px; 19 | text-align: center; 20 | text-decoration: none; 21 | } 22 | h3{text-align:center;} -------------------------------------------------------------------------------- /public/static/assets/global/plugins/jquery-multi-select/LICENSE.txt: -------------------------------------------------------------------------------- 1 | DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE 2 | Version 2, December 2004 3 | 4 | Copyright (C) 2004 Sam Hocevar 5 | 6 | Everyone is permitted to copy and distribute verbatim or modified 7 | copies of this license document, and changing it is allowed as long 8 | as the name is changed. 9 | 10 | DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE 11 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 12 | 13 | 0. You just DO WHAT THE FUCK YOU WANT TO. 14 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 迅睿CMS建站程序 2 | 3 | 迅睿CMS框架是一款PHP8高性能·简单易用的开发框架 4 | 支持的微信公众号,小程序,APP客户端,移动端网站,PC网站等多站式管理系统。 5 | 6 | 7 | 8 | #### 运行环境 9 | PHP7.4以上(支持PHP8) 10 | MySQL5.7及以上 11 | Apache、Nginx、IIS等Web服务器都可以 12 | 13 | #### 在线预览 14 | http://demo.xunruicms.com/admin.php 15 | 16 | 17 | #### 安装教程 18 | 19 | 1. 将代码下载到网站的根目录 20 | 2. 将网站运行目录(主目录)设置为:public 21 | 3. 运行环境检查程序 /test.php 22 | 4. 环境通过后,运行安装文件 /install.php 23 | 6. 默认后台入口文件是 /admin随机文字.php 24 | 25 | #### 使用说明 26 | 27 | 1. 使用文档:https://www.xunruicms.com/doc/ 28 | 2. 技术论坛:https://www.xunruicms.com/wenda/ 29 | 3. 正式版程序下载:https://www.xunruicms.com/down/ 30 | -------------------------------------------------------------------------------- /dayrui/Fcms/View/attachment_edit.html: -------------------------------------------------------------------------------- 1 | {template "header.html"} 2 | 3 |
4 | {$form} 5 |
6 | 7 |
8 |
9 | 10 |
11 |
12 |
13 |
14 | 20 | {template "footer.html"} -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Language/en/Security.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Security language settings 13 | return [ 14 | 'disallowedAction' => 'The action you requested is not allowed.', 15 | 16 | // @deprecated 17 | 'invalidSameSite' => 'The SameSite value must be None, Lax, Strict, or a blank string. Given: "{0}"', 18 | ]; 19 | -------------------------------------------------------------------------------- /dayrui/Laravel/System/app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- 1 | expectsJson()) { 18 | return route('login'); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /dayrui/System/Exceptions/RuntimeException.php: -------------------------------------------------------------------------------- 1 | 9 | * 10 | * For the full copyright and license information, please view 11 | * the LICENSE file that was distributed with this source code. 12 | */ 13 | 14 | namespace CodeIgniter\Exceptions; 15 | 16 | /** 17 | * Exception thrown if an error which can only be found on runtime occurs. 18 | */ 19 | class RuntimeException extends \RuntimeException implements ExceptionInterface 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Entity.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter; 13 | 14 | use CodeIgniter\Entity\Entity as CoreEntity; 15 | 16 | /** 17 | * Entity encapsulation, for use with CodeIgniter\Model 18 | * 19 | * @deprecated use CodeIgniter\Entity\Entity class instead 20 | */ 21 | class Entity extends CoreEntity 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Test/CIDatabaseTestCase.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Test; 13 | 14 | /** 15 | * CIDatabaseTestCase 16 | * 17 | * Use DatabaseTestTrait instead. 18 | * 19 | * @deprecated 4.1.2 20 | */ 21 | abstract class CIDatabaseTestCase extends CIUnitTestCase 22 | { 23 | use DatabaseTestTrait; 24 | } 25 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/View/errors/html/error_500.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 系统故障 8 | 9 | 12 | 13 | 14 | 15 |
16 | 17 |

系统故障!

18 | 19 |

We seem to have hit a snag. Please try again later...

20 | 21 |
22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /dayrui/ThinkPHP/System/config/session.php: -------------------------------------------------------------------------------- 1 | 'PHPSESSID', 9 | // SESSION_ID的提交变量,解决flash上传跨域 10 | 'var_session_id' => '', 11 | // 驱动方式 支持file cache 12 | 'type' => 'file', 13 | // 存储连接标识 当type使用cache的时候有效 14 | 'store' => null, 15 | // 过期时间 16 | 'expire' => 1440, 17 | // 前缀 18 | 'prefix' => '', 19 | ]; 20 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Language/en/Fabricator.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Fabricator language settings 13 | return [ 14 | 'invalidModel' => 'Invalid model supplied for fabrication.', 15 | 'missingFormatters' => 'No valid formatters defined.', 16 | 'createFailed' => 'Fabricator failed to insert on table "{0}": {1}', 17 | ]; 18 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/Extend/Controller.php: -------------------------------------------------------------------------------- 1 | removeHeader('Content-Type'); 12 | \Config\Services::response()->setcookie(md5(SYS_KEY).'_'.dr_safe_replace($name), (string)$value, $expire)->send(); 13 | } 14 | 15 | function get_cookie($name) { 16 | $name = md5(SYS_KEY).'_'.dr_safe_replace($name); 17 | return isset($_COOKIE[$name]) ? $_COOKIE[$name] : false; 18 | } -------------------------------------------------------------------------------- /public/static/assets/global/plugins/jquery-minicolors/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "jquery-minicolors", 3 | "version": "2.1.10", 4 | "homepage": "https://github.com/claviska/jquery-minicolors", 5 | "authors": [ 6 | "Cory LaViska" 7 | ], 8 | "description": "jQuery MiniColors Plugin", 9 | "main": [ 10 | "./jquery.minicolors.js", 11 | "./jquery.minicolors.css" 12 | ], 13 | "keywords": [ 14 | "jquery", 15 | "colorpicker" 16 | ], 17 | "license": "MIT", 18 | "ignore": [ 19 | "**/.*", 20 | "node_modules", 21 | "bower_components", 22 | "test", 23 | "tests" 24 | ] 25 | } 26 | -------------------------------------------------------------------------------- /dayrui/ThinkPHP/System/config/cookie.php: -------------------------------------------------------------------------------- 1 | 0, 8 | // cookie 保存路径 9 | 'path' => '/', 10 | // cookie 有效域名 11 | 'domain' => '', 12 | // cookie 启用安全传输 13 | 'secure' => false, 14 | // httponly设置 15 | 'httponly' => false, 16 | // 是否使用 setcookie 17 | 'setcookie' => true, 18 | // samesite 设置,支持 'strict' 'lax' 19 | 'samesite' => 'lax', 20 | ]; 21 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Exceptions/ExceptionInterface.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Exceptions; 13 | 14 | /** 15 | * Provides a domain-level interface for broad capture 16 | * of all framework-related exceptions. 17 | * 18 | * catch (\CodeIgniter\Exceptions\ExceptionInterface) { ... } 19 | */ 20 | interface ExceptionInterface 21 | { 22 | } 23 | -------------------------------------------------------------------------------- /dayrui/Fcms/View/footer.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
6 | 7 |
8 | {if isset($_GET['show_field']) && $_GET['show_field']} 9 | 15 | {/if} 16 | {if is_file(WRITEPATH.'update.lock')} 17 | 20 | {/if} 21 | 22 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Exceptions/HasExitCodeInterface.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Exceptions; 13 | 14 | /** 15 | * Interface for Exceptions that has exception code as exit code. 16 | */ 17 | interface HasExitCodeInterface 18 | { 19 | /** 20 | * Returns exit status code. 21 | */ 22 | public function getExitCode(): int; 23 | } 24 | -------------------------------------------------------------------------------- /public/static/assets/global/plugins/jquery-minicolors/component.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "jquery-minicolors", 3 | "version" : "2.1.10", 4 | "description" : "jQuery MiniColors Plugin", 5 | "homepage" : "", 6 | "main" : [ "./jquery.minicolors.js", "./jquery.minicolors.css" ], 7 | "dependencies" : { 8 | "jquery" : ">= 1.7.x" 9 | }, 10 | "keywords" : [ 11 | ], 12 | "author" : { 13 | "name" : "Cory LaViska", 14 | "web" : "http://www.abeautifulsite.net/" 15 | }, 16 | "license": [ 17 | "http://www.opensource.org/licenses/mit-license.php" 18 | ] 19 | } -------------------------------------------------------------------------------- /config/myfield/test.php: -------------------------------------------------------------------------------- 1 | '; 14 | $data = \Phpcmf\Service::M()->db->table(SITE_ID.'_news')->get()->getResultArray(); 15 | if ($data) { 16 | foreach ($data as $t) { 17 | $code.= ''; 18 | } 19 | } 20 | $code.= ''; -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Language/en/Files.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Files language settings 13 | return [ 14 | 'fileNotFound' => 'File not found: "{0}"', 15 | 'cannotMove' => 'Could not move file "{0}" to "{1}". Reason: {2}', 16 | 'expectedDirectory' => '{0} expects a valid directory.', 17 | 'expectedFile' => '{0} expects a valid file.', 18 | ]; 19 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Test/Mock/MockBuilder.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Test\Mock; 13 | 14 | use CodeIgniter\Database\BaseBuilder; 15 | 16 | class MockBuilder extends BaseBuilder 17 | { 18 | protected $supportedIgnoreStatements = [ 19 | 'update' => 'IGNORE', 20 | 'insert' => 'IGNORE', 21 | 'delete' => 'IGNORE', 22 | ]; 23 | } 24 | -------------------------------------------------------------------------------- /dayrui/ThinkPHP/Extend/Run.php: -------------------------------------------------------------------------------- 1 | debug(CI_DEBUG ? true : false); 14 | $app->setRuntimePath(WRITEPATH.'thinkphp_runtime/'); 15 | 16 | // 挂钩点 程序运行之前 17 | \Phpcmf\Hooks::trigger('cms_run'); 18 | 19 | // 执行HTTP应用并响应 20 | $http = $app->http; 21 | 22 | $response = $http->run(); 23 | 24 | $response->send(); 25 | 26 | $http->end($response); -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Entity/Cast/FloatCast.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Entity\Cast; 13 | 14 | /** 15 | * Class FloatCast 16 | */ 17 | class FloatCast extends BaseCast 18 | { 19 | /** 20 | * {@inheritDoc} 21 | */ 22 | public static function get($value, array $params = []): float 23 | { 24 | return (float) $value; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Entity/Cast/IntegerCast.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Entity\Cast; 13 | 14 | /** 15 | * Class IntegerCast 16 | */ 17 | class IntegerCast extends BaseCast 18 | { 19 | /** 20 | * {@inheritDoc} 21 | */ 22 | public static function get($value, array $params = []): int 23 | { 24 | return (int) $value; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/View/errors/html/production.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 系统故障 8 | 9 | 12 | 13 | 14 | 15 |
16 | 17 |

系统故障

18 | 19 |

您的系统遇到了故障,请联系管理员处理

20 |

在index.php中开启开发者模式可以看到故障详细情况

21 | 22 |
23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /dayrui/System/Exceptions/ExceptionInterface.php: -------------------------------------------------------------------------------- 1 | 9 | * 10 | * For the full copyright and license information, please view 11 | * the LICENSE file that was distributed with this source code. 12 | */ 13 | 14 | namespace CodeIgniter\Exceptions; 15 | 16 | /** 17 | * Provides a domain-level interface for broad capture 18 | * of all framework-related exceptions. 19 | * 20 | * catch (\CodeIgniter\Exceptions\ExceptionInterface) { ... } 21 | */ 22 | interface ExceptionInterface 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /dayrui/System/Exceptions/Views/html/production.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | <?= lang('系统故障') ?> 8 | 9 | 12 | 13 | 14 | 15 |
16 | 17 |

18 | 19 |

20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/Config/Language/zh-cn/Cache.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Cache language settings 13 | return [ 14 | 'unableToWrite' => '缓存目录({0})无权限写入,请赋予可写权限', 15 | 'invalidHandlers' => 'Cache config must have an array of $validHandlers.', 16 | 'noBackup' => 'Cache config must have a handler and backupHandler set.', 17 | 'handlerNotFound' => '缓存设置无效的方式', 18 | ]; 19 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Entity/Cast/BooleanCast.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Entity\Cast; 13 | 14 | /** 15 | * Class BooleanCast 16 | */ 17 | class BooleanCast extends BaseCast 18 | { 19 | /** 20 | * {@inheritDoc} 21 | */ 22 | public static function get($value, array $params = []): bool 23 | { 24 | return (bool) $value; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Entity/Cast/ObjectCast.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Entity\Cast; 13 | 14 | /** 15 | * Class ObjectCast 16 | */ 17 | class ObjectCast extends BaseCast 18 | { 19 | /** 20 | * {@inheritDoc} 21 | */ 22 | public static function get($value, array $params = []): object 23 | { 24 | return (object) $value; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Entity/Cast/StringCast.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Entity\Cast; 13 | 14 | /** 15 | * Class StringCast 16 | */ 17 | class StringCast extends BaseCast 18 | { 19 | /** 20 | * {@inheritDoc} 21 | */ 22 | public static function get($value, array $params = []): string 23 | { 24 | return (string) $value; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Language/en/Errors.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Errors language settings 13 | return [ 14 | 'pageNotFound' => '404 - Page Not Found', 15 | 'sorryCannotFind' => 'Sorry! Cannot seem to find the page you were looking for.', 16 | 'whoops' => 'Whoops!', 17 | 'weHitASnag' => 'We seem to have hit a snag. Please try again later...', 18 | ]; 19 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/View/errors/cli/error_exception.php: -------------------------------------------------------------------------------- 1 | An uncaught Exception was encountered 2 | 3 | Type: 4 | Message: 5 | Filename: getFile(), "\n"; ?> 6 | Line Number: getLine(); ?> 7 | 8 | 9 | 10 | Backtrace: 11 | getTrace() as $error): ?> 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/Config/CURLRequest.php: -------------------------------------------------------------------------------- 1 | _msg(0, dr_lang('应用[%s]未安装', $cfg['name'])); 17 | } else { 18 | $this->_msg(0, dr_lang('应用[%s]未安装', APP_DIR)); 19 | } 20 | } 21 | } 22 | 23 | } 24 | -------------------------------------------------------------------------------- /dayrui/Laravel/System/routes/channels.php: -------------------------------------------------------------------------------- 1 | id === (int) $id; 18 | }); 19 | -------------------------------------------------------------------------------- /dayrui/Laravel/System/routes/api.php: -------------------------------------------------------------------------------- 1 | get('/user', function (Request $request) { 18 | return $request->user(); 19 | }); 20 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Test/FeatureResponse.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Test; 13 | 14 | /** 15 | * Assertions for a response 16 | * 17 | * @deprecated Use TestResponse directly 18 | */ 19 | class FeatureResponse extends TestResponse 20 | { 21 | /** 22 | * @deprecated Will be protected in a future release, use response() instead 23 | */ 24 | public $response; 25 | } 26 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Cache/Exceptions/ExceptionInterface.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Cache\Exceptions; 13 | 14 | /** 15 | * Provides a domain-level interface for broad capture 16 | * of all framework-related exceptions. 17 | * 18 | * catch (\CodeIgniter\Cache\Exceptions\ExceptionInterface) { ... } 19 | * 20 | * @deprecated 4.1.2 21 | */ 22 | interface ExceptionInterface 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /dayrui/System/Exceptions/HasExitCodeInterface.php: -------------------------------------------------------------------------------- 1 | 9 | * 10 | * For the full copyright and license information, please view 11 | * the LICENSE file that was distributed with this source code. 12 | */ 13 | 14 | namespace CodeIgniter\Exceptions; 15 | 16 | /** 17 | * Interface for Exceptions that has exception code as exit code. 18 | */ 19 | interface HasExitCodeInterface extends ExceptionInterface 20 | { 21 | /** 22 | * Returns exit status code. 23 | */ 24 | public function getExitCode(): int; 25 | } 26 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Database/Exceptions/DatabaseException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Database\Exceptions; 13 | 14 | use CodeIgniter\Exceptions\HasExitCodeInterface; 15 | use Error; 16 | 17 | class DatabaseException extends Error implements ExceptionInterface, HasExitCodeInterface 18 | { 19 | public function getExitCode(): int 20 | { 21 | return EXIT_DATABASE; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Format/FormatterInterface.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Format; 13 | 14 | /** 15 | * Formatter interface 16 | */ 17 | interface FormatterInterface 18 | { 19 | /** 20 | * Takes the given data and formats it. 21 | * 22 | * @param array|object|string $data 23 | * 24 | * @return false|string 25 | */ 26 | public function format($data); 27 | } 28 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Validation/StrictRules/FileRules.php: -------------------------------------------------------------------------------- 1 | 9 | * 10 | * For the full copyright and license information, please view 11 | * the LICENSE file that was distributed with this source code. 12 | */ 13 | 14 | namespace CodeIgniter\Validation\StrictRules; 15 | 16 | use CodeIgniter\Validation\FileRules as NonStrictFileRules; 17 | 18 | /** 19 | * File validation rules 20 | * 21 | * @see \CodeIgniter\Validation\StrictRules\FileRulesTest 22 | */ 23 | class FileRules extends NonStrictFileRules 24 | { 25 | } 26 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Language/en/Format.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Format language settings 13 | return [ 14 | 'invalidFormatter' => '"{0}" is not a valid Formatter class.', 15 | 'invalidJSON' => 'Failed to parse JSON string. Error: {0}', 16 | 'invalidMime' => 'No Formatter defined for mime type: "{0}".', 17 | 'missingExtension' => 'The SimpleXML extension is required to format XML.', 18 | ]; 19 | -------------------------------------------------------------------------------- /dayrui/Laravel/System/routes/console.php: -------------------------------------------------------------------------------- 1 | comment(Inspiring::quote()); 19 | })->purpose('Display an inspiring quote'); 20 | -------------------------------------------------------------------------------- /dayrui/Fcms/View/main/mylink.html: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |
5 | 6 | {dr_lang('快捷链接')} 7 |
8 |
9 |
10 |
11 | {loop $admin.usermenu $t} 12 | 14 | {/loop} 15 |
16 |
17 |
-------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Database/Exceptions/ExceptionInterface.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Database\Exceptions; 13 | 14 | /** 15 | * Provides a domain-level interface for broad capture 16 | * of all database-related exceptions. 17 | * 18 | * catch (\CodeIgniter\Database\Exceptions\ExceptionInterface) { ... } 19 | */ 20 | interface ExceptionInterface extends \CodeIgniter\Exceptions\ExceptionInterface 21 | { 22 | } 23 | -------------------------------------------------------------------------------- /dayrui/ThinkPHP/System/config/filesystem.php: -------------------------------------------------------------------------------- 1 | env('filesystem.driver', 'local'), 6 | // 磁盘列表 7 | 'disks' => [ 8 | 'local' => [ 9 | 'type' => 'local', 10 | 'root' => app()->getRuntimePath() . 'storage', 11 | ], 12 | 'public' => [ 13 | // 磁盘类型 14 | 'type' => 'local', 15 | // 磁盘路径 16 | 'root' => app()->getRootPath() . 'public/storage', 17 | // 磁盘路径对应的外部URL路径 18 | 'url' => '/storage', 19 | // 可见性 20 | 'visibility' => 'public', 21 | ], 22 | // 更多的磁盘配置信息 23 | ], 24 | ]; 25 | -------------------------------------------------------------------------------- /public/static/assets/global/plugins/codemirror/addon/dialog/dialog.css: -------------------------------------------------------------------------------- 1 | .CodeMirror-dialog { 2 | position: absolute; 3 | left: 0; right: 0; 4 | background: inherit; 5 | z-index: 15; 6 | padding: .1em .8em; 7 | overflow: hidden; 8 | color: inherit; 9 | } 10 | 11 | .CodeMirror-dialog-top { 12 | border-bottom: 1px solid #eee; 13 | top: 0; 14 | } 15 | 16 | .CodeMirror-dialog-bottom { 17 | border-top: 1px solid #eee; 18 | bottom: 0; 19 | } 20 | 21 | .CodeMirror-dialog input { 22 | border: none; 23 | outline: none; 24 | background: transparent; 25 | width: 20em; 26 | color: inherit; 27 | font-family: monospace; 28 | } 29 | 30 | .CodeMirror-dialog button { 31 | font-size: 70%; 32 | } 33 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Entity/Cast/URICast.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Entity\Cast; 13 | 14 | use CodeIgniter\HTTP\URI; 15 | 16 | /** 17 | * Class URICast 18 | */ 19 | class URICast extends BaseCast 20 | { 21 | /** 22 | * {@inheritDoc} 23 | */ 24 | public static function get($value, array $params = []): URI 25 | { 26 | return $value instanceof URI ? $value : new URI($value); 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Test/Mock/MockAutoload.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Test\Mock; 13 | 14 | use Config\Autoload; 15 | 16 | class MockAutoload extends Autoload 17 | { 18 | public $psr4 = []; 19 | public $classmap = []; 20 | 21 | public function __construct() 22 | { 23 | // Don't call the parent since we don't want the default mappings. 24 | // parent::__construct(); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Language/en/Cache.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Cache language settings 13 | return [ 14 | 'unableToWrite' => 'Cache unable to write to "{0}".', 15 | 'invalidHandlers' => 'Cache config must have an array of $validHandlers.', 16 | 'noBackup' => 'Cache config must have a handler and backupHandler set.', 17 | 'handlerNotFound' => 'Cache config has an invalid handler or backup handler specified.', 18 | ]; 19 | -------------------------------------------------------------------------------- /public/static/assets/global/plugins/jquery-slimscroll/README.md: -------------------------------------------------------------------------------- 1 | # What is slimScroll? 2 | 3 | slimScroll is a small jQuery plugin that transforms any div into a scrollable area with a nice scrollbar - similar to the one Facebook and Google started using in their products recently. slimScroll doesn't occupy any visual space as it only appears on a user initiated mouse-over. User can drag the scrollbar or use mouse-wheel to change the scroll value. 4 | 5 | Demo and more: http://rocha.la/jQuery-slimScroll 6 | 7 | Copyright (c) 2011 Piotr Rochala (http://rocha.la) 8 | Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php) and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses. 9 | 10 | -------------------------------------------------------------------------------- /dayrui/System/Database/Exceptions/ExceptionInterface.php: -------------------------------------------------------------------------------- 1 | 9 | * 10 | * For the full copyright and license information, please view 11 | * the LICENSE file that was distributed with this source code. 12 | */ 13 | 14 | namespace CodeIgniter\Database\Exceptions; 15 | 16 | /** 17 | * Provides a domain-level interface for broad capture 18 | * of all database-related exceptions. 19 | * 20 | * catch (\CodeIgniter\Database\Exceptions\ExceptionInterface) { ... } 21 | */ 22 | interface ExceptionInterface extends \CodeIgniter\Exceptions\ExceptionInterface 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Router/AutoRouterInterface.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Router; 13 | 14 | /** 15 | * Expected behavior of a AutoRouter. 16 | */ 17 | interface AutoRouterInterface 18 | { 19 | /** 20 | * Returns controller, method and params from the URI. 21 | * 22 | * @return array [directory_name, controller_name, controller_method, params] 23 | */ 24 | public function getRoute(string $uri, string $httpVerb): array; 25 | } 26 | -------------------------------------------------------------------------------- /config/field.php: -------------------------------------------------------------------------------- 1 | '
11 | 12 |
{value}
13 |
', 14 | 15 | // 用户中心 16 | 'member' => '
17 | 18 |
{value}
19 |
', 20 | 21 | // 前台 22 | 'home' => '
23 | 24 |
{value}
25 |
', 26 | 27 | 28 | ]; 29 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Exceptions/TestException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Exceptions; 13 | 14 | /** 15 | * Exception for automatic logging. 16 | */ 17 | class TestException extends CriticalError 18 | { 19 | use DebugTraceableTrait; 20 | 21 | /** 22 | * @return static 23 | */ 24 | public static function forInvalidMockClass(string $name) 25 | { 26 | return new static(lang('Test.invalidMockClass', [$name])); 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Pager/Views/default_simple.php: -------------------------------------------------------------------------------- 1 | setSurroundCount(0); 9 | ?> 10 | 24 | -------------------------------------------------------------------------------- /dayrui/System/Database/Exceptions/DatabaseException.php: -------------------------------------------------------------------------------- 1 | 9 | * 10 | * For the full copyright and license information, please view 11 | * the LICENSE file that was distributed with this source code. 12 | */ 13 | 14 | namespace CodeIgniter\Database\Exceptions; 15 | 16 | use CodeIgniter\Exceptions\HasExitCodeInterface; 17 | use CodeIgniter\Exceptions\RuntimeException; 18 | 19 | class DatabaseException extends RuntimeException implements ExceptionInterface, HasExitCodeInterface 20 | { 21 | public function getExitCode(): int 22 | { 23 | return EXIT_DATABASE; 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/View/toolbar/_routes.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {matchedRoute} 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | {/matchedRoute} 30 | 31 |
File:{file}
App:{app}
Controller:{controller}
Method:{method}
URI:{uri}
URL:{url}
32 | 33 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/Config/Autoload.php: -------------------------------------------------------------------------------- 1 | psr4 = array_merge($this->psr4, [ 26 | 27 | 'App' => COREPATH, 28 | 'Config' => FRAMEPATH.'Config', 29 | 30 | ]); 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /dayrui/Fcms/View/api_upload_filelist.html: -------------------------------------------------------------------------------- 1 |
2 | 3 | {loop $list $t} 4 | 5 | 11 | 14 | 15 | 16 | {/loop} 17 |
6 | 10 | 12 | {$t.icon}  {$t.name} 13 |
18 |
-------------------------------------------------------------------------------- /dayrui/ThinkPHP/System/config/view.php: -------------------------------------------------------------------------------- 1 | 'Think', 9 | // 默认模板渲染规则 1 解析为小写+下划线 2 全部转换小写 3 保持操作方法 10 | 'auto_rule' => 1, 11 | // 模板目录名 12 | 'view_dir_name' => 'view', 13 | // 模板后缀 14 | 'view_suffix' => 'html', 15 | // 模板文件名分隔符 16 | 'view_depr' => DIRECTORY_SEPARATOR, 17 | // 模板引擎普通标签开始标记 18 | 'tpl_begin' => '{', 19 | // 模板引擎普通标签结束标记 20 | 'tpl_end' => '}', 21 | // 标签库标签开始标记 22 | 'taglib_begin' => '{', 23 | // 标签库标签结束标记 24 | 'taglib_end' => '}', 25 | ]; 26 | -------------------------------------------------------------------------------- /cache/config/notice.php: -------------------------------------------------------------------------------- 1 | array ( 11 | 'name' => '系统', 12 | 'icon' => 'fa fa-bell-o', 13 | ), 14 | 2 => array ( 15 | 'name' => '用户', 16 | 'icon' => 'fa fa-user', 17 | ), 18 | 3 => array ( 19 | 'name' => '内容', 20 | 'icon' => 'fa fa-th-large', 21 | ), 22 | 4 => array ( 23 | 'name' => '应用', 24 | 'icon' => 'fa fa-puzzle-piece', 25 | ), 26 | 5 => array ( 27 | 'name' => '交易', 28 | 'icon' => 'fa fa-rmb', 29 | ), 30 | 6 => array ( 31 | 'name' => '订单', 32 | 'icon' => 'fa fa-shopping-cart', 33 | ), 34 | ); -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Test/Mock/MockCodeIgniter.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Test\Mock; 13 | 14 | use CodeIgniter\CodeIgniter; 15 | 16 | class MockCodeIgniter extends CodeIgniter 17 | { 18 | protected ?string $context = 'web'; 19 | 20 | /** 21 | * @param int $code 22 | * 23 | * @deprecated 4.4.0 No longer Used. Moved to index.php. 24 | */ 25 | protected function callExit($code) 26 | { 27 | // Do not call exit() in testing. 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /dayrui/Fcms/View/role_site.html: -------------------------------------------------------------------------------- 1 | {template "header.html"} 2 | 3 |
4 | {$form} 5 |
6 |
7 |
8 | {loop $ci->site_info $i $t} 9 | 14 | {/loop} 15 |
16 |
17 |
18 |
19 | {template "footer.html"} -------------------------------------------------------------------------------- /public/static/assets/global/plugins/codemirror/theme/neat.css: -------------------------------------------------------------------------------- 1 | .cm-s-neat span.cm-comment { color: #a86; } 2 | .cm-s-neat span.cm-keyword { line-height: 1em; font-weight: bold; color: blue; } 3 | .cm-s-neat span.cm-string { color: #a22; } 4 | .cm-s-neat span.cm-builtin { line-height: 1em; font-weight: bold; color: #077; } 5 | .cm-s-neat span.cm-special { line-height: 1em; font-weight: bold; color: #0aa; } 6 | .cm-s-neat span.cm-variable { color: black; } 7 | .cm-s-neat span.cm-number, .cm-s-neat span.cm-atom { color: #3a3; } 8 | .cm-s-neat span.cm-meta { color: #555; } 9 | .cm-s-neat span.cm-link { color: #3a3; } 10 | 11 | .cm-s-neat .CodeMirror-activeline-background { background: #e8f2ff; } 12 | .cm-s-neat .CodeMirror-matchingbracket { outline:1px solid grey; color:black !important; } 13 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/HTTP/Exceptions/BadRequestException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\HTTP\Exceptions; 13 | 14 | use CodeIgniter\Exceptions\HTTPExceptionInterface; 15 | use RuntimeException; 16 | 17 | /** 18 | * 400 Bad Request 19 | */ 20 | class BadRequestException extends RuntimeException implements HTTPExceptionInterface 21 | { 22 | /** 23 | * HTTP status code for Bad Request 24 | * 25 | * @var int 26 | */ 27 | protected $code = 400; // @phpstan-ignore-line 28 | } 29 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/View/ViewDecoratorInterface.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\View; 13 | 14 | /** 15 | * View Decorators are simple classes that are given the 16 | * chance to modify the output from the view() calls 17 | * prior to it being cached. 18 | */ 19 | interface ViewDecoratorInterface 20 | { 21 | /** 22 | * Takes $html and has a chance to alter it. 23 | * MUST return the modified HTML. 24 | */ 25 | public static function decorate(string $html): string; 26 | } 27 | -------------------------------------------------------------------------------- /dayrui/Laravel/System/app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- 1 | 14 | */ 15 | protected $policies = [ 16 | // 'App\Models\Model' => 'App\Policies\ModelPolicy', 17 | ]; 18 | 19 | /** 20 | * Register any authentication / authorization services. 21 | * 22 | * @return void 23 | */ 24 | public function boot() 25 | { 26 | $this->registerPolicies(); 27 | 28 | // 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Language/en/Number.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Number language settings 13 | return [ 14 | 'terabyteAbbr' => 'TB', 15 | 'gigabyteAbbr' => 'GB', 16 | 'megabyteAbbr' => 'MB', 17 | 'kilobyteAbbr' => 'KB', 18 | 'bytes' => 'Bytes', 19 | 20 | // don't forget the space in front of these! 21 | 'thousand' => ' thousand', 22 | 'million' => ' million', 23 | 'billion' => ' billion', 24 | 'trillion' => ' trillion', 25 | 'quadrillion' => ' quadrillion', 26 | ]; 27 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Pager/Views/default_head.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | use CodeIgniter\Pager\PagerRenderer; 13 | 14 | /** 15 | * @var PagerRenderer $pager 16 | */ 17 | $pager->setSurroundCount(0); 18 | 19 | if ($pager->hasPrevious()) { 20 | echo '' . PHP_EOL; 21 | } 22 | 23 | echo '' . PHP_EOL; 24 | 25 | if ($pager->hasNext()) { 26 | echo '' . PHP_EOL; 27 | } 28 | -------------------------------------------------------------------------------- /dayrui/System/Debug/Toolbar/Views/_routes.tpl: -------------------------------------------------------------------------------- 1 |

Matched Route

2 | 3 | 4 | 5 | $tt) { ?> 6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 |

GET

16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | $tt) { ?> 26 | 27 | 28 | 29 | 30 | 31 | 32 |
keyvalue
33 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Test/Mock/MockResourceController.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Test\Mock; 13 | 14 | use CodeIgniter\RESTful\ResourceController; 15 | 16 | class MockResourceController extends ResourceController 17 | { 18 | public function getModel() 19 | { 20 | return $this->model; 21 | } 22 | 23 | public function getModelName() 24 | { 25 | return $this->modelName; 26 | } 27 | 28 | public function getFormat() 29 | { 30 | return $this->format; 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /dayrui/Laravel/System/app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- 1 | |string|null 14 | */ 15 | protected $proxies; 16 | 17 | /** 18 | * The headers that should be used to detect proxies. 19 | * 20 | * @var int 21 | */ 22 | protected $headers = 23 | Request::HEADER_X_FORWARDED_FOR | 24 | Request::HEADER_X_FORWARDED_HOST | 25 | Request::HEADER_X_FORWARDED_PORT | 26 | Request::HEADER_X_FORWARDED_PROTO | 27 | Request::HEADER_X_FORWARDED_AWS_ELB; 28 | } 29 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Language/en/Encryption.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Encryption language settings 13 | return [ 14 | 'noDriverRequested' => 'No driver requested; Miss Daisy will be so upset!', 15 | 'noHandlerAvailable' => 'Unable to find an available "{0}" encryption handler.', 16 | 'unKnownHandler' => '"{0}" cannot be configured.', 17 | 'starterKeyNeeded' => 'Encrypter needs a starter key.', 18 | 'authenticationFailed' => 'Decrypting: authentication failed.', 19 | 'encryptionFailed' => 'Encryption failed.', 20 | ]; 21 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Router/Exceptions/RedirectException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Router\Exceptions; 13 | 14 | use CodeIgniter\Exceptions\HTTPExceptionInterface; 15 | use Exception; 16 | 17 | /** 18 | * RedirectException 19 | * 20 | * @deprecated Use \CodeIgniter\HTTP\Exceptions\RedirectException instead 21 | */ 22 | class RedirectException extends Exception implements HTTPExceptionInterface 23 | { 24 | /** 25 | * HTTP status code for redirects 26 | * 27 | * @var int 28 | */ 29 | protected $code = 302; 30 | } 31 | -------------------------------------------------------------------------------- /template/mobile/default/home/404.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | {$meta_title} 8 | 9 | 10 | 23 | 24 | 25 |

{$msg}

26 | 27 | 28 | -------------------------------------------------------------------------------- /template/pc/default/home/404.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | {$meta_title} 8 | 9 | 10 | 23 | 24 | 25 |

{$msg}

26 | 27 | 28 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Entity/Cast/CSVCast.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Entity\Cast; 13 | 14 | /** 15 | * Class CSVCast 16 | */ 17 | class CSVCast extends BaseCast 18 | { 19 | /** 20 | * {@inheritDoc} 21 | */ 22 | public static function get($value, array $params = []): array 23 | { 24 | return explode(',', $value); 25 | } 26 | 27 | /** 28 | * {@inheritDoc} 29 | */ 30 | public static function set($value, array $params = []): string 31 | { 32 | return implode(',', $value); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/View/toolbar/_history.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | {files} 15 | 16 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | {/files} 27 | 28 |
ActionDatetimeStatusMethodURLContent-TypeIs AJAX?
17 | 18 | {datetime}{status}{method}{url}{contentType}{isAJAX}
29 | -------------------------------------------------------------------------------- /dayrui/ThinkPHP/System/config/lang.php: -------------------------------------------------------------------------------- 1 | env('lang.default_lang', 'zh-cn'), 9 | // 允许的语言列表 10 | 'allow_lang_list' => [], 11 | // 多语言自动侦测变量名 12 | 'detect_var' => 'lang', 13 | // 是否使用Cookie记录 14 | 'use_cookie' => true, 15 | // 多语言cookie变量 16 | 'cookie_var' => 'think_lang', 17 | // 多语言header变量 18 | 'header_var' => 'think-lang', 19 | // 扩展语言包 20 | 'extend_list' => [], 21 | // Accept-Language转义为对应语言包名称 22 | 'accept_language' => [ 23 | 'zh-hans-cn' => 'zh-cn', 24 | ], 25 | // 是否支持语言分组 26 | 'allow_group' => false, 27 | ]; 28 | -------------------------------------------------------------------------------- /dayrui/System/Debug/ExceptionHandlerInterface.php: -------------------------------------------------------------------------------- 1 | 9 | * 10 | * For the full copyright and license information, please view 11 | * the LICENSE file that was distributed with this source code. 12 | */ 13 | 14 | namespace CodeIgniter\Debug; 15 | 16 | use CodeIgniter\HTTP\RequestInterface; 17 | use CodeIgniter\HTTP\ResponseInterface; 18 | use Throwable; 19 | 20 | interface ExceptionHandlerInterface 21 | { 22 | /** 23 | * Determines the correct way to display the error. 24 | */ 25 | public function handle( 26 | Throwable $exception, 27 | $request, 28 | $response, 29 | int $statusCode, 30 | int $exitCode, 31 | ): void; 32 | } 33 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Test/Mock/MockTable.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Test\Mock; 13 | 14 | use BadMethodCallException; 15 | use CodeIgniter\View\Table; 16 | 17 | class MockTable extends Table 18 | { 19 | // Override inaccessible protected method 20 | public function __call($method, $params) 21 | { 22 | if (is_callable([$this, '_' . $method])) { 23 | return call_user_func_array([$this, '_' . $method], $params); 24 | } 25 | 26 | throw new BadMethodCallException('Method ' . $method . ' was not found'); 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /dayrui/Fcms/View/index_auth_edit.html: -------------------------------------------------------------------------------- 1 | {template "header.html"} 2 | 3 |
4 | {$form} 5 |
6 | 7 |
8 |
9 |
10 | {loop $role $t} 11 | {if $t.id>1} 12 | 13 | {/if} 14 | {/loop} 15 |
16 | {dr_lang('只有选中的角色组才能看到此面板')} 17 |
18 |
19 |
20 |
21 | {template "footer.html"} -------------------------------------------------------------------------------- /dayrui/Laravel/System/app/Console/Kernel.php: -------------------------------------------------------------------------------- 1 | command('inspire')->hourly(); 19 | } 20 | 21 | /** 22 | * Register the commands for the application. 23 | * 24 | * @return void 25 | */ 26 | protected function commands() 27 | { 28 | $this->load(__DIR__.'/Commands'); 29 | 30 | require base_path('routes/console.php'); 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Debug/ExceptionHandlerInterface.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Debug; 13 | 14 | use CodeIgniter\HTTP\RequestInterface; 15 | use CodeIgniter\HTTP\ResponseInterface; 16 | use Throwable; 17 | 18 | interface ExceptionHandlerInterface 19 | { 20 | /** 21 | * Determines the correct way to display the error. 22 | */ 23 | public function handle( 24 | Throwable $exception, 25 | RequestInterface $request, 26 | ResponseInterface $response, 27 | int $statusCode, 28 | int $exitCode 29 | ): void; 30 | } 31 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Debug/Toolbar/Views/_history.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | {files} 15 | 16 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | {/files} 27 | 28 |
ActionDatetimeStatusMethodURLContent-TypeIs AJAX?
17 | 18 | {datetime}{status}{method}{url}{contentType}{isAJAX}
29 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Language/en/Router.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Router language settings 13 | return [ 14 | 'invalidParameter' => 'A parameter does not match the expected type.', 15 | 'missingDefaultRoute' => 'Unable to determine what should be displayed. A default route has not been specified in the routing file.', 16 | 'invalidDynamicController' => 'A dynamic controller is not allowed for security reasons. Route handler: "{0}"', 17 | 'invalidControllerName' => 'The namespace delimiter is a backslash (\), not a slash (/). Route handler: "{0}"', 18 | ]; 19 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Test/Mock/MockAppConfig.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Test\Mock; 13 | 14 | use Config\App; 15 | 16 | class MockAppConfig extends App 17 | { 18 | public string $baseURL = 'http://example.com/'; 19 | public string $uriProtocol = 'REQUEST_URI'; 20 | public array $proxyIPs = []; 21 | public bool $CSPEnabled = false; 22 | public string $defaultLocale = 'en'; 23 | public bool $negotiateLocale = false; 24 | public array $supportedLocales = [ 25 | 'en', 26 | 'es', 27 | ]; 28 | } 29 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Language/en/Pager.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Pager language settings 13 | return [ 14 | 'pageNavigation' => 'Page navigation', 15 | 'first' => 'First', 16 | 'previous' => 'Previous', 17 | 'next' => 'Next', 18 | 'last' => 'Last', 19 | 'older' => 'Older', 20 | 'newer' => 'Newer', 21 | 'invalidTemplate' => '"{0}" is not a valid Pager template.', 22 | 'invalidPaginationGroup' => '"{0}" is not a valid Pagination group.', 23 | ]; 24 | -------------------------------------------------------------------------------- /dayrui/Fcms/View/api_rewrite_code.html: -------------------------------------------------------------------------------- 1 | {template header.html} 2 | 3 |
4 |
5 | {$name} 6 | {dr_lang('需要在服务器中配置,不懂的可以咨询服务器空间商')} 7 |
8 | 9 |
{$note}
10 | {if $code} 11 |
12 | {/if} 13 | 14 |
15 |
{dr_lang('伪静态URL解析规则配置文件')}:/config/rewrite.php
16 |
{dr_lang('使用自定义URL之后必须要设置解析规则,否则是无法正常打开页面的')}
17 | 22 | 23 | {template footer.html} -------------------------------------------------------------------------------- /dayrui/Fcms/View/role_verify.html: -------------------------------------------------------------------------------- 1 | {template "header.html"} 2 | 3 |
4 | {$form} 5 |
6 | 7 | {loop $verify $v} 8 | 9 |
10 | 11 |
12 | {loop $rs.role $i $arr} 13 | 17 | {/loop} 18 |
19 |
20 | {/loop} 21 | 22 | 23 |
24 |
25 | {template "footer.html"} -------------------------------------------------------------------------------- /dayrui/CodeIgniter/Config/Images.php: -------------------------------------------------------------------------------- 1 | 26 | */ 27 | public array $handlers = [ 28 | 'gd' => GDHandler::class, 29 | 'imagick' => ImageMagickHandler::class, 30 | ]; 31 | } 32 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Entity/Cast/TimestampCast.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Entity\Cast; 13 | 14 | use CodeIgniter\Entity\Exceptions\CastException; 15 | 16 | /** 17 | * Class TimestampCast 18 | */ 19 | class TimestampCast extends BaseCast 20 | { 21 | /** 22 | * {@inheritDoc} 23 | */ 24 | public static function get($value, array $params = []) 25 | { 26 | $value = strtotime($value); 27 | 28 | if ($value === false) { 29 | throw CastException::forInvalidTimestamp(); 30 | } 31 | 32 | return $value; 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Exceptions/ConfigException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Exceptions; 13 | 14 | /** 15 | * Exception for automatic logging. 16 | */ 17 | class ConfigException extends CriticalError implements HasExitCodeInterface 18 | { 19 | use DebugTraceableTrait; 20 | 21 | public function getExitCode(): int 22 | { 23 | return EXIT_CONFIG; 24 | } 25 | 26 | /** 27 | * @return static 28 | */ 29 | public static function forDisabledMigrations() 30 | { 31 | return new static(lang('Migrations.disabled')); 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/View/toolbar/_database.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | {queries} 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 23 | 24 | {/queries} 25 | 26 |
TimeQuery String
{duration}{! sql !}{trace-file}
27 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Files/Exceptions/FileNotFoundException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Files\Exceptions; 13 | 14 | use CodeIgniter\Exceptions\DebugTraceableTrait; 15 | use CodeIgniter\Exceptions\ExceptionInterface; 16 | use RuntimeException; 17 | 18 | class FileNotFoundException extends RuntimeException implements ExceptionInterface 19 | { 20 | use DebugTraceableTrait; 21 | 22 | /** 23 | * @return static 24 | */ 25 | public static function forFileNotFound(string $path) 26 | { 27 | return new static(lang('Files.fileNotFound', [$path])); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Test/Mock/MockResourcePresenter.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Test\Mock; 13 | 14 | use CodeIgniter\API\ResponseTrait; 15 | use CodeIgniter\RESTful\ResourcePresenter; 16 | 17 | class MockResourcePresenter extends ResourcePresenter 18 | { 19 | use ResponseTrait; 20 | 21 | public function getModel() 22 | { 23 | return $this->model; 24 | } 25 | 26 | public function getModelName() 27 | { 28 | return $this->modelName; 29 | } 30 | 31 | public function getFormat() 32 | { 33 | return $this->format; 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Test/Mock/MockSecurity.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Test\Mock; 13 | 14 | use CodeIgniter\Security\Security; 15 | 16 | class MockSecurity extends Security 17 | { 18 | protected function doSendCookie(): void 19 | { 20 | $_COOKIE['csrf_cookie_name'] = $this->hash; 21 | } 22 | 23 | protected function randomize(string $hash): string 24 | { 25 | $keyBinary = hex2bin('005513c290126d34d41bf41c5265e0f1'); 26 | $hashBinary = hex2bin($hash); 27 | 28 | return bin2hex(($hashBinary ^ $keyBinary) . $keyBinary); 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Debug/Toolbar/Views/_database.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | {queries} 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 23 | 24 | {/queries} 25 | 26 |
TimeQuery String
{duration}{! sql !}{trace-file}
18 | {trace} 19 | {index}{file}
20 | {function}

21 | {/trace} 22 |
27 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Test/IniTestTrait.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Test; 13 | 14 | trait IniTestTrait 15 | { 16 | private array $iniSettings = []; 17 | 18 | private function backupIniValues(array $keys): void 19 | { 20 | foreach ($keys as $key) { 21 | $this->iniSettings[$key] = ini_get($key); 22 | } 23 | } 24 | 25 | private function restoreIniValues(): void 26 | { 27 | foreach ($this->iniSettings as $key => $value) { 28 | ini_set($key, $value); 29 | } 30 | 31 | $this->iniSettings = []; 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/ThirdParty/PSR/Log/NullLogger.php: -------------------------------------------------------------------------------- 1 | logger) { }` 11 | * blocks. 12 | */ 13 | class NullLogger extends AbstractLogger 14 | { 15 | /** 16 | * Logs with an arbitrary level. 17 | * 18 | * @param mixed $level 19 | * @param string $message 20 | * @param array $context 21 | * 22 | * @return void 23 | * 24 | * @throws \Psr\Log\InvalidArgumentException 25 | */ 26 | public function log($level, $message, array $context = array()) 27 | { 28 | // noop 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /public/static/assets/global/plugins/codemirror/addon/hint/show-hint.css: -------------------------------------------------------------------------------- 1 | .CodeMirror-hints { 2 | position: absolute; 3 | z-index: 10; 4 | overflow: hidden; 5 | list-style: none; 6 | 7 | margin: 0; 8 | padding: 2px; 9 | 10 | -webkit-box-shadow: 2px 3px 5px rgba(0,0,0,.2); 11 | -moz-box-shadow: 2px 3px 5px rgba(0,0,0,.2); 12 | box-shadow: 2px 3px 5px rgba(0,0,0,.2); 13 | border-radius: 3px; 14 | border: 1px solid silver; 15 | 16 | background: white; 17 | font-size: 90%; 18 | font-family: monospace; 19 | 20 | max-height: 20em; 21 | overflow-y: auto; 22 | } 23 | 24 | .CodeMirror-hint { 25 | margin: 0; 26 | padding: 0 4px; 27 | border-radius: 2px; 28 | max-width: 19em; 29 | overflow: hidden; 30 | white-space: pre; 31 | color: black; 32 | cursor: pointer; 33 | } 34 | 35 | li.CodeMirror-hint-active { 36 | background: #08f; 37 | color: white; 38 | } 39 | -------------------------------------------------------------------------------- /dayrui/Fcms/View/api_login.html: -------------------------------------------------------------------------------- 1 | {template "header.html"} 2 | 3 |
4 | {dr_form_hidden()} 5 |
6 | 7 |
8 | 9 |
10 | 11 |
12 |
13 |
14 | 15 |
16 | 17 |
18 |
19 |
20 |
21 | 22 | {template "footer.html"} -------------------------------------------------------------------------------- /dayrui/Fcms/View/cloud_login_ajax.html: -------------------------------------------------------------------------------- 1 | {template "header.html"} 2 | 3 |
4 | {dr_form_hidden()} 5 |
6 | 7 |
8 | 9 |
10 | 11 |
12 |
13 |
14 | 15 |
16 | 17 |
18 |
19 | 20 | 21 |
22 |
23 | 24 | 25 | {template "footer.html"} -------------------------------------------------------------------------------- /dayrui/CodeIgniter/Extend/Session.php: -------------------------------------------------------------------------------- 1 | session = \Config\Services::session(); 9 | } 10 | 11 | public function set($key, $value = null) { 12 | $this->session->set(SYS_KEY.$key, $value); 13 | } 14 | 15 | public function setTempdata($key, $value, $time) 16 | { 17 | $this->session->setTempdata(SYS_KEY . $key, $value, $time); 18 | } 19 | 20 | public function getTempdata($key = null) 21 | { 22 | return $this->session->getTempdata(SYS_KEY . $key); 23 | } 24 | 25 | public function get($key = null) 26 | { 27 | return $this->session->get(SYS_KEY.$key); 28 | } 29 | 30 | public function remove($key) 31 | { 32 | $this->session->remove(SYS_KEY.$key); 33 | } 34 | } -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Language/en/View.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // View language settings 13 | return [ 14 | 'invalidCellMethod' => '{class}::{method} is not a valid method.', 15 | 'missingCellParameters' => '{class}::{method} has no params.', 16 | 'invalidCellParameter' => '"{0}" is not a valid param name.', 17 | 'noCellClass' => 'No view cell class provided.', 18 | 'invalidCellClass' => 'Unable to locate view cell class: "{0}".', 19 | 'tagSyntaxError' => 'You have a syntax error in your Parser tags: "{0}"', 20 | 'invalidDecoratorClass' => '"{0}" is not a valid View Decorator.', 21 | ]; 22 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Test/Mock/MockEvents.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Test\Mock; 13 | 14 | use CodeIgniter\Events\Events; 15 | 16 | /** 17 | * Events 18 | */ 19 | class MockEvents extends Events 20 | { 21 | public function getListeners() 22 | { 23 | return self::$listeners; 24 | } 25 | 26 | public function getEventsFile() 27 | { 28 | return self::$files; 29 | } 30 | 31 | public function getSimulate() 32 | { 33 | return self::$simulate; 34 | } 35 | 36 | public function unInitialize() 37 | { 38 | static::$initialized = false; 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /dayrui/Fcms/View/html_msg.html: -------------------------------------------------------------------------------- 1 | 2 |
3 | {if $mark} 4 |
{$msg}
5 | {else} 6 |
{$msg}
7 | {/if} 8 | {if $url} 9 | {dr_lang('如果您的浏览器没有自动跳转,请点击这里')} 10 | 11 | {/if} 12 | {if $note}

{$note}

{/if} 13 |
14 | 15 | 16 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Entity/Cast/IntBoolCast.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Entity\Cast; 13 | 14 | /** 15 | * Int Bool Cast 16 | * 17 | * DB column: int (0/1) <--> Class property: bool 18 | */ 19 | final class IntBoolCast extends BaseCast 20 | { 21 | /** 22 | * @param int $value 23 | */ 24 | public static function get($value, array $params = []): bool 25 | { 26 | return (bool) $value; 27 | } 28 | 29 | /** 30 | * @param bool|int|string $value 31 | */ 32 | public static function set($value, array $params = []): int 33 | { 34 | return (int) $value; 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Test/Mock/MockCommon.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | if (! function_exists('is_cli')) { 13 | /** 14 | * Is CLI? 15 | * 16 | * Test to see if a request was made from the command line. 17 | * You can set the return value for testing. 18 | * 19 | * @param bool $newReturn return value to set 20 | */ 21 | function is_cli(?bool $newReturn = null): bool 22 | { 23 | // PHPUnit always runs via CLI. 24 | static $returnValue = true; 25 | 26 | if ($newReturn !== null) { 27 | $returnValue = $newReturn; 28 | } 29 | 30 | return $returnValue; 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /dayrui/Laravel/Extend/Hook.php: -------------------------------------------------------------------------------- 1 | token(); 37 | } 38 | 39 | throw new RuntimeException('Application session store not set.'); 40 | } 41 | } -------------------------------------------------------------------------------- /dayrui/System/Debug/Toolbar/Collectors/Config.php: -------------------------------------------------------------------------------- 1 | 9 | * 10 | * For the full copyright and license information, please view 11 | * the LICENSE file that was distributed with this source code. 12 | */ 13 | 14 | namespace CodeIgniter\Debug\Toolbar\Collectors; 15 | 16 | /** 17 | * Debug toolbar configuration 18 | */ 19 | class Config 20 | { 21 | /** 22 | * Return toolbar config values as an array. 23 | */ 24 | public static function display(): array 25 | { 26 | 27 | return [ 28 | 'ciVersion' => FRAME_VERSION, 29 | 'phpVersion' => PHP_VERSION, 30 | 'phpSAPI' => PHP_SAPI, 31 | 'environment' => ENVIRONMENT, 32 | 'baseURL' => dr_now_url(), 33 | ]; 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Test/Mock/MockResponse.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Test\Mock; 13 | 14 | use CodeIgniter\HTTP\Response; 15 | 16 | /** 17 | * Class MockResponse 18 | */ 19 | class MockResponse extends Response 20 | { 21 | /** 22 | * If true, will not write output. Useful during testing. 23 | * 24 | * @var bool 25 | */ 26 | protected $pretend = true; 27 | 28 | // for testing 29 | public function getPretend() 30 | { 31 | return $this->pretend; 32 | } 33 | 34 | // artificial error for testing 35 | public function misbehave() 36 | { 37 | $this->statusCode = 0; 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Test/Mock/MockSecurityConfig.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Test\Mock; 13 | 14 | use Config\Security; 15 | 16 | /** 17 | * @deprecated 18 | * 19 | * @codeCoverageIgnore 20 | */ 21 | class MockSecurityConfig extends Security 22 | { 23 | public string $tokenName = 'csrf_test_name'; 24 | public string $headerName = 'X-CSRF-TOKEN'; 25 | public string $cookieName = 'csrf_cookie_name'; 26 | public int $expires = 7200; 27 | public bool $regenerate = true; 28 | public bool $redirect = false; 29 | public string $samesite = 'Lax'; 30 | public $excludeURIs = ['http://example.com']; 31 | } 32 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Log/Exceptions/LogException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Log\Exceptions; 13 | 14 | use CodeIgniter\Exceptions\FrameworkException; 15 | 16 | class LogException extends FrameworkException 17 | { 18 | /** 19 | * @return static 20 | */ 21 | public static function forInvalidLogLevel(string $level) 22 | { 23 | return new static(lang('Log.invalidLogLevel', [$level])); 24 | } 25 | 26 | /** 27 | * @return static 28 | */ 29 | public static function forInvalidMessageType(string $messageType) 30 | { 31 | return new static(lang('Log.invalidMessageType', [$messageType])); 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/Config/Publisher.php: -------------------------------------------------------------------------------- 1 | 23 | */ 24 | public $restrictions = [ 25 | ROOTPATH => '*', 26 | FCPATH => '#\.(s?css|js|map|html?|xml|json|webmanifest|ttf|eot|woff2?|gif|jpe?g|tiff?|png|webp|bmp|ico|svg)$#i', 27 | ]; 28 | } 29 | 30 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Language/en/Publisher.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Publisher language settings 13 | return [ 14 | 'collision' => 'Publisher encountered an unexpected "{0}" while copying "{1}" to "{2}".', 15 | 'destinationNotAllowed' => 'Destination is not on the allowed list of Publisher directories: "{0}"', 16 | 'fileNotAllowed' => '"{0}" fails the following restriction for "{1}": {2}', 17 | 18 | // Publish Command 19 | 'publishMissing' => 'No Publisher classes detected in {0} across all namespaces.', 20 | 'publishSuccess' => '"{0}" published {1} file(s) to "{2}".', 21 | 'publishFailure' => '"{0}" failed to publish to "{1}".', 22 | ]; 23 | -------------------------------------------------------------------------------- /dayrui/Fcms/View/cloud_online.html: -------------------------------------------------------------------------------- 1 | {if IS_DEV && IS_OEM_CMS} 2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | {dr_lang('单击下方链接进行访问该页面,关闭开发模式后将自动跳转')} 10 |

{$url}

11 |
12 | 13 | 14 | {else} 15 | 16 | 17 | 18 | 19 | 20 | 21 | {/if} -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/CLI/Exceptions/CLIException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\CLI\Exceptions; 13 | 14 | use CodeIgniter\Exceptions\DebugTraceableTrait; 15 | use RuntimeException; 16 | 17 | /** 18 | * CLIException 19 | */ 20 | class CLIException extends RuntimeException 21 | { 22 | use DebugTraceableTrait; 23 | 24 | /** 25 | * Thrown when `$color` specified for `$type` is not within the 26 | * allowed list of colors. 27 | * 28 | * @return CLIException 29 | */ 30 | public static function forInvalidColor(string $type, string $color) 31 | { 32 | return new static(lang('CLI.invalidColor', [$type, $color])); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Test/Mock/MockFileLogger.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Test\Mock; 13 | 14 | use CodeIgniter\Log\Handlers\FileHandler; 15 | 16 | /** 17 | * Class MockFileLogger 18 | * 19 | * Extends FileHandler, exposing some inner workings 20 | */ 21 | class MockFileLogger extends FileHandler 22 | { 23 | /** 24 | * Where would the log be written? 25 | */ 26 | public $destination; 27 | 28 | public function __construct(array $config) 29 | { 30 | parent::__construct($config); 31 | $this->handles = $config['handles'] ?? []; 32 | $this->destination = $this->path . 'log-' . date('Y-m-d') . '.' . $this->fileExtension; 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Test/Mock/MockServices.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Test\Mock; 13 | 14 | use CodeIgniter\Autoloader\FileLocator; 15 | use CodeIgniter\Config\BaseService; 16 | 17 | class MockServices extends BaseService 18 | { 19 | public $psr4 = [ 20 | 'Tests/Support' => TESTPATH . '_support/', 21 | ]; 22 | public $classmap = []; 23 | 24 | public function __construct() 25 | { 26 | // Don't call the parent since we don't want the default mappings. 27 | // parent::__construct(); 28 | } 29 | 30 | public static function locator(bool $getShared = true) 31 | { 32 | return new FileLocator(static::autoloader()); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /config/rewrite.php: -------------------------------------------------------------------------------- 1 | 'index.php?s=demo&c=show&id=114', 7 | * 动态id解析: "([0-9]+).html" => 'index.php?s=demo&c=show&id=$1', 8 | */ 9 | 10 | return [ 11 | 12 | /***********************下面写你自己的URL解析规则********************/ 13 | 14 | /***********************共享栏目测试规则:栏目列表页面分页的伪静态解析*************************/ 15 | "list\-([\w]+)\-([0-9]+).html(.*)" => 'index.php?c=category&dir=$1&page=$2', 16 | 17 | /***********************共享栏目测试规则:栏目列表页面的伪静态解析*************************/ 18 | "list\-([\w]+).html(.*)" => 'index.php?c=category&dir=$1', 19 | 20 | /***********************共享栏目测试规则:内容页面分页的伪静态解析*************************/ 21 | "show\-([0-9]+)\-([0-9]+).html(.*)" => 'index.php?c=show&id=$1&page=$2', 22 | 23 | /***********************共享栏目测试规则:内容页面的伪静态解析*************************/ 24 | "show\-([0-9]+).html(.*)" => 'index.php?c=show&id=$1', 25 | 26 | 27 | ]; -------------------------------------------------------------------------------- /dayrui/ThinkPHP/System/config/app.php: -------------------------------------------------------------------------------- 1 | env('app.host', ''), 9 | // 应用的命名空间 10 | 'app_namespace' => '', 11 | // 是否启用路由 12 | 'with_route' => true, 13 | // 默认应用 14 | 'default_app' => 'index', 15 | // 默认时区 16 | 'default_timezone' => 'Asia/Shanghai', 17 | 18 | // 应用映射(自动多应用模式有效) 19 | 'app_map' => [], 20 | // 域名绑定(自动多应用模式有效) 21 | 'domain_bind' => [], 22 | // 禁止URL访问的应用列表(自动多应用模式有效) 23 | 'deny_app_list' => [], 24 | 25 | // 异常页面的模板文件 26 | 'exception_tmpl' => app()->getThinkPath() . 'tpl/think_exception.tpl', 27 | 28 | // 错误显示信息,非调试模式有效 29 | 'error_message' => '页面错误!请稍后再试~!', 30 | // 显示错误信息 31 | 'show_error_msg' => true, 32 | ]; 33 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/Extend/Hook.php: -------------------------------------------------------------------------------- 1 | respond(); 19 | } 20 | }); 21 | 22 | // 当提交完成后执行跨站验证 23 | if (defined('SYS_CSRF') && SYS_CSRF && IS_POST) { 24 | \Phpcmf\Hooks::on('cms_end', function ($rt) { 25 | if ($rt['code']) { 26 | \Config\Services::security()->updateHash(); 27 | } 28 | }); 29 | } 30 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Entity/Cast/ArrayCast.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Entity\Cast; 13 | 14 | /** 15 | * Class ArrayCast 16 | */ 17 | class ArrayCast extends BaseCast 18 | { 19 | /** 20 | * {@inheritDoc} 21 | */ 22 | public static function get($value, array $params = []): array 23 | { 24 | if (is_string($value) && (strpos($value, 'a:') === 0 || strpos($value, 's:') === 0)) { 25 | $value = unserialize($value); 26 | } 27 | 28 | return (array) $value; 29 | } 30 | 31 | /** 32 | * {@inheritDoc} 33 | */ 34 | public static function set($value, array $params = []): string 35 | { 36 | return serialize($value); 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/View/toolbar/_views.tpl: -------------------------------------------------------------------------------- 1 | 2 | {times} 3 |

运行时间:{tpl}ms

4 | {/times} 5 | 6 |
7 |

模板文件

8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | {files} 17 | 18 | 19 | 20 | 21 | {/files} 22 | 23 |
模板路径
{name}{path}
24 | 25 |
26 |

引用提示

27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | {tips} 36 | 37 | 38 | 39 | 40 | {/tips} 41 | 42 |
模板提示
{name}{tips}
43 | 44 |
45 | 46 |

模板变量

47 | 48 | 49 | {vars} 50 | 51 | 52 | 53 | 54 | {/vars} 55 | 56 |
{name}
{value}
57 | 58 | -------------------------------------------------------------------------------- /public/static/assets/global/plugins/bootstrap-select/js/i18n/defaults-en_US.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.13.14 (https://developer.snapappointments.com/bootstrap-select) 3 | * 4 | * Copyright 2012-2020 SnapAppointments, LLC 5 | * Licensed under MIT (https://github.com/snapappointments/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | 8 | !function(e,t){void 0===e&&void 0!==window&&(e=window),"function"==typeof define&&define.amd?define(["jquery"],function(e){return t(e)}):"object"==typeof module&&module.exports?module.exports=t(require("jquery")):t(e.jQuery)}(this,function(e){e.fn.selectpicker.defaults={noneSelectedText:"Nothing selected",noneResultsText:"No results match {0}",countSelectedText:function(e,t){return 1==e?"{0} item selected":"{0} items selected"},maxOptionsText:function(e,t){return[1==e?"Limit reached ({n} item max)":"Limit reached ({n} items max)",1==t?"Group limit reached ({n} item max)":"Group limit reached ({n} items max)"]},selectAllText:"Select All",deselectAllText:"Deselect All",multipleSeparator:", "}}); -------------------------------------------------------------------------------- /public/static/assets/global/plugins/codemirror/addon/mode/multiplex_test.js: -------------------------------------------------------------------------------- 1 | // CodeMirror, copyright (c) by Marijn Haverbeke and others 2 | // Distributed under an MIT license: http://codemirror.net/LICENSE 3 | 4 | (function() { 5 | CodeMirror.defineMode("markdown_with_stex", function(){ 6 | var inner = CodeMirror.getMode({}, "stex"); 7 | var outer = CodeMirror.getMode({}, "markdown"); 8 | 9 | var innerOptions = { 10 | open: '$', 11 | close: '$', 12 | mode: inner, 13 | delimStyle: 'delim', 14 | innerStyle: 'inner' 15 | }; 16 | 17 | return CodeMirror.multiplexingMode(outer, innerOptions); 18 | }); 19 | 20 | var mode = CodeMirror.getMode({}, "markdown_with_stex"); 21 | 22 | function MT(name) { 23 | test.mode( 24 | name, 25 | mode, 26 | Array.prototype.slice.call(arguments, 1), 27 | 'multiplexing'); 28 | } 29 | 30 | MT( 31 | "stexInsideMarkdown", 32 | "[strong **Equation:**] [delim $][inner&tag \\pi][delim $]"); 33 | })(); 34 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/Test/Mock/MockEmail.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | namespace CodeIgniter\Test\Mock; 13 | 14 | use CodeIgniter\Email\Email; 15 | use CodeIgniter\Events\Events; 16 | 17 | class MockEmail extends Email 18 | { 19 | /** 20 | * Value to return from mocked send(). 21 | * 22 | * @var bool 23 | */ 24 | public $returnValue = true; 25 | 26 | public function send($autoClear = true) 27 | { 28 | if ($this->returnValue) { 29 | $this->setArchiveValues(); 30 | 31 | if ($autoClear) { 32 | $this->clear(); 33 | } 34 | 35 | Events::trigger('email', $this->archive); 36 | } 37 | 38 | return $this->returnValue; 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /dayrui/Laravel/System/config/cors.php: -------------------------------------------------------------------------------- 1 | ['api/*', 'sanctum/csrf-cookie'], 19 | 20 | 'allowed_methods' => ['*'], 21 | 22 | 'allowed_origins' => ['*'], 23 | 24 | 'allowed_origins_patterns' => [], 25 | 26 | 'allowed_headers' => ['*'], 27 | 28 | 'exposed_headers' => [], 29 | 30 | 'max_age' => 0, 31 | 32 | 'supports_credentials' => false, 33 | 34 | ]; 35 | -------------------------------------------------------------------------------- /dayrui/CodeIgniter/System/ThirdParty/Kint/resources/compiled/microtime.js: -------------------------------------------------------------------------------- 1 | void 0===window.kintMicrotimeInitialized&&(window.kintMicrotimeInitialized=1,window.addEventListener("load",function(){"use strict";var a={},t=Array.prototype.slice.call(document.querySelectorAll("[data-kint-microtime-group]"),0);t.forEach(function(t){var i,e;t.querySelector(".kint-microtime-lap")&&(i=t.getAttribute("data-kint-microtime-group"),e=parseFloat(t.querySelector(".kint-microtime-lap").innerHTML),t=parseFloat(t.querySelector(".kint-microtime-avg").innerHTML),void 0===a[i]&&(a[i]={}),(void 0===a[i].min||a[i].min>e)&&(a[i].min=e),(void 0===a[i].max||a[i].max