├── .gitignore ├── App ├── Team │ ├── DELETE │ │ ├── Attachment.php │ │ ├── Content.php │ │ ├── Field.php │ │ ├── Model.php │ │ ├── Notice.php │ │ └── index.html │ ├── GET │ │ ├── Application.php │ │ ├── Bulletin.php │ │ ├── Content.php │ │ ├── Department.php │ │ ├── Field.php │ │ ├── Index.php │ │ ├── Log.php │ │ ├── Login.php │ │ ├── Menu.php │ │ ├── Model.php │ │ ├── Node.php │ │ ├── Notice.php │ │ ├── Project.php │ │ ├── Report.php │ │ ├── Setting.php │ │ ├── Task.php │ │ ├── User.php │ │ ├── User_group.php │ │ └── index.html │ ├── POST │ │ ├── Content.php │ │ ├── Field.php │ │ ├── Login.php │ │ ├── Model.php │ │ ├── Report.php │ │ ├── Task.php │ │ ├── Task_dynamic.php │ │ ├── Task_supplement.php │ │ ├── Upload.php │ │ ├── User_group.php │ │ └── index.html │ ├── PUT │ │ ├── Content.php │ │ ├── Field.php │ │ ├── Model.php │ │ ├── Setting.php │ │ ├── Task.php │ │ ├── User.php │ │ ├── User_group.php │ │ └── index.html │ └── index.html └── index.html ├── Config ├── Config │ └── index.html ├── Route.php ├── Route │ └── index.html ├── RouteUrl │ └── index.html ├── config_same.php └── index.html ├── Core ├── Abnormal │ ├── Abnormal.php │ ├── Error.php │ └── index.html ├── App.php ├── Controller │ ├── Controller.php │ └── index.html ├── Db │ ├── Mysql.php │ ├── README.md │ └── index.html ├── Func │ ├── CoreFunc.php │ └── index.html ├── Model │ └── Model.php ├── Plugin │ ├── Plugin.php │ ├── PluginController.php │ └── PluginImplements.php ├── Route │ ├── Route.php │ └── index.html ├── Slice │ ├── InitSlice.php │ ├── Slice.php │ ├── index.html │ └── interfaceSlice.php ├── Theme │ ├── 404.php │ ├── error.php │ ├── index.html │ └── jump.php ├── index.html └── index.php ├── Expand ├── Cli │ ├── Core.php │ ├── SendNotice.php │ └── index.html ├── CreatePath.php ├── FileCache.php ├── Font │ └── RobotoSlab-Regular.ttf ├── Form │ ├── Form.php │ └── theme │ │ ├── category.php │ │ ├── checkbox.php │ │ ├── color.php │ │ ├── date.php │ │ ├── editor.php │ │ ├── file.php │ │ ├── icon.php │ │ ├── img.php │ │ ├── multiple.php │ │ ├── radio.php │ │ ├── select.php │ │ ├── send_test.php │ │ ├── setting_option.php │ │ ├── setting_version.php │ │ ├── text.php │ │ ├── textarea.php │ │ └── thumb.php ├── Identicon │ ├── Identicon │ │ ├── Generator │ │ │ ├── BaseGenerator.php │ │ │ ├── GdGenerator.php │ │ │ ├── GeneratorInterface.php │ │ │ └── ImageMagickGenerator.php │ │ └── Identicon.php │ └── autoload.php ├── Install.php ├── Label.php ├── Log.php ├── Notice │ ├── Exception.php │ ├── Mail.php │ ├── OAuth.php │ ├── OAuthTokenProvider.php │ ├── PHPMailer.php │ ├── POP3.php │ ├── SMTP.php │ └── phpmailer.lang-zh_cn.php ├── Page.php ├── PageCommon.php ├── UEupload │ ├── UEController.php │ ├── Uploader.php │ ├── action_crawler.php │ ├── action_list.php │ ├── action_upload.php │ ├── config.json │ └── index.html ├── Verify.php ├── cURL.php ├── index.html └── zip.php ├── LICENSE ├── Model ├── Auth.php ├── Content.php ├── Dynamic.php ├── Extra.php ├── Field.php ├── Menu.php ├── ModelManage.php ├── Node.php ├── Notice.php ├── Option.php ├── Report.php ├── Task.php ├── User.php ├── UserAndDepartment.php └── index.html ├── Plugin └── index.html ├── PluginDevelop.php ├── Public ├── .htaccess ├── Install │ ├── .htaccess │ ├── App │ │ ├── Install │ │ │ ├── Common.php │ │ │ ├── GET │ │ │ │ ├── Index.php │ │ │ │ └── index.html │ │ │ ├── POST │ │ │ │ └── Index.php │ │ │ └── index.html │ │ └── index.html │ ├── Config │ │ ├── config.php │ │ ├── config_array.php │ │ ├── config_same.php │ │ └── index.html │ ├── InstallDb │ │ ├── index.html │ │ └── install.sql │ ├── Theme │ │ └── Install │ │ │ └── Default │ │ │ ├── Index │ │ │ ├── Index_check.php │ │ │ ├── Index_config.php │ │ │ ├── Index_doinstall.php │ │ │ ├── Index_index.php │ │ │ └── Index_option.php │ │ │ ├── index.html │ │ │ └── layout.php │ ├── Write │ │ └── index.php │ ├── index.php │ └── version ├── Plugin │ └── index.html ├── Theme │ ├── Team │ │ └── Default │ │ │ ├── 404.php │ │ │ ├── Application │ │ │ ├── Application_index.php │ │ │ └── Application_local.php │ │ │ ├── Attachment │ │ │ └── Attachment_index.php │ │ │ ├── Bulletin │ │ │ └── Bulletin_view.php │ │ │ ├── Content │ │ │ ├── Content_action_footer.php │ │ │ ├── Content_action_form.php │ │ │ ├── Content_action_header.php │ │ │ ├── Content_action_hidden.php │ │ │ ├── Content_index_footer.php │ │ │ ├── Content_index_header.php │ │ │ ├── Content_index_list.php │ │ │ ├── Content_index_operate.php │ │ │ ├── Content_index_tool.php │ │ │ ├── Content_value_theme.php │ │ │ └── index.html │ │ │ ├── Content_action.php │ │ │ ├── Content_index.php │ │ │ ├── Department │ │ │ ├── Department_action.php │ │ │ └── Department_index.php │ │ │ ├── Field │ │ │ ├── Field_action.php │ │ │ ├── Field_index.php │ │ │ └── Field_index_operate.php │ │ │ ├── Index │ │ │ ├── Index_abar.php │ │ │ └── Index_index.php │ │ │ ├── Log │ │ │ ├── Log_index.php │ │ │ └── Log_view.php │ │ │ ├── Login │ │ │ ├── Login_findPassword.php │ │ │ ├── Login_index.php │ │ │ ├── Login_layout.php │ │ │ └── Login_setPassword.php │ │ │ ├── Menu │ │ │ ├── Menu_action.php │ │ │ └── Menu_index.php │ │ │ ├── Model │ │ │ ├── Model_action.php │ │ │ ├── Model_export.php │ │ │ ├── Model_import.php │ │ │ ├── Model_index.php │ │ │ └── Model_index_operate.php │ │ │ ├── Node │ │ │ ├── Node_action.php │ │ │ └── Node_index.php │ │ │ ├── Notice │ │ │ └── Notice_index.php │ │ │ ├── Project │ │ │ └── Project_index.php │ │ │ ├── Report │ │ │ ├── Report_export.php │ │ │ ├── Report_extract.php │ │ │ ├── Report_index.php │ │ │ └── Report_view.php │ │ │ ├── Setting │ │ │ ├── Setting_action.php │ │ │ ├── Setting_upgrade.php │ │ │ ├── Setting_upgrade_confirm.php │ │ │ └── Setting_upgrade_info.php │ │ │ ├── Task │ │ │ ├── Action │ │ │ │ ├── Task_action_custom.php │ │ │ │ └── Task_action_form.php │ │ │ ├── Index │ │ │ │ ├── Task_index_list.php │ │ │ │ └── Task_index_topbar.php │ │ │ ├── Sidebar │ │ │ │ ├── Task_aging_gap_figure.php │ │ │ │ ├── Task_bulletin.php │ │ │ │ ├── Task_project.php │ │ │ │ ├── Task_search.php │ │ │ │ └── Task_user.php │ │ │ ├── Task_action.php │ │ │ ├── Task_index.php │ │ │ ├── Task_myCard.php │ │ │ ├── Task_repeat.php │ │ │ ├── Task_status_select.php │ │ │ ├── Task_view.php │ │ │ └── View │ │ │ │ ├── Task_content.php │ │ │ │ ├── Task_department.php │ │ │ │ ├── Task_dynamic.php │ │ │ │ ├── Task_list.php │ │ │ │ ├── Task_supplement.php │ │ │ │ ├── Task_title.php │ │ │ │ ├── Task_topbar.php │ │ │ │ └── Task_update.php │ │ │ ├── Topbar.php │ │ │ ├── User │ │ │ ├── User_action.php │ │ │ ├── User_analyze.php │ │ │ ├── User_index.php │ │ │ └── User_setting.php │ │ │ ├── User_group │ │ │ ├── User_group_action.php │ │ │ ├── User_group_index.php │ │ │ ├── User_group_index_operate.php │ │ │ └── User_group_setting.php │ │ │ ├── footer.php │ │ │ ├── header.php │ │ │ ├── jump.php │ │ │ └── layout.php │ ├── assets │ │ ├── css │ │ │ ├── admin.css │ │ │ ├── amazeui.css │ │ │ ├── amazeui.datetimepicker.css │ │ │ ├── amazeui.flat.css │ │ │ ├── amazeui.flat.min.css │ │ │ ├── amazeui.min.css │ │ │ ├── app.css │ │ │ ├── jquery.fancybox.min.css │ │ │ ├── less │ │ │ │ ├── admin.less │ │ │ │ └── app.less │ │ │ ├── spectrum.css │ │ │ ├── ui-dialog.css │ │ │ └── webuploader.css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ ├── i │ │ │ ├── examples │ │ │ │ ├── admin-chrome.png │ │ │ │ ├── admin-firefox.png │ │ │ │ ├── admin-ie.png │ │ │ │ ├── admin-opera.png │ │ │ │ ├── admin-safari.png │ │ │ │ ├── adminPage.png │ │ │ │ ├── blogPage.png │ │ │ │ ├── landing.png │ │ │ │ ├── landingPage.png │ │ │ │ ├── loginPage.png │ │ │ │ └── sidebarPage.png │ │ │ ├── icon_list.png │ │ │ ├── icons.png │ │ │ ├── image.png │ │ │ ├── lattice.png │ │ │ ├── nasa │ │ │ │ └── 42374725534_a653d1b7cb_k.jpg │ │ │ └── team.png │ │ ├── js │ │ │ ├── AMUIwebuploader.js │ │ │ ├── amazeui.datetimepicker.min.js │ │ │ ├── amazeui.ie8polyfill.js │ │ │ ├── amazeui.ie8polyfill.min.js │ │ │ ├── amazeui.js │ │ │ ├── amazeui.min.js │ │ │ ├── amazeui.widgets.helper.js │ │ │ ├── amazeui.widgets.helper.min.js │ │ │ ├── app.js │ │ │ ├── dialog-min.js │ │ │ ├── dialog-plus-min.js │ │ │ ├── echarts.min.js │ │ │ ├── handlebars.min.js │ │ │ ├── highcharts.js │ │ │ ├── jquery.dragsort-0.5.2.min.js │ │ │ ├── jquery.fancybox.min.js │ │ │ ├── jquery.min.js │ │ │ ├── spectrum.js │ │ │ ├── team.js │ │ │ ├── webuploader.js │ │ │ └── webuploader.min.js │ │ └── ueditor │ │ │ ├── dialogs │ │ │ ├── anchor │ │ │ │ └── anchor.html │ │ │ ├── attachment │ │ │ │ ├── attachment.css │ │ │ │ ├── attachment.html │ │ │ │ ├── attachment.js │ │ │ │ ├── fileTypeImages │ │ │ │ │ ├── icon_chm.gif │ │ │ │ │ ├── icon_default.png │ │ │ │ │ ├── icon_doc.gif │ │ │ │ │ ├── icon_exe.gif │ │ │ │ │ ├── icon_jpg.gif │ │ │ │ │ ├── icon_mp3.gif │ │ │ │ │ ├── icon_mv.gif │ │ │ │ │ ├── icon_pdf.gif │ │ │ │ │ ├── icon_ppt.gif │ │ │ │ │ ├── icon_psd.gif │ │ │ │ │ ├── icon_rar.gif │ │ │ │ │ ├── icon_txt.gif │ │ │ │ │ └── icon_xls.gif │ │ │ │ └── images │ │ │ │ │ ├── alignicon.gif │ │ │ │ │ ├── alignicon.png │ │ │ │ │ ├── bg.png │ │ │ │ │ ├── file-icons.gif │ │ │ │ │ ├── file-icons.png │ │ │ │ │ ├── icons.gif │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── image.png │ │ │ │ │ ├── progress.png │ │ │ │ │ ├── success.gif │ │ │ │ │ └── success.png │ │ │ ├── background │ │ │ │ ├── background.css │ │ │ │ ├── background.html │ │ │ │ ├── background.js │ │ │ │ └── images │ │ │ │ │ ├── bg.png │ │ │ │ │ └── success.png │ │ │ ├── charts │ │ │ │ ├── chart.config.js │ │ │ │ ├── charts.css │ │ │ │ ├── charts.html │ │ │ │ ├── charts.js │ │ │ │ └── images │ │ │ │ │ ├── charts0.png │ │ │ │ │ ├── charts1.png │ │ │ │ │ ├── charts2.png │ │ │ │ │ ├── charts3.png │ │ │ │ │ ├── charts4.png │ │ │ │ │ └── charts5.png │ │ │ ├── emotion │ │ │ │ ├── emotion.css │ │ │ │ ├── emotion.html │ │ │ │ ├── emotion.js │ │ │ │ └── images │ │ │ │ │ ├── 0.gif │ │ │ │ │ ├── bface.gif │ │ │ │ │ ├── cface.gif │ │ │ │ │ ├── fface.gif │ │ │ │ │ ├── jxface2.gif │ │ │ │ │ ├── neweditor-tab-bg.png │ │ │ │ │ ├── tface.gif │ │ │ │ │ ├── wface.gif │ │ │ │ │ └── yface.gif │ │ │ ├── gmap │ │ │ │ └── gmap.html │ │ │ ├── help │ │ │ │ ├── help.css │ │ │ │ ├── help.html │ │ │ │ └── help.js │ │ │ ├── image │ │ │ │ ├── image.css │ │ │ │ ├── image.html │ │ │ │ ├── image.js │ │ │ │ └── images │ │ │ │ │ ├── alignicon.jpg │ │ │ │ │ ├── bg.png │ │ │ │ │ ├── icons.gif │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── image.png │ │ │ │ │ ├── progress.png │ │ │ │ │ ├── success.gif │ │ │ │ │ └── success.png │ │ │ ├── insertframe │ │ │ │ └── insertframe.html │ │ │ ├── internal.js │ │ │ ├── link │ │ │ │ └── link.html │ │ │ ├── map │ │ │ │ ├── map.html │ │ │ │ └── show.html │ │ │ ├── music │ │ │ │ ├── music.css │ │ │ │ ├── music.html │ │ │ │ └── music.js │ │ │ ├── preview │ │ │ │ └── preview.html │ │ │ ├── scrawl │ │ │ │ ├── images │ │ │ │ │ ├── addimg.png │ │ │ │ │ ├── brush.png │ │ │ │ │ ├── delimg.png │ │ │ │ │ ├── delimgH.png │ │ │ │ │ ├── empty.png │ │ │ │ │ ├── emptyH.png │ │ │ │ │ ├── eraser.png │ │ │ │ │ ├── redo.png │ │ │ │ │ ├── redoH.png │ │ │ │ │ ├── scale.png │ │ │ │ │ ├── scaleH.png │ │ │ │ │ ├── size.png │ │ │ │ │ ├── undo.png │ │ │ │ │ └── undoH.png │ │ │ │ ├── scrawl.css │ │ │ │ ├── scrawl.html │ │ │ │ └── scrawl.js │ │ │ ├── searchreplace │ │ │ │ ├── searchreplace.html │ │ │ │ └── searchreplace.js │ │ │ ├── snapscreen │ │ │ │ └── snapscreen.html │ │ │ ├── spechars │ │ │ │ ├── spechars.html │ │ │ │ └── spechars.js │ │ │ ├── table │ │ │ │ ├── dragicon.png │ │ │ │ ├── edittable.css │ │ │ │ ├── edittable.html │ │ │ │ ├── edittable.js │ │ │ │ ├── edittd.html │ │ │ │ └── edittip.html │ │ │ ├── template │ │ │ │ ├── config.js │ │ │ │ ├── images │ │ │ │ │ ├── bg.gif │ │ │ │ │ ├── pre0.png │ │ │ │ │ ├── pre1.png │ │ │ │ │ ├── pre2.png │ │ │ │ │ ├── pre3.png │ │ │ │ │ └── pre4.png │ │ │ │ ├── template.css │ │ │ │ ├── template.html │ │ │ │ └── template.js │ │ │ ├── video │ │ │ │ ├── images │ │ │ │ │ ├── bg.png │ │ │ │ │ ├── center_focus.jpg │ │ │ │ │ ├── file-icons.gif │ │ │ │ │ ├── file-icons.png │ │ │ │ │ ├── icons.gif │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── image.png │ │ │ │ │ ├── left_focus.jpg │ │ │ │ │ ├── none_focus.jpg │ │ │ │ │ ├── progress.png │ │ │ │ │ ├── right_focus.jpg │ │ │ │ │ ├── success.gif │ │ │ │ │ └── success.png │ │ │ │ ├── video.css │ │ │ │ ├── video.html │ │ │ │ └── video.js │ │ │ ├── webapp │ │ │ │ └── webapp.html │ │ │ └── wordimage │ │ │ │ ├── fClipboard_ueditor.swf │ │ │ │ ├── imageUploader.swf │ │ │ │ ├── tangram.js │ │ │ │ ├── wordimage.html │ │ │ │ └── wordimage.js │ │ │ ├── index.html │ │ │ ├── lang │ │ │ ├── en │ │ │ │ ├── en.js │ │ │ │ └── images │ │ │ │ │ ├── addimage.png │ │ │ │ │ ├── alldeletebtnhoverskin.png │ │ │ │ │ ├── alldeletebtnupskin.png │ │ │ │ │ ├── background.png │ │ │ │ │ ├── button.png │ │ │ │ │ ├── copy.png │ │ │ │ │ ├── deletedisable.png │ │ │ │ │ ├── deleteenable.png │ │ │ │ │ ├── listbackground.png │ │ │ │ │ ├── localimage.png │ │ │ │ │ ├── music.png │ │ │ │ │ ├── rotateleftdisable.png │ │ │ │ │ ├── rotateleftenable.png │ │ │ │ │ ├── rotaterightdisable.png │ │ │ │ │ ├── rotaterightenable.png │ │ │ │ │ └── upload.png │ │ │ └── zh-cn │ │ │ │ ├── images │ │ │ │ ├── copy.png │ │ │ │ ├── localimage.png │ │ │ │ ├── music.png │ │ │ │ └── upload.png │ │ │ │ └── zh-cn.js │ │ │ ├── themes │ │ │ ├── default │ │ │ │ ├── css │ │ │ │ │ ├── ueditor.css │ │ │ │ │ └── ueditor.min.css │ │ │ │ ├── dialogbase.css │ │ │ │ └── images │ │ │ │ │ ├── anchor.gif │ │ │ │ │ ├── arrow.png │ │ │ │ │ ├── arrow_down.png │ │ │ │ │ ├── arrow_up.png │ │ │ │ │ ├── button-bg.gif │ │ │ │ │ ├── cancelbutton.gif │ │ │ │ │ ├── charts.png │ │ │ │ │ ├── cursor_h.gif │ │ │ │ │ ├── cursor_h.png │ │ │ │ │ ├── cursor_v.gif │ │ │ │ │ ├── cursor_v.png │ │ │ │ │ ├── dialog-title-bg.png │ │ │ │ │ ├── filescan.png │ │ │ │ │ ├── highlighted.gif │ │ │ │ │ ├── icons-all.gif │ │ │ │ │ ├── icons.gif │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── loaderror.png │ │ │ │ │ ├── loading.gif │ │ │ │ │ ├── lock.gif │ │ │ │ │ ├── neweditor-tab-bg.png │ │ │ │ │ ├── pagebreak.gif │ │ │ │ │ ├── scale.png │ │ │ │ │ ├── sortable.png │ │ │ │ │ ├── spacer.gif │ │ │ │ │ ├── sparator_v.png │ │ │ │ │ ├── table-cell-align.png │ │ │ │ │ ├── tangram-colorpicker.png │ │ │ │ │ ├── toolbar_bg.png │ │ │ │ │ ├── unhighlighted.gif │ │ │ │ │ ├── upload.png │ │ │ │ │ ├── videologo.gif │ │ │ │ │ ├── word.gif │ │ │ │ │ └── wordpaste.png │ │ │ └── iframe.css │ │ │ ├── third-party │ │ │ ├── SyntaxHighlighter │ │ │ │ ├── shCore.js │ │ │ │ └── shCoreDefault.css │ │ │ ├── codemirror │ │ │ │ ├── codemirror.css │ │ │ │ └── codemirror.js │ │ │ ├── highcharts │ │ │ │ ├── adapters │ │ │ │ │ ├── mootools-adapter.js │ │ │ │ │ ├── mootools-adapter.src.js │ │ │ │ │ ├── prototype-adapter.js │ │ │ │ │ ├── prototype-adapter.src.js │ │ │ │ │ ├── standalone-framework.js │ │ │ │ │ └── standalone-framework.src.js │ │ │ │ ├── highcharts-more.js │ │ │ │ ├── highcharts-more.src.js │ │ │ │ ├── highcharts.js │ │ │ │ ├── highcharts.src.js │ │ │ │ ├── modules │ │ │ │ │ ├── annotations.js │ │ │ │ │ ├── annotations.src.js │ │ │ │ │ ├── canvas-tools.js │ │ │ │ │ ├── canvas-tools.src.js │ │ │ │ │ ├── data.js │ │ │ │ │ ├── data.src.js │ │ │ │ │ ├── drilldown.js │ │ │ │ │ ├── drilldown.src.js │ │ │ │ │ ├── exporting.js │ │ │ │ │ ├── exporting.src.js │ │ │ │ │ ├── funnel.js │ │ │ │ │ ├── funnel.src.js │ │ │ │ │ ├── heatmap.js │ │ │ │ │ ├── heatmap.src.js │ │ │ │ │ ├── map.js │ │ │ │ │ ├── map.src.js │ │ │ │ │ ├── no-data-to-display.js │ │ │ │ │ └── no-data-to-display.src.js │ │ │ │ └── themes │ │ │ │ │ ├── dark-blue.js │ │ │ │ │ ├── dark-green.js │ │ │ │ │ ├── gray.js │ │ │ │ │ ├── grid.js │ │ │ │ │ └── skies.js │ │ │ ├── jquery-1.10.2.js │ │ │ ├── jquery-1.10.2.min.js │ │ │ ├── jquery-1.10.2.min.map │ │ │ ├── snapscreen │ │ │ │ └── UEditorSnapscreen.exe │ │ │ ├── video-js │ │ │ │ ├── font │ │ │ │ │ ├── vjs.eot │ │ │ │ │ ├── vjs.svg │ │ │ │ │ ├── vjs.ttf │ │ │ │ │ └── vjs.woff │ │ │ │ ├── video-js.css │ │ │ │ ├── video-js.min.css │ │ │ │ ├── video-js.swf │ │ │ │ ├── video.dev.js │ │ │ │ └── video.js │ │ │ ├── webuploader │ │ │ │ ├── Uploader.swf │ │ │ │ ├── webuploader.css │ │ │ │ ├── webuploader.custom.js │ │ │ │ ├── webuploader.custom.min.js │ │ │ │ ├── webuploader.flashonly.js │ │ │ │ ├── webuploader.flashonly.min.js │ │ │ │ ├── webuploader.html5only.js │ │ │ │ ├── webuploader.html5only.min.js │ │ │ │ ├── webuploader.js │ │ │ │ ├── webuploader.min.js │ │ │ │ ├── webuploader.withoutimage.js │ │ │ │ └── webuploader.withoutimage.min.js │ │ │ └── zeroclipboard │ │ │ │ ├── ZeroClipboard.js │ │ │ │ ├── ZeroClipboard.min.js │ │ │ │ └── ZeroClipboard.swf │ │ │ ├── ueditor.all.js │ │ │ ├── ueditor.all.min.js │ │ │ ├── ueditor.config.js │ │ │ ├── ueditor.parse.js │ │ │ └── ueditor.parse.min.js │ └── index.html ├── favicon.ico └── index.php ├── README.md ├── Slice ├── Common │ ├── ApplicationGlobalEvent.php │ ├── Option.php │ └── UpdateRoute.php ├── Team │ ├── AdminLimit.php │ ├── ApplicationInit.php │ ├── Auth.php │ ├── HandleForm │ │ ├── HandleNode.php │ │ ├── HandleRoute.php │ │ ├── HandleTaskList.php │ │ ├── HandleTaskSupplement.php │ │ └── HandleUser.php │ ├── Login.php │ ├── Menu.php │ ├── Notice.php │ ├── TaskMark.php │ ├── TaskSidebar.php │ └── UpdateField │ │ ├── UpdateNodeParentField.php │ │ ├── UpdateTaskPriorityField.php │ │ ├── UpdateUserDepartmentField.php │ │ ├── UpdateUserGroupField.php │ │ └── UpdateUserProjectField.php ├── index.html └── registerSlice.php ├── Upgrade ├── action.ini ├── index.html └── sql │ ├── 2.3.0.sql │ ├── 2.3.4.sql │ ├── 2.3.6.sql │ └── index.html ├── composer.json ├── compress-css.js ├── index.html ├── minify.js ├── nodemon.json ├── package.json ├── plugin.json └── vendor ├── autoload.php ├── composer ├── ClassLoader.php ├── LICENSE ├── autoload_classmap.php ├── autoload_files.php ├── autoload_namespaces.php ├── autoload_psr4.php ├── autoload_real.php ├── autoload_static.php └── installed.json ├── duncan3dc └── sessions │ ├── .coveralls.yml │ ├── CHANGELOG.md │ ├── CODE_OF_CONDUCT.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ ├── Cookie.php │ ├── Session.php │ ├── SessionInstance.php │ ├── SessionInterface.php │ ├── SessionNamespace.php │ └── SessionTrait.php ├── kosinix └── grafika │ ├── composer.json │ ├── fonts │ └── LiberationSans-Regular.ttf │ ├── license.txt │ └── src │ ├── Grafika │ ├── Color.php │ ├── DrawingObject │ │ ├── CubicBezier.php │ │ ├── Ellipse.php │ │ ├── Line.php │ │ ├── Polygon.php │ │ ├── QuadraticBezier.php │ │ └── Rectangle.php │ ├── DrawingObjectInterface.php │ ├── EditorInterface.php │ ├── FilterInterface.php │ ├── Gd │ │ ├── DrawingObject │ │ │ ├── CubicBezier.php │ │ │ ├── Ellipse.php │ │ │ ├── Line.php │ │ │ ├── Polygon.php │ │ │ ├── QuadraticBezier.php │ │ │ └── Rectangle.php │ │ ├── Editor.php │ │ ├── Filter │ │ │ ├── Blur.php │ │ │ ├── Brightness.php │ │ │ ├── Colorize.php │ │ │ ├── Contrast.php │ │ │ ├── Dither.php │ │ │ ├── Gamma.php │ │ │ ├── Grayscale.php │ │ │ ├── Invert.php │ │ │ ├── Pixelate.php │ │ │ ├── Sharpen.php │ │ │ └── Sobel.php │ │ ├── Helper │ │ │ ├── GifByteStream.php │ │ │ └── GifHelper.php │ │ ├── Image.php │ │ └── ImageHash │ │ │ ├── AverageHash.php │ │ │ └── DifferenceHash.php │ ├── Grafika.php │ ├── ImageInterface.php │ ├── ImageType.php │ ├── Imagick │ │ ├── DrawingObject │ │ │ ├── CubicBezier.php │ │ │ ├── Ellipse.php │ │ │ ├── Line.php │ │ │ ├── Polygon.php │ │ │ ├── QuadraticBezier.php │ │ │ └── Rectangle.php │ │ ├── Editor.php │ │ ├── Filter │ │ │ ├── Blur.php │ │ │ ├── Brightness.php │ │ │ ├── Colorize.php │ │ │ ├── Contrast.php │ │ │ ├── Dither.php │ │ │ ├── Gamma.php │ │ │ ├── Grayscale.php │ │ │ ├── Invert.php │ │ │ ├── Pixelate.php │ │ │ ├── Sharpen.php │ │ │ └── Sobel.php │ │ ├── Image.php │ │ └── ImageHash │ │ │ ├── AverageHash.php │ │ │ └── DifferenceHash.php │ └── Position.php │ └── autoloader.php ├── symfony ├── polyfill-iconv │ ├── Iconv.php │ ├── LICENSE │ ├── README.md │ ├── Resources │ │ └── charset │ │ │ ├── from.big5.php │ │ │ ├── from.cp037.php │ │ │ ├── from.cp1006.php │ │ │ ├── from.cp1026.php │ │ │ ├── from.cp424.php │ │ │ ├── from.cp437.php │ │ │ ├── from.cp500.php │ │ │ ├── from.cp737.php │ │ │ ├── from.cp775.php │ │ │ ├── from.cp850.php │ │ │ ├── from.cp852.php │ │ │ ├── from.cp855.php │ │ │ ├── from.cp856.php │ │ │ ├── from.cp857.php │ │ │ ├── from.cp860.php │ │ │ ├── from.cp861.php │ │ │ ├── from.cp862.php │ │ │ ├── from.cp863.php │ │ │ ├── from.cp864.php │ │ │ ├── from.cp865.php │ │ │ ├── from.cp866.php │ │ │ ├── from.cp869.php │ │ │ ├── from.cp874.php │ │ │ ├── from.cp875.php │ │ │ ├── from.cp932.php │ │ │ ├── from.cp936.php │ │ │ ├── from.cp949.php │ │ │ ├── from.cp950.php │ │ │ ├── from.iso-8859-1.php │ │ │ ├── from.iso-8859-10.php │ │ │ ├── from.iso-8859-11.php │ │ │ ├── from.iso-8859-13.php │ │ │ ├── from.iso-8859-14.php │ │ │ ├── from.iso-8859-15.php │ │ │ ├── from.iso-8859-16.php │ │ │ ├── from.iso-8859-2.php │ │ │ ├── from.iso-8859-3.php │ │ │ ├── from.iso-8859-4.php │ │ │ ├── from.iso-8859-5.php │ │ │ ├── from.iso-8859-6.php │ │ │ ├── from.iso-8859-7.php │ │ │ ├── from.iso-8859-8.php │ │ │ ├── from.iso-8859-9.php │ │ │ ├── from.koi8-r.php │ │ │ ├── from.koi8-u.php │ │ │ ├── from.us-ascii.php │ │ │ ├── from.windows-1250.php │ │ │ ├── from.windows-1251.php │ │ │ ├── from.windows-1252.php │ │ │ ├── from.windows-1253.php │ │ │ ├── from.windows-1254.php │ │ │ ├── from.windows-1255.php │ │ │ ├── from.windows-1256.php │ │ │ ├── from.windows-1257.php │ │ │ ├── from.windows-1258.php │ │ │ └── translit.php │ ├── bootstrap.php │ └── composer.json ├── polyfill-intl-grapheme │ ├── Grapheme.php │ ├── LICENSE │ ├── README.md │ ├── bootstrap.php │ └── composer.json ├── polyfill-intl-normalizer │ ├── LICENSE │ ├── Normalizer.php │ ├── README.md │ ├── Resources │ │ ├── stubs │ │ │ └── Normalizer.php │ │ └── unidata │ │ │ ├── canonicalComposition.php │ │ │ ├── canonicalDecomposition.php │ │ │ ├── combiningClass.php │ │ │ └── compatibilityDecomposition.php │ ├── bootstrap.php │ └── composer.json ├── polyfill-mbstring │ ├── LICENSE │ ├── Mbstring.php │ ├── README.md │ ├── Resources │ │ ├── mb_convert_variables.php8 │ │ └── unidata │ │ │ ├── lowerCase.php │ │ │ ├── titleCaseRegexp.php │ │ │ └── upperCase.php │ ├── bootstrap.php │ └── composer.json └── polyfill-php72 │ ├── LICENSE │ ├── Php72.php │ ├── README.md │ ├── bootstrap.php │ └── composer.json └── voku ├── anti-xss ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json └── src │ └── voku │ └── helper │ ├── AntiXSS.php │ └── data │ └── entities_fallback.php ├── portable-ascii ├── CHANGELOG.md ├── LICENSE.txt ├── README.md ├── composer.json └── src │ └── voku │ └── helper │ ├── ASCII.php │ └── data │ ├── ascii_by_languages.php │ ├── ascii_extras_by_languages.php │ ├── ascii_language_max_key.php │ ├── ascii_ord.php │ ├── x000.php │ ├── x001.php │ ├── x002.php │ ├── x003.php │ ├── x004.php │ ├── x005.php │ ├── x006.php │ ├── x007.php │ ├── x009.php │ ├── x00a.php │ ├── x00b.php │ ├── x00c.php │ ├── x00d.php │ ├── x00e.php │ ├── x00f.php │ ├── x010.php │ ├── x011.php │ ├── x012.php │ ├── x013.php │ ├── x014.php │ ├── x015.php │ ├── x016.php │ ├── x017.php │ ├── x018.php │ ├── x01d.php │ ├── x01e.php │ ├── x01f.php │ ├── x020.php │ ├── x021.php │ ├── x022.php │ ├── x023.php │ ├── x024.php │ ├── x025.php │ ├── x026.php │ ├── x027.php │ ├── x028.php │ ├── x029.php │ ├── x02a.php │ ├── x02c.php │ ├── x02e.php │ ├── x02f.php │ ├── x030.php │ ├── x031.php │ ├── x032.php │ ├── x033.php │ ├── x04d.php │ ├── x04e.php │ ├── x04f.php │ ├── x050.php │ ├── x051.php │ ├── x052.php │ ├── x053.php │ ├── x054.php │ ├── x055.php │ ├── x056.php │ ├── x057.php │ ├── x058.php │ ├── x059.php │ ├── x05a.php │ ├── x05b.php │ ├── x05c.php │ ├── x05d.php │ ├── x05e.php │ ├── x05f.php │ ├── x060.php │ ├── x061.php │ ├── x062.php │ ├── x063.php │ ├── x064.php │ ├── x065.php │ ├── x066.php │ ├── x067.php │ ├── x068.php │ ├── x069.php │ ├── x06a.php │ ├── x06b.php │ ├── x06c.php │ ├── x06d.php │ ├── x06e.php │ ├── x06f.php │ ├── x070.php │ ├── x071.php │ ├── x072.php │ ├── x073.php │ ├── x074.php │ ├── x075.php │ ├── x076.php │ ├── x077.php │ ├── x078.php │ ├── x079.php │ ├── x07a.php │ ├── x07b.php │ ├── x07c.php │ ├── x07d.php │ ├── x07e.php │ ├── x07f.php │ ├── x080.php │ ├── x081.php │ ├── x082.php │ ├── x083.php │ ├── x084.php │ ├── x085.php │ ├── x086.php │ ├── x087.php │ ├── x088.php │ ├── x089.php │ ├── x08a.php │ ├── x08b.php │ ├── x08c.php │ ├── x08d.php │ ├── x08e.php │ ├── x08f.php │ ├── x090.php │ ├── x091.php │ ├── x092.php │ ├── x093.php │ ├── x094.php │ ├── x095.php │ ├── x096.php │ ├── x097.php │ ├── x098.php │ ├── x099.php │ ├── x09a.php │ ├── x09b.php │ ├── x09c.php │ ├── x09d.php │ ├── x09e.php │ ├── x09f.php │ ├── x0a0.php │ ├── x0a1.php │ ├── x0a2.php │ ├── x0a3.php │ ├── x0a4.php │ ├── x0ac.php │ ├── x0ad.php │ ├── x0ae.php │ ├── x0af.php │ ├── x0b0.php │ ├── x0b1.php │ ├── x0b2.php │ ├── x0b3.php │ ├── x0b4.php │ ├── x0b5.php │ ├── x0b6.php │ ├── x0b7.php │ ├── x0b8.php │ ├── x0b9.php │ ├── x0ba.php │ ├── x0bb.php │ ├── x0bc.php │ ├── x0bd.php │ ├── x0be.php │ ├── x0bf.php │ ├── x0c0.php │ ├── x0c1.php │ ├── x0c2.php │ ├── x0c3.php │ ├── x0c4.php │ ├── x0c5.php │ ├── x0c6.php │ ├── x0c7.php │ ├── x0c8.php │ ├── x0c9.php │ ├── x0ca.php │ ├── x0cb.php │ ├── x0cc.php │ ├── x0cd.php │ ├── x0ce.php │ ├── x0cf.php │ ├── x0d0.php │ ├── x0d1.php │ ├── x0d2.php │ ├── x0d3.php │ ├── x0d4.php │ ├── x0d5.php │ ├── x0d6.php │ ├── x0d7.php │ ├── x0f9.php │ ├── x0fa.php │ ├── x0fb.php │ ├── x0fc.php │ ├── x0fd.php │ ├── x0fe.php │ ├── x0ff.php │ ├── x1d4.php │ ├── x1d5.php │ ├── x1d6.php │ ├── x1d7.php │ └── x1f1.php └── portable-utf8 ├── CHANGELOG.md ├── LICENSE-APACHE ├── LICENSE-GPL ├── README.md ├── SECURITY.md ├── SUMMARY.md ├── bootstrap.php ├── composer.json └── src └── voku └── helper ├── Bootup.php ├── UTF8.php └── data ├── caseFolding_full.php ├── chr.php ├── emoji.php ├── encodings.php ├── ord.php ├── transliterator_list.php ├── utf8_fix.php └── win1252_to_utf8.php /.gitignore: -------------------------------------------------------------------------------- 1 | /nbproject 2 | /upload 3 | /Temp 4 | /log 5 | /Install/Temp 6 | .DS_Store 7 | .idea 8 | /Public/upload 9 | /Public/Install/index.html 10 | /Public/Install/install.txt 11 | /node_modules 12 | -------------------------------------------------------------------------------- /App/Team/DELETE/Attachment.php: -------------------------------------------------------------------------------- 1 | session()->get('team')['user_id']){ 21 | $this->error('您无法删除本消息'); 22 | } 23 | parent::delete(); 24 | } 25 | 26 | } -------------------------------------------------------------------------------- /App/Team/DELETE/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/App/Team/DELETE/index.html -------------------------------------------------------------------------------- /App/Team/GET/Bulletin.php: -------------------------------------------------------------------------------- 1 | isG('id', '请选择您要查看的公告'); 15 | $content = \Model\Content::findContent('bulletin', $id, 'bulletin_id'); 16 | if(empty($content)){ 17 | $this->error('公告不存在'); 18 | } 19 | $this->assign($content); 20 | $this->display(); 21 | } 22 | 23 | } -------------------------------------------------------------------------------- /App/Team/GET/Menu.php: -------------------------------------------------------------------------------- 1 | assign('title', $this->model['model_title']); 16 | $this->assign('field', $this->field); 17 | $this->layout(); 18 | } 19 | 20 | public function action($display = true){ 21 | $this->assign('topMenu', json_encode(\Model\Menu::topMenu())); 22 | parent::action(); 23 | } 24 | 25 | } -------------------------------------------------------------------------------- /App/Team/GET/Node.php: -------------------------------------------------------------------------------- 1 | assign('title', $this->model['model_title']); 16 | $this->assign('node', \Model\Node::nodeList()); 17 | $this->layout(); 18 | } 19 | 20 | 21 | } -------------------------------------------------------------------------------- /App/Team/GET/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/App/Team/GET/index.html -------------------------------------------------------------------------------- /App/Team/POST/Field.php: -------------------------------------------------------------------------------- 1 | db()->getLastInsert; 23 | \Model\Field::addField($filedID); 24 | 25 | if(empty($_GET['back_url'])){ 26 | $url = $this->url(GROUP . '-Model-fieldList', array('id' => $filedID, 'model_id' => \Model\Field::$model['model_id'])); 27 | }else{ 28 | $url = base64_decode($_GET['back_url']); 29 | } 30 | 31 | $this->success('添加字段成功', $url); 32 | 33 | 34 | } 35 | 36 | } 37 | -------------------------------------------------------------------------------- /App/Team/POST/Report.php: -------------------------------------------------------------------------------- 1 | checkToken(); 15 | $contnt = $this->isP('content', '请填写您要提交的内容'); 16 | if (!\Model\Report::addReport($contnt)) { 17 | $this->error('提交报表失败'); 18 | } 19 | $this->success('提交报表成功', $this->url('Team-Report-my')); 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /App/Team/POST/Task_supplement.php: -------------------------------------------------------------------------------- 1 | p('task_id'), '2', '5'); 19 | 20 | $this->success('追加任务内容成功!'); 21 | 22 | } 23 | 24 | } -------------------------------------------------------------------------------- /App/Team/POST/Upload.php: -------------------------------------------------------------------------------- 1 | action(); 19 | } 20 | 21 | } -------------------------------------------------------------------------------- /App/Team/POST/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/App/Team/POST/index.html -------------------------------------------------------------------------------- /App/Team/PUT/Field.php: -------------------------------------------------------------------------------- 1 | url(GROUP . '-Model-fieldList', array('id' => $this->p('id'), 'model_id' => \Model\Field::$model['model_id'])); 24 | } else { 25 | $url = base64_decode($_GET['back_url']); 26 | } 27 | 28 | $this->success('更新字段成功', $url); 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /App/Team/PUT/Model.php: -------------------------------------------------------------------------------- 1 | db('menu')->where('menu_name = :old_name')->update(array('menu_name' => $this->p('title'), 'noset' => array('old_name' => $model['model_title']))); 26 | 27 | $this->success('更新模型成功', $this->url(GROUP . '-Model-index')); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /App/Team/PUT/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/App/Team/PUT/index.html -------------------------------------------------------------------------------- /App/Team/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/App/Team/index.html -------------------------------------------------------------------------------- /App/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/App/index.html -------------------------------------------------------------------------------- /Config/Config/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Config/Config/index.html -------------------------------------------------------------------------------- /Config/Route.php: -------------------------------------------------------------------------------- 1 | code}]: {$this->message}\n"; 27 | } 28 | 29 | /** 30 | * ajax请求的异常信息提示 31 | */ 32 | public function getTraceAsAjax() { 33 | \Core\Func\CoreFunc::isAjax(['msg' => $this->message], 0); 34 | } 35 | 36 | } 37 | -------------------------------------------------------------------------------- /Core/Abnormal/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Core/Abnormal/index.html -------------------------------------------------------------------------------- /Core/Controller/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Core/Controller/index.html -------------------------------------------------------------------------------- /Core/Db/README.md: -------------------------------------------------------------------------------- 1 | ##PESCMS DB类 2 | PESCMS 默认使用MYSQL存储数据 3 | 若您需要进行调整,请自行参阅Mysql.php文件进行调整。 4 | -------------------------------------------------------------------------------- /Core/Db/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Core/Db/index.html -------------------------------------------------------------------------------- /Core/Func/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Core/Func/index.html -------------------------------------------------------------------------------- /Core/Model/Model.php: -------------------------------------------------------------------------------- 1 | index(); -------------------------------------------------------------------------------- /Expand/Cli/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Expand/Cli/index.html -------------------------------------------------------------------------------- /Expand/CreatePath.php: -------------------------------------------------------------------------------- 1 | $value){ 28 | if($value == '.' || $value == '..'){ 29 | continue; 30 | } 31 | $mark .= "/{$value}"; 32 | if(!is_dir($mark) && mkdir($mark) === false && DEBUG === true){ 33 | echo "warning: Create {$mark} path fail!
"; 34 | }else{ 35 | fopen($mark.'/index.html', 'a'); 36 | } 37 | } 38 | 39 | } 40 | 41 | } -------------------------------------------------------------------------------- /Expand/Font/RobotoSlab-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Expand/Font/RobotoSlab-Regular.ttf -------------------------------------------------------------------------------- /Expand/Form/theme/category.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Expand/Form/theme/checkbox.php: -------------------------------------------------------------------------------- 1 | 5 | 6 | $item) : ?> 7 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /Expand/Form/theme/color.php: -------------------------------------------------------------------------------- 1 | /> -------------------------------------------------------------------------------- /Expand/Form/theme/date.php: -------------------------------------------------------------------------------- 1 | readonly /> -------------------------------------------------------------------------------- /Expand/Form/theme/editor.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Expand/Form/theme/file.php: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /Expand/Form/theme/icon.php: -------------------------------------------------------------------------------- 1 | 获取图标 style="width: 80%" /> -------------------------------------------------------------------------------- /Expand/Form/theme/img.php: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /Expand/Form/theme/multiple.php: -------------------------------------------------------------------------------- 1 | 5 | 6 | -------------------------------------------------------------------------------- /Expand/Form/theme/radio.php: -------------------------------------------------------------------------------- 1 | 2 | $value) : ?> 3 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Expand/Form/theme/select.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Expand/Form/theme/send_test.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 发送测试邮件 -------------------------------------------------------------------------------- /Expand/Form/theme/setting_option.php: -------------------------------------------------------------------------------- 1 | 5 | 6 |
7 | $name): ?> 8 | 9 | > 10 | 11 |
12 | -------------------------------------------------------------------------------- /Expand/Form/theme/setting_version.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Expand/Form/theme/text.php: -------------------------------------------------------------------------------- 1 | /> -------------------------------------------------------------------------------- /Expand/Form/theme/textarea.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Expand/Form/theme/thumb.php: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /Expand/Identicon/Identicon/Generator/GeneratorInterface.php: -------------------------------------------------------------------------------- 1 | 7 | */ 8 | interface GeneratorInterface 9 | { 10 | /** 11 | * 12 | * 13 | * @param string $string 14 | * @param integer $size 15 | * @param array|string $color 16 | * @param array|string $backgroundColor 17 | * 18 | * @return mixed 19 | */ 20 | function getImageBinaryData($string, $size = null, $color = null, $backgroundColor = null); 21 | 22 | /** 23 | * 24 | * 25 | * @param string $string 26 | * @param integer $size 27 | * @param array|string $color 28 | * @param array|string $backgroundColor 29 | * 30 | * @return string 31 | */ 32 | function getImageResource($string, $size = null, $color = null, $backgroundColor = null); 33 | } 34 | -------------------------------------------------------------------------------- /Expand/Identicon/autoload.php: -------------------------------------------------------------------------------- 1 | insert(array('user_id' => $userId, 'task_id' => $taskId, 'dynamic_type' => $type, 'dynamic_time' => time())); 30 | } 31 | 32 | } 33 | -------------------------------------------------------------------------------- /Model/Option.php: -------------------------------------------------------------------------------- 1 | 2 | RewriteEngine on 3 | RewriteCond %{REQUEST_FILENAME} !-d 4 | RewriteCond %{REQUEST_FILENAME} !-f 5 | RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L] 6 | -------------------------------------------------------------------------------- /Public/Install/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | RewriteEngine on 3 | RewriteCond %{REQUEST_FILENAME} !-d 4 | RewriteCond %{REQUEST_FILENAME} !-f 5 | RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L] 6 | -------------------------------------------------------------------------------- /Public/Install/App/Install/Common.php: -------------------------------------------------------------------------------- 1 | error('不能再次执行安装程序!'); 20 | } 21 | 22 | if(is_file(APP_PATH.'version')){ 23 | $this->version = file(APP_PATH.'version')[0]; 24 | }else{ 25 | $this->version = 'Unknown Version'; 26 | } 27 | 28 | $this->assign('version', $this->version); 29 | 30 | } 31 | 32 | } -------------------------------------------------------------------------------- /Public/Install/App/Install/GET/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Install/App/Install/GET/index.html -------------------------------------------------------------------------------- /Public/Install/App/Install/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Install/App/Install/index.html -------------------------------------------------------------------------------- /Public/Install/App/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Install/App/index.html -------------------------------------------------------------------------------- /Public/Install/Config/config.php: -------------------------------------------------------------------------------- 1 | 'pes_', 5 | 'APP_GROUP_LIST' => 'Install', //项目分组设定 6 | 'DEFAULT_GROUP' => 'Install', //默认分组 7 | 'SESSION_ID' => 'PESTESESSION', 8 | 'LOG_PATH' => '/log', 9 | 'USER_KEY' => 'TEAMINSTALL' 10 | ); 11 | -------------------------------------------------------------------------------- /Public/Install/Config/config_array.php: -------------------------------------------------------------------------------- 1 | '/Core/Theme/error.php', 4 | 'APP_GROUP_LIST' => 'Team', 5 | 'DEFAULT_GROUP' => 'Team', 6 | 'FILE_CACHE_PATH' => '/Temp', 7 | 'FILE_CACHE_TIME' => '1800', 8 | 'LOG_PATH' => '/log', 9 | 'LOG_DELETE' => '7', 10 | 'UPLOAD_PATH' => '/upload', 11 | 'SESSION_ID' => 'PESTESESSION', 12 | ); -------------------------------------------------------------------------------- /Public/Install/Config/config_same.php: -------------------------------------------------------------------------------- 1 | 'Install', //项目分组设定 5 | 'DEFAULT_GROUP' => 'Install', //默认分组 6 | 'SESSION_ID' => 'PESTESESSION', 7 | 'LOG_PATH' => '/log', 8 | ); 9 | -------------------------------------------------------------------------------- /Public/Install/Config/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Install/Config/index.html -------------------------------------------------------------------------------- /Public/Install/InstallDb/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Install/InstallDb/index.html -------------------------------------------------------------------------------- /Public/Install/Theme/Install/Default/Index/Index_index.php: -------------------------------------------------------------------------------- 1 |
2 |

正在拉取用户协议...

3 |
4 | -------------------------------------------------------------------------------- /Public/Install/Theme/Install/Default/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Install/Theme/Install/Default/index.html -------------------------------------------------------------------------------- /Public/Install/Write/index.php: -------------------------------------------------------------------------------- 1 | PESCMS系列程序需要PHP7.0 或以上版本支持!'; 15 | exit; 16 | } 17 | //安装程序禁用PHP opcache 18 | ini_set('opcache.enable', '0'); 19 | 20 | define('ITEM', 'App'); 21 | //当前项目控制器所在目录 22 | defined('APP_PATH') or define('APP_PATH', dirname(__FILE__). '/'); 23 | 24 | //调试模式 25 | define('DEBUG', true); 26 | //定位入口文件到PES CORE的目录路径 27 | $parentPath = dirname(dirname(APP_PATH)); 28 | //当前项目配置文件 29 | defined('CONFIG_PATH') or define('CONFIG_PATH', APP_PATH . 'Config/'); 30 | //模板存放目录 31 | define('THEME', APP_PATH.'/Theme'); 32 | 33 | require $parentPath.'/Core/index.php'; -------------------------------------------------------------------------------- /Public/Install/version: -------------------------------------------------------------------------------- 1 | 2.3.7 -------------------------------------------------------------------------------- /Public/Plugin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Plugin/index.html -------------------------------------------------------------------------------- /Public/Theme/Team/Default/404.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |
5 |
6 |

噢,我的老伙计,页面被怪兽吃了!

7 |
8 |
9 |
10 | 11 | 12 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /Public/Theme/Team/Default/Bulletin/Bulletin_view.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |

4 |
5 |
6 |
7 | 8 |
9 |
10 |
11 | -------------------------------------------------------------------------------- /Public/Theme/Team/Default/Content/Content_action_footer.php: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 |
10 |
11 | 12 |
13 |
14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /Public/Theme/Team/Default/Content/Content_action_form.php: -------------------------------------------------------------------------------- 1 | 7 | $value) : ?> 8 | 9 |
10 |
11 |
12 | 13 | formList($value); ?> 14 | 15 |
16 | 17 |
18 | 19 |
20 |
21 |
22 | 23 | -------------------------------------------------------------------------------- /Public/Theme/Team/Default/Content/Content_action_header.php: -------------------------------------------------------------------------------- 1 | 7 | 8 |
9 |
10 |
11 |
12 |
13 | 14 | 返回 16 | 17 | 18 |
19 |
20 |
21 |
22 | -------------------------------------------------------------------------------- /Public/Theme/Team/Default/Content/Content_action_hidden.php: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 10 | token() ?> -------------------------------------------------------------------------------- /Public/Theme/Team/Default/Content/Content_index_footer.php: -------------------------------------------------------------------------------- 1 | 7 |
8 |
9 |
10 | -------------------------------------------------------------------------------- /Public/Theme/Team/Default/Content/Content_index_header.php: -------------------------------------------------------------------------------- 1 | 7 | 8 |
9 |
10 |
11 |
12 |
13 | 14 | 返回 16 | 17 | 18 | / 19 | 列表 20 |
21 |
22 | -------------------------------------------------------------------------------- /Public/Theme/Team/Default/Content/Content_index_operate.php: -------------------------------------------------------------------------------- 1 | url(GROUP . '-' . MODULE . '-action', array('id' => $label->xss($value["{$fieldPrefix}id"]), 'back_url' => base64_encode($_SERVER['REQUEST_URI']))) : $editUrl; 6 | $echoDeleteUrl = empty($deleteUrl) ? $label->url(GROUP . '-' . MODULE . '-action', array('id' => $label->xss($value["{$fieldPrefix}id"]), 'method' => 'DELETE', 'back_url' => base64_encode($_SERVER['REQUEST_URI']))) : $deleteUrl; 7 | 8 | ?> 9 | checkAuth(GROUP.'GET'.MODULE.'action') === true): ?> 10 | 编辑 11 | 12 | 13 | checkAuth(GROUP.'DELETE'.MODULE.'action') === true): ?> 14 | | 15 | 删除 16 | 17 | 18 | opEvent(['id' => $value["{$fieldPrefix}id"]]) ?> 19 | -------------------------------------------------------------------------------- /Public/Theme/Team/Default/Content/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/Team/Default/Content/index.html -------------------------------------------------------------------------------- /Public/Theme/Team/Default/Content_action.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Public/Theme/Team/Default/Content_index.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Public/Theme/Team/Default/Field/Field_index.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Public/Theme/Team/Default/Field/Field_index_operate.php: -------------------------------------------------------------------------------- 1 | url(GROUP . '-' . MODULE . '-action', array('id' => $value["{$fieldPrefix}id"], 'model_id' => (int) $_GET['model_id'], 'back_url' => base64_encode($_SERVER['REQUEST_URI']))); 4 | 5 | $deleteUrl = $label->url(GROUP . '-' . MODULE . '-action', array('id' => $value["{$fieldPrefix}id"], 'method' => 'DELETE', 'back_url' => base64_encode($_SERVER['REQUEST_URI']))); 6 | 7 | ?> 8 |
9 |
10 | 编辑 11 | | 12 | 删除 14 |
15 |
-------------------------------------------------------------------------------- /Public/Theme/Team/Default/Login/Login_findPassword.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | token() ?> 4 | 5 | 9 | 10 | 15 | 16 | 17 | 18 | 19 | 20 | <<返回登录 21 | 22 | -------------------------------------------------------------------------------- /Public/Theme/Team/Default/Login/Login_index.php: -------------------------------------------------------------------------------- 1 |
2 | 3 | token() ?> 4 | 8 | 9 | 13 | 14 | 15 | 16 | 忘记密码? 17 | 18 | event('OAuth2', NULL); ?> 19 | 20 |
21 | -------------------------------------------------------------------------------- /Public/Theme/Team/Default/Login/Login_layout.php: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | -------------------------------------------------------------------------------- /Public/Theme/Team/Default/Login/Login_setPassword.php: -------------------------------------------------------------------------------- 1 |
2 | 3 | token() ?> 4 | 5 | 9 | 10 | 14 | 15 | 20 | 21 | 22 |
23 | -------------------------------------------------------------------------------- /Public/Theme/Team/Default/Menu/Menu_action.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 21 | -------------------------------------------------------------------------------- /Public/Theme/Team/Default/Model/Model_action.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 14 | -------------------------------------------------------------------------------- /Public/Theme/Team/Default/Node/Node_action.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 22 | -------------------------------------------------------------------------------- /Public/Theme/Team/Default/Project/Project_index.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /Public/Theme/Team/Default/Report/Report_view.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 |
5 | 6 | 返回 8 | 9 | 10 |
11 |
12 | $value): ?> 13 |
14 |
15 |
16 | 17 |
18 |
19 | 20 |
21 | -------------------------------------------------------------------------------- /Public/Theme/Team/Default/Task/Sidebar/Task_project.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 | 5 |
6 |
-------------------------------------------------------------------------------- /Public/Theme/Team/Default/Task/Sidebar/Task_user.php: -------------------------------------------------------------------------------- 1 |
2 |
个人资料
3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 |
findContent('department', 'department_id', $user_department_id)['department_name']; ?>
19 |
20 |
-------------------------------------------------------------------------------- /Public/Theme/Team/Default/Task/Task_action.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 |
6 | 新任务 7 |
8 |
9 |
10 |
12 | token(); ?> 13 | 14 |
15 |
16 | 17 |
18 |
19 |
20 |
21 |
22 |
-------------------------------------------------------------------------------- /Public/Theme/Team/Default/Task/View/Task_supplement.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | token(); ?> 5 | 6 | 7 | 8 |
9 | 10 | 11 |
12 | 15 |
16 | 17 | 18 | -------------------------------------------------------------------------------- /Public/Theme/Team/Default/Task/View/Task_topbar.php: -------------------------------------------------------------------------------- 1 | 2 |
3 | 返回 5 | getStatusSelect($statusMark, ['task_id' => $task_id, 'task_status' => $task_status]); ?> 6 | 7 | 9 | 至 10 | 11 | 12 |
13 |
14 | -------------------------------------------------------------------------------- /Public/Theme/Team/Default/Task/View/Task_update.php: -------------------------------------------------------------------------------- 1 |
2 |
3 | token(); ?> 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 14 |
15 | 16 |
17 |
18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /Public/Theme/Team/Default/User/User_action.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | -------------------------------------------------------------------------------- /Public/Theme/Team/Default/User/User_index.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /Public/Theme/Team/Default/User_group/User_group_action.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Public/Theme/Team/Default/layout.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |
6 | 7 |
8 | © Copyright 2015-. Power by PESCMS TEAM 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /Public/Theme/assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /Public/Theme/assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /Public/Theme/assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /Public/Theme/assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /Public/Theme/assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /Public/Theme/assets/i/examples/admin-chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/i/examples/admin-chrome.png -------------------------------------------------------------------------------- /Public/Theme/assets/i/examples/admin-firefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/i/examples/admin-firefox.png -------------------------------------------------------------------------------- /Public/Theme/assets/i/examples/admin-ie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/i/examples/admin-ie.png -------------------------------------------------------------------------------- /Public/Theme/assets/i/examples/admin-opera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/i/examples/admin-opera.png -------------------------------------------------------------------------------- /Public/Theme/assets/i/examples/admin-safari.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/i/examples/admin-safari.png -------------------------------------------------------------------------------- /Public/Theme/assets/i/examples/adminPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/i/examples/adminPage.png -------------------------------------------------------------------------------- /Public/Theme/assets/i/examples/blogPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/i/examples/blogPage.png -------------------------------------------------------------------------------- /Public/Theme/assets/i/examples/landing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/i/examples/landing.png -------------------------------------------------------------------------------- /Public/Theme/assets/i/examples/landingPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/i/examples/landingPage.png -------------------------------------------------------------------------------- /Public/Theme/assets/i/examples/loginPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/i/examples/loginPage.png -------------------------------------------------------------------------------- /Public/Theme/assets/i/examples/sidebarPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/i/examples/sidebarPage.png -------------------------------------------------------------------------------- /Public/Theme/assets/i/icon_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/i/icon_list.png -------------------------------------------------------------------------------- /Public/Theme/assets/i/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/i/icons.png -------------------------------------------------------------------------------- /Public/Theme/assets/i/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/i/image.png -------------------------------------------------------------------------------- /Public/Theme/assets/i/lattice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/i/lattice.png -------------------------------------------------------------------------------- /Public/Theme/assets/i/nasa/42374725534_a653d1b7cb_k.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/i/nasa/42374725534_a653d1b7cb_k.jpg -------------------------------------------------------------------------------- /Public/Theme/assets/i/team.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/i/team.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/attachment/fileTypeImages/icon_chm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/attachment/fileTypeImages/icon_chm.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/attachment/fileTypeImages/icon_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/attachment/fileTypeImages/icon_default.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/attachment/fileTypeImages/icon_doc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/attachment/fileTypeImages/icon_doc.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/attachment/fileTypeImages/icon_exe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/attachment/fileTypeImages/icon_exe.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/attachment/fileTypeImages/icon_jpg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/attachment/fileTypeImages/icon_jpg.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/attachment/fileTypeImages/icon_mp3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/attachment/fileTypeImages/icon_mp3.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/attachment/fileTypeImages/icon_mv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/attachment/fileTypeImages/icon_mv.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/attachment/fileTypeImages/icon_pdf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/attachment/fileTypeImages/icon_pdf.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/attachment/fileTypeImages/icon_ppt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/attachment/fileTypeImages/icon_ppt.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/attachment/fileTypeImages/icon_psd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/attachment/fileTypeImages/icon_psd.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/attachment/fileTypeImages/icon_rar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/attachment/fileTypeImages/icon_rar.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/attachment/fileTypeImages/icon_txt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/attachment/fileTypeImages/icon_txt.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/attachment/fileTypeImages/icon_xls.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/attachment/fileTypeImages/icon_xls.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/attachment/images/alignicon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/attachment/images/alignicon.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/attachment/images/alignicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/attachment/images/alignicon.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/attachment/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/attachment/images/bg.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/attachment/images/file-icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/attachment/images/file-icons.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/attachment/images/file-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/attachment/images/file-icons.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/attachment/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/attachment/images/icons.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/attachment/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/attachment/images/icons.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/attachment/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/attachment/images/image.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/attachment/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/attachment/images/progress.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/attachment/images/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/attachment/images/success.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/attachment/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/attachment/images/success.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/background/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/background/images/bg.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/background/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/background/images/success.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/charts/images/charts0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/charts/images/charts0.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/charts/images/charts1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/charts/images/charts1.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/charts/images/charts2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/charts/images/charts2.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/charts/images/charts3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/charts/images/charts3.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/charts/images/charts4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/charts/images/charts4.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/charts/images/charts5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/charts/images/charts5.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/emotion/images/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/emotion/images/0.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/emotion/images/bface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/emotion/images/bface.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/emotion/images/cface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/emotion/images/cface.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/emotion/images/fface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/emotion/images/fface.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/emotion/images/jxface2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/emotion/images/jxface2.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/emotion/images/neweditor-tab-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/emotion/images/neweditor-tab-bg.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/emotion/images/tface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/emotion/images/tface.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/emotion/images/wface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/emotion/images/wface.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/emotion/images/yface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/emotion/images/yface.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/help/help.css: -------------------------------------------------------------------------------- 1 | .wrapper{width: 370px;margin: 10px auto;zoom: 1;} 2 | .tabbody{height: 360px;} 3 | .tabbody .panel{width:100%;height: 360px;position: absolute;background: #fff;} 4 | .tabbody .panel h1{font-size:26px;margin: 5px 0 0 5px;} 5 | .tabbody .panel p{font-size:12px;margin: 5px 0 0 5px;} 6 | .tabbody table{width:90%;line-height: 20px;margin: 5px 0 0 5px;;} 7 | .tabbody table thead{font-weight: bold;line-height: 25px;} -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/image/images/alignicon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/image/images/alignicon.jpg -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/image/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/image/images/bg.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/image/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/image/images/icons.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/image/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/image/images/icons.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/image/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/image/images/image.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/image/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/image/images/progress.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/image/images/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/image/images/success.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/image/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/image/images/success.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/music/music.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 插入音乐 6 | 7 | 8 | 9 | 10 |
11 | 15 |
16 | 17 |
18 |
19 |
20 |
21 | 22 | 31 | 32 | -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/scrawl/images/addimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/scrawl/images/addimg.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/scrawl/images/brush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/scrawl/images/brush.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/scrawl/images/delimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/scrawl/images/delimg.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/scrawl/images/delimgH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/scrawl/images/delimgH.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/scrawl/images/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/scrawl/images/empty.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/scrawl/images/emptyH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/scrawl/images/emptyH.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/scrawl/images/eraser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/scrawl/images/eraser.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/scrawl/images/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/scrawl/images/redo.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/scrawl/images/redoH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/scrawl/images/redoH.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/scrawl/images/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/scrawl/images/scale.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/scrawl/images/scaleH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/scrawl/images/scaleH.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/scrawl/images/size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/scrawl/images/size.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/scrawl/images/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/scrawl/images/undo.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/scrawl/images/undoH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/scrawl/images/undoH.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/spechars/spechars.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 8 | 14 | 15 | 16 |
17 |
18 |
19 | 20 | 21 | -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/table/dragicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/table/dragicon.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/table/edittip.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 表格删除提示 5 | 6 | 17 | 18 | 19 |
20 |
21 | 22 |
23 |
24 | 25 |
26 |
27 | 32 | 33 | -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/template/images/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/template/images/bg.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/template/images/pre0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/template/images/pre0.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/template/images/pre1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/template/images/pre1.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/template/images/pre2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/template/images/pre2.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/template/images/pre3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/template/images/pre3.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/template/images/pre4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/template/images/pre4.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/template/template.css: -------------------------------------------------------------------------------- 1 | .wrap{ padding: 5px;font-size: 14px;} 2 | .left{width:425px;float: left;} 3 | .right{width:160px;border: 1px solid #ccc;float: right;padding: 5px;margin-right: 5px;} 4 | .right .pre{height: 332px;overflow-y: auto;} 5 | .right .preitem{border: white 1px solid;margin: 5px 0;padding: 2px 0;} 6 | .right .preitem:hover{background-color: lemonChiffon;cursor: pointer;border: #ccc 1px solid;} 7 | .right .preitem img{display: block;margin: 0 auto;width:100px;} 8 | .clear{clear: both;} 9 | .top{height:26px;line-height: 26px;padding: 5px;} 10 | .bottom{height:320px;width:100%;margin: 0 auto;} 11 | .transparent{ background: url("images/bg.gif") repeat;} 12 | .bottom table tr td{border:1px dashed #ccc;} 13 | #colorPicker{width: 17px;height: 17px;border: 1px solid #CCC;display: inline-block;border-radius: 3px;box-shadow: 2px 2px 5px #D3D6DA;} 14 | .border_style1{padding:2px;border: 1px solid #ccc;border-radius: 5px;box-shadow:2px 2px 5px #d3d6da;} 15 | p{margin: 5px 0} 16 | table{clear:both;margin-bottom:10px;border-collapse:collapse;word-break:break-all;} 17 | li{clear:both} 18 | ol{padding-left:40px; } -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/template/template.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
12 |
13 | 14 |
15 |
16 |
17 |
18 | 19 |
20 |
21 |
22 |
23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/video/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/video/images/bg.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/video/images/center_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/video/images/center_focus.jpg -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/video/images/file-icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/video/images/file-icons.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/video/images/file-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/video/images/file-icons.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/video/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/video/images/icons.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/video/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/video/images/icons.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/video/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/video/images/image.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/video/images/left_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/video/images/left_focus.jpg -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/video/images/none_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/video/images/none_focus.jpg -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/video/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/video/images/progress.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/video/images/right_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/video/images/right_focus.jpg -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/video/images/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/video/images/success.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/video/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/video/images/success.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/wordimage/fClipboard_ueditor.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/wordimage/fClipboard_ueditor.swf -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/dialogs/wordimage/imageUploader.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/dialogs/wordimage/imageUploader.swf -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/lang/en/images/addimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/lang/en/images/addimage.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/lang/en/images/alldeletebtnhoverskin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/lang/en/images/alldeletebtnhoverskin.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/lang/en/images/alldeletebtnupskin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/lang/en/images/alldeletebtnupskin.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/lang/en/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/lang/en/images/background.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/lang/en/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/lang/en/images/button.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/lang/en/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/lang/en/images/copy.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/lang/en/images/deletedisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/lang/en/images/deletedisable.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/lang/en/images/deleteenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/lang/en/images/deleteenable.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/lang/en/images/listbackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/lang/en/images/listbackground.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/lang/en/images/localimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/lang/en/images/localimage.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/lang/en/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/lang/en/images/music.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/lang/en/images/rotateleftdisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/lang/en/images/rotateleftdisable.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/lang/en/images/rotateleftenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/lang/en/images/rotateleftenable.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/lang/en/images/rotaterightdisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/lang/en/images/rotaterightdisable.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/lang/en/images/rotaterightenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/lang/en/images/rotaterightenable.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/lang/en/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/lang/en/images/upload.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/lang/zh-cn/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/lang/zh-cn/images/copy.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/lang/zh-cn/images/localimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/lang/zh-cn/images/localimage.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/lang/zh-cn/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/lang/zh-cn/images/music.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/lang/zh-cn/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/lang/zh-cn/images/upload.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/themes/default/images/anchor.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/themes/default/images/arrow.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/themes/default/images/arrow_down.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/themes/default/images/arrow_up.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/button-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/themes/default/images/button-bg.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/cancelbutton.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/themes/default/images/cancelbutton.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/charts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/themes/default/images/charts.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/cursor_h.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/themes/default/images/cursor_h.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/cursor_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/themes/default/images/cursor_h.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/cursor_v.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/themes/default/images/cursor_v.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/cursor_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/themes/default/images/cursor_v.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/dialog-title-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/themes/default/images/dialog-title-bg.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/filescan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/themes/default/images/filescan.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/highlighted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/themes/default/images/highlighted.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/icons-all.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/themes/default/images/icons-all.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/themes/default/images/icons.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/themes/default/images/icons.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/loaderror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/themes/default/images/loaderror.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/themes/default/images/loading.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/lock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/themes/default/images/lock.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/neweditor-tab-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/themes/default/images/neweditor-tab-bg.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/themes/default/images/pagebreak.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/themes/default/images/scale.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/sortable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/themes/default/images/sortable.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/themes/default/images/spacer.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/sparator_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/themes/default/images/sparator_v.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/table-cell-align.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/themes/default/images/table-cell-align.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/tangram-colorpicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/themes/default/images/tangram-colorpicker.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/toolbar_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/themes/default/images/toolbar_bg.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/unhighlighted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/themes/default/images/unhighlighted.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/themes/default/images/upload.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/videologo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/themes/default/images/videologo.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/word.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/themes/default/images/word.gif -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/default/images/wordpaste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Public/Theme/assets/ueditor/themes/default/images/wordpaste.png -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/themes/iframe.css: -------------------------------------------------------------------------------- 1 | /*可以在这里添加你自己的css*/ 2 | -------------------------------------------------------------------------------- /Public/Theme/assets/ueditor/third-party/highcharts/modules/heatmap.js: -------------------------------------------------------------------------------- 1 | (function(b){var k=b.seriesTypes,l=b.each;k.heatmap=b.extendClass(k.map,{colorKey:"z",useMapGeometry:!1,pointArrayMap:["y","z"],translate:function(){var c=this,b=c.options,i=Number.MAX_VALUE,j=Number.MIN_VALUE;c.generatePoints();l(c.data,function(a){var e=a.x,f=a.y,d=a.z,g=(b.colsize||1)/2,h=(b.rowsize||1)/2;a.path=["M",e-g,f-h,"L",e+g,f-h,"L",e+g,f+h,"L",e-g,f+h,"Z"];a.shapeType="path";a.shapeArgs={d:c.translatePath(a.path)};typeof d==="number"&&(d>j?j=d:devent('beforeEvent', NULL); 14 | } 15 | 16 | public function after() { 17 | (new \Core\Plugin\Plugin())->event('afterEvent', NULL); 18 | } 19 | 20 | } -------------------------------------------------------------------------------- /Slice/Common/Option.php: -------------------------------------------------------------------------------- 1 | 'option', 21 | 'condition' => "option_range = 'system'" 22 | ]); 23 | $system = []; 24 | foreach($list as $value){ 25 | $system[$value['option_name']] = $value['value']; 26 | } 27 | 28 | 29 | $this->assign('resources', substr(md5($system['domain'].substr(md5(self::$config['USER_KEY']), 5, 10). $system['version'].$system['notice_way']), 4, 10)); 30 | $this->assign('system', $system); 31 | } 32 | 33 | 34 | public function after() { 35 | // TODO: Implement after() method. 36 | } 37 | 38 | 39 | } -------------------------------------------------------------------------------- /Slice/Team/AdminLimit.php: -------------------------------------------------------------------------------- 1 | session()->get('team')['user_id'] != 1){ 21 | $this->error('您没有权限进行本次操作.'); 22 | } 23 | } 24 | 25 | public function after() { 26 | 27 | } 28 | 29 | 30 | } -------------------------------------------------------------------------------- /Slice/Team/ApplicationInit.php: -------------------------------------------------------------------------------- 1 | isG('n', '请提交插件名称'); 22 | $pluginFunc = $this->isG('f', '请提交插件名称'); 23 | 24 | $splitPluginName = explode('-', $pluginName); 25 | 26 | $pluginNameSpace = "\Plugin\\{$splitPluginName[0]}\\{$splitPluginName[1]}"; 27 | 28 | $plugin = new $pluginNameSpace; 29 | 30 | //运行插件 31 | $plugin->{$pluginFunc}(); 32 | exit; 33 | } 34 | 35 | public function after() { 36 | 37 | } 38 | 39 | } -------------------------------------------------------------------------------- /Slice/Team/Auth.php: -------------------------------------------------------------------------------- 1 | error($auth); 22 | } 23 | } 24 | 25 | public function after() { 26 | } 27 | 28 | 29 | } -------------------------------------------------------------------------------- /Slice/Team/HandleForm/HandleNode.php: -------------------------------------------------------------------------------- 1 | error('请选择任务'); 24 | } 25 | $auth = \Model\Task::actionAuth($_REQUEST['task_id']); 26 | if($auth['check'] === false && $auth['action'] === false){ 27 | $this->error('您没有权限操作本任务'); 28 | } 29 | } 30 | 31 | public function after() { 32 | } 33 | 34 | 35 | } -------------------------------------------------------------------------------- /Slice/Team/HandleForm/HandleTaskSupplement.php: -------------------------------------------------------------------------------- 1 | error('请选择任务'); 24 | } 25 | $auth = \Model\Task::actionAuth($_REQUEST['task_id']); 26 | if($auth['check'] === false){ 27 | $this->error('您没有权限操作本任务'); 28 | } 29 | $_POST['user_id'] = (string) $this->session()->get('team')['user_id']; 30 | $_POST['createtime'] = (string) date('Y-m-d H:i'); 31 | } 32 | 33 | public function after() { 34 | } 35 | 36 | 37 | } -------------------------------------------------------------------------------- /Slice/Team/HandleForm/HandleUser.php: -------------------------------------------------------------------------------- 1 | isP('password', '请填写密码'); 22 | } 23 | 24 | if (empty($_POST['password'])) { 25 | $_POST['password'] = \Model\Content::findContent('user', $_POST['id'], 'user_id')['user_password']; 26 | } else { 27 | $_POST['password'] = (string)\Core\Func\CoreFunc::generatePwd($this->p('account').$this->p('password')); 28 | } 29 | 30 | 31 | } 32 | 33 | public function after() { 34 | } 35 | 36 | 37 | } -------------------------------------------------------------------------------- /Slice/Team/Login.php: -------------------------------------------------------------------------------- 1 | session()->get('team')['user_id'])){ 21 | $url = empty($_SERVER['REQUEST_URI']) ? '' : base64_encode($_SERVER['REQUEST_URI']); 22 | $this->jump($this->url('Team-Login-index', ['back_url' => $url])); 23 | } 24 | } 25 | 26 | public function after() { 27 | } 28 | 29 | 30 | } -------------------------------------------------------------------------------- /Slice/Team/Menu.php: -------------------------------------------------------------------------------- 1 | assign('title', \Model\Menu::getTitleWithMenu()['menu_name'] ?? null); 23 | $this->assign('menu', \Model\Menu::menu($this->session()->get('team')['user_group_id'])); 24 | } 25 | 26 | public function after() { 27 | } 28 | 29 | 30 | } -------------------------------------------------------------------------------- /Slice/Team/Notice.php: -------------------------------------------------------------------------------- 1 | db('notice')->field('count(notice_type) AS number, notice_type')->where('notice_user_id = :user_id AND notice_read = 0')->group('notice_type')->order('notice_type ASC')->select(['user_id' => $this->session()->get('team')['user_id']]); 24 | $this->assign('notice', $notice); 25 | } 26 | 27 | 28 | } -------------------------------------------------------------------------------- /Slice/Team/TaskMark.php: -------------------------------------------------------------------------------- 1 | 'priority', 'order' => 'priority_listsort ASC, priority_id DESC']) as $key => $value){ 20 | $priority[$value['priority_id']] = $value; 21 | } 22 | $this->assign('taskPriority', $priority); 23 | $this->assign('statusMark', \Model\Task::getTaskStatusMark()); 24 | } 25 | 26 | public function after() { 27 | } 28 | 29 | 30 | } -------------------------------------------------------------------------------- /Slice/Team/TaskSidebar.php: -------------------------------------------------------------------------------- 1 | assign('sidebarTool', [ 26 | 'search' => "{$taskSidebarPath}Task_search.php", 27 | 'aging' => "{$taskSidebarPath}Task_aging_gap_figure.php", 28 | 'project' => "{$taskSidebarPath}Task_project.php", 29 | 'user' => "{$taskSidebarPath}Task_user.php", 30 | 'bulletin' => "{$taskSidebarPath}Task_bulletin.php", 31 | ]); 32 | } 33 | 34 | 35 | } -------------------------------------------------------------------------------- /Slice/Team/UpdateField/UpdateTaskPriorityField.php: -------------------------------------------------------------------------------- 1 | '']; 26 | foreach(\Model\Content::listContent(['table' => 'priority', 'order' => 'priority_listsort ASC, priority_id DESC']) as $value){ 27 | $priority[$value['priority_name']] = $value['priority_id']; 28 | } 29 | 30 | $this->db('field')->where('field_name = :field_name')->update(['field_option' => json_encode($priority), 'noset' => ['field_name' => 'priority'] ]); 31 | } 32 | 33 | 34 | } -------------------------------------------------------------------------------- /Slice/Team/UpdateField/UpdateUserDepartmentField.php: -------------------------------------------------------------------------------- 1 | 'department', 'order' => 'department_listsort ASC, department_id DESC']); 26 | $department = ['请选择' => '']; 27 | foreach($departmentList as $value){ 28 | $department[$value['department_name']] = $value['department_id']; 29 | } 30 | 31 | $this->db('field')->where('field_name = :field_name')->update(['field_option' => json_encode($department), 'noset' => ['field_name' => 'department_id'] ]); 32 | } 33 | 34 | 35 | } -------------------------------------------------------------------------------- /Slice/Team/UpdateField/UpdateUserGroupField.php: -------------------------------------------------------------------------------- 1 | 'user_group']); 26 | $userGroup = []; 27 | foreach($userGroupList as $value){ 28 | $userGroup[$value['user_group_name']] = $value['user_group_id']; 29 | } 30 | $this->db('field')->where('field_name = :field_name')->update(['field_option' => json_encode($userGroup), 'noset' => ['field_name' => 'group_id'] ]); 31 | } 32 | 33 | 34 | } -------------------------------------------------------------------------------- /Slice/Team/UpdateField/UpdateUserProjectField.php: -------------------------------------------------------------------------------- 1 | 'project', 'order' => 'project_listsort ASC, project_id DESC']); 26 | $project = ['请选择' => '']; 27 | foreach($projectList as $value){ 28 | $project[$value['project_title']] = $value['project_id']; 29 | } 30 | 31 | $this->db('field')->where('field_name = :field_name')->update(['field_option' => json_encode($project), 'noset' => ['field_name' => 'project_id'] ]); 32 | } 33 | 34 | 35 | } -------------------------------------------------------------------------------- /Slice/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Slice/index.html -------------------------------------------------------------------------------- /Upgrade/action.ini: -------------------------------------------------------------------------------- 1 | ;版本号填写为升序 2 | [2.2.0] 3 | 4 | [2.2.1] 5 | 6 | [2.2.2] 7 | 8 | [2.2.3] 9 | 10 | [2.2.4] 11 | 12 | [2.3.0] 13 | sql[]= '2.3.0.sql'; 14 | delete[]= 'Upgrade/sql/2.3.0.sql'; 15 | 16 | [2.3.1] 17 | 18 | [2.3.2] 19 | delete[]= 'App/Team/DELETE/Attachment.php'; 20 | 21 | [2.3.3] 22 | 23 | [2.3.4] 24 | sql[]= '2.3.4.sql'; 25 | delete[]= 'Upgrade/sql/2.3.4.sql'; 26 | delete[]= 'Public/Theme/Team/Default/Login_layout.php'; 27 | delete[]= 'Public/Theme/Team/Default/error.php.php'; 28 | 29 | [2.3.5] 30 | 31 | [2.3.6] 32 | sql[]= '2.3.6.sql'; 33 | delete[]= 'Upgrade/sql/2.3.6.sql'; 34 | 35 | [2.3.7] -------------------------------------------------------------------------------- /Upgrade/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Upgrade/index.html -------------------------------------------------------------------------------- /Upgrade/sql/2.3.0.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO `pes_node` (`node_name`, `node_parent`, `node_verify`, `node_msg`, `node_method_type`, `node_value`, `node_check_value`, `node_controller`, `node_listsort`) VALUES ('复制用户组', '3', '1', '', 'POST', 'copy', 'TeamPOSTUser_groupcopy', '9', '9'); 2 | 3 | INSERT INTO `pes_node` ( `node_name`, `node_parent`, `node_verify`, `node_msg`, `node_method_type`, `node_value`, `node_check_value`, `node_controller`, `node_listsort`) VALUES 4 | ('删除任务', 1, 1, '', 'DELETE', 'action', 'TeamDELETETaskaction', 7, 2); -------------------------------------------------------------------------------- /Upgrade/sql/2.3.6.sql: -------------------------------------------------------------------------------- 1 | UPDATE `pes_option` SET `option_form_option` = '/?g=Team&m=Setting&a=emailTest' WHERE `option_name` = 'mail_test'; -------------------------------------------------------------------------------- /Upgrade/sql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/Upgrade/sql/index.html -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "require": { 3 | "voku/anti-xss": "^4.1.32", 4 | "duncan3dc/sessions": "^1.4", 5 | "kosinix/grafika": "^2.0" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /nodemon.json: -------------------------------------------------------------------------------- 1 | { 2 | "watch": ["Public/Theme/assets/css/admin.css", "Public/Theme/assets/css/app.css"], 3 | "ext": "css", 4 | "ignore": ["Public/Theme/assets/css/*.min.css"], 5 | "exec": "node compress-css.js" 6 | } -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "devDependencies": { 3 | "clean-css": "^4.2.3", 4 | "uglify-js": "^3.13.10" 5 | }, 6 | "dependencies": { 7 | "commander": "^8.0.0" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /plugin.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /vendor/autoload.php: -------------------------------------------------------------------------------- 1 | $vendorDir . '/symfony/polyfill-intl-normalizer/Resources/stubs/Normalizer.php', 10 | ); 11 | -------------------------------------------------------------------------------- /vendor/composer/autoload_files.php: -------------------------------------------------------------------------------- 1 | $vendorDir . '/symfony/polyfill-iconv/bootstrap.php', 10 | '8825ede83f2f289127722d4e842cf7e8' => $vendorDir . '/symfony/polyfill-intl-grapheme/bootstrap.php', 11 | 'e69f7f6ee287b969198c3c9d6777bd38' => $vendorDir . '/symfony/polyfill-intl-normalizer/bootstrap.php', 12 | '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => $vendorDir . '/symfony/polyfill-mbstring/bootstrap.php', 13 | '25072dd6e2470089de65ae7bf11d3109' => $vendorDir . '/symfony/polyfill-php72/bootstrap.php', 14 | 'b46ad4fe52f4d1899a2951c7e6ea56b0' => $vendorDir . '/voku/portable-utf8/bootstrap.php', 15 | ); 16 | -------------------------------------------------------------------------------- /vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- 1 | array($vendorDir . '/voku/anti-xss/src/voku/helper'), 10 | 'voku\\' => array($vendorDir . '/voku/portable-ascii/src/voku', $vendorDir . '/voku/portable-utf8/src/voku'), 11 | 'duncan3dc\\Sessions\\' => array($vendorDir . '/duncan3dc/sessions/src'), 12 | 'Symfony\\Polyfill\\Php72\\' => array($vendorDir . '/symfony/polyfill-php72'), 13 | 'Symfony\\Polyfill\\Mbstring\\' => array($vendorDir . '/symfony/polyfill-mbstring'), 14 | 'Symfony\\Polyfill\\Intl\\Normalizer\\' => array($vendorDir . '/symfony/polyfill-intl-normalizer'), 15 | 'Symfony\\Polyfill\\Intl\\Grapheme\\' => array($vendorDir . '/symfony/polyfill-intl-grapheme'), 16 | 'Symfony\\Polyfill\\Iconv\\' => array($vendorDir . '/symfony/polyfill-iconv'), 17 | 'Grafika\\' => array($vendorDir . '/kosinix/grafika/src/Grafika'), 18 | ); 19 | -------------------------------------------------------------------------------- /vendor/duncan3dc/sessions/.coveralls.yml: -------------------------------------------------------------------------------- 1 | service_name: travis-ci 2 | coverage_clover: clover.xml 3 | json_path: coveralls.json 4 | -------------------------------------------------------------------------------- /vendor/duncan3dc/sessions/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "duncan3dc/sessions", 3 | "type": "library", 4 | "description": "A non-blocking session manager", 5 | "keywords": ["session", "non-blocking"], 6 | "homepage": "https://github.com/duncan3dc/sessions", 7 | "license": "Apache-2.0", 8 | "authors": [{ 9 | "name": "Craig Duncan", 10 | "email": "git@duncanc.co.uk", 11 | "homepage": "https://github.com/duncan3dc", 12 | "role": "Developer" 13 | }], 14 | "require": { 15 | "ext-session": "*", 16 | "php": "^5.6|^7.0" 17 | }, 18 | "require-dev": { 19 | "guzzlehttp/guzzle": "^6.3", 20 | "mockery/mockery": "^1.0", 21 | "duncan3dc/object-intruder": "^0.3.0", 22 | "php-coveralls/php-coveralls": "^2.0", 23 | "phpunit/phpunit": "^5.7.11" 24 | }, 25 | "autoload": { 26 | "psr-4": {"duncan3dc\\Sessions\\": "src/"} 27 | }, 28 | "autoload-dev": { 29 | "psr-4": {"duncan3dc\\SessionsTest\\": "tests/"} 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /vendor/kosinix/grafika/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "kosinix/grafika", 3 | "description": "An image manipulation library for PHP.", 4 | "keywords": ["grafika"], 5 | "homepage": "http://kosinix.github.io/grafika", 6 | "type": "library", 7 | "license": [ 8 | "MIT", 9 | "GPL-2.0+" 10 | ], 11 | "authors": [ 12 | { 13 | "name": "Nico Amarilla", 14 | "homepage": "https://www.kosinix.com" 15 | } 16 | ], 17 | "require": { 18 | "php": ">=5.3" 19 | }, 20 | "autoload": { 21 | "psr-4": { 22 | "Grafika\\": "src/Grafika" 23 | } 24 | } 25 | } -------------------------------------------------------------------------------- /vendor/kosinix/grafika/fonts/LiberationSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyphp/PESCMS-TEAM/8e3c678ecc0a02c6aaa58c3e8e997befc73ae280/vendor/kosinix/grafika/fonts/LiberationSans-Regular.ttf -------------------------------------------------------------------------------- /vendor/kosinix/grafika/license.txt: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | Copyright (c) 2016 Nico G. Amarilla 3 | 4 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 5 | 6 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 7 | 8 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- /vendor/kosinix/grafika/src/Grafika/DrawingObjectInterface.php: -------------------------------------------------------------------------------- 1 | point1; 24 | list( $x2, $y2 ) = $this->point2; 25 | list( $r, $g, $b ) = $this->color->getRgb(); 26 | $color = imagecolorallocate( $image->getCore(), $r, $g, $b ); 27 | if ( function_exists( 'imageantialias' ) ) { // Not available on some if PHP is not precompiled with it even if GD is enabled 28 | imageantialias( $image->getCore(), true ); 29 | } 30 | imageline( $image->getCore(), $x1, $y1, $x2, $y2, $color ); 31 | 32 | return $image; 33 | } 34 | 35 | 36 | } -------------------------------------------------------------------------------- /vendor/kosinix/grafika/src/Grafika/Gd/Filter/Blur.php: -------------------------------------------------------------------------------- 1 | amount = (int) $amount; 26 | } 27 | 28 | /** 29 | * @param Image $image 30 | * 31 | * @return Image 32 | */ 33 | public function apply($image) 34 | { 35 | for ($i=0; $i < $this->amount; $i++) { 36 | imagefilter($image->getCore(), IMG_FILTER_GAUSSIAN_BLUR); 37 | } 38 | return $image; 39 | } 40 | } -------------------------------------------------------------------------------- /vendor/kosinix/grafika/src/Grafika/Gd/Filter/Brightness.php: -------------------------------------------------------------------------------- 1 | = 0 >= 100 19 | 20 | /** 21 | * Brightness constructor. 22 | * @param int $amount The amount of brightness to apply. >= -100 and <= -1 to darken. 0 for no change. >= 1 and <= 100 to brighten. 23 | */ 24 | public function __construct($amount) 25 | { 26 | $this->amount = (int) $amount; 27 | } 28 | 29 | /** 30 | * @param Image $image 31 | * 32 | * @return Image 33 | */ 34 | public function apply( $image ) { 35 | imagefilter($image->getCore(), IMG_FILTER_BRIGHTNESS, ($this->amount * 2.55)); 36 | return $image; 37 | } 38 | 39 | } -------------------------------------------------------------------------------- /vendor/kosinix/grafika/src/Grafika/Gd/Filter/Contrast.php: -------------------------------------------------------------------------------- 1 | = 0 >= 100 17 | 18 | /** 19 | * Contrast constructor. 20 | * @param int $amount The amount of contrast to apply. >= -100 and <= -1 to reduce. 0 for no change. >= 1 and <= 100 to increase. 21 | */ 22 | public function __construct($amount) 23 | { 24 | $this->amount = (int) $amount; 25 | } 26 | 27 | /** 28 | * @param Image $image 29 | * 30 | * @return Image 31 | */ 32 | public function apply( $image ) { 33 | 34 | imagefilter($image->getCore(), IMG_FILTER_CONTRAST, ($this->amount * -1)); 35 | return $image; 36 | } 37 | 38 | } -------------------------------------------------------------------------------- /vendor/kosinix/grafika/src/Grafika/Gd/Filter/Gamma.php: -------------------------------------------------------------------------------- 1 | = 1.0 17 | 18 | /** 19 | * Gamma constructor. 20 | * @param float $amount The amount of gamma correction to apply. >= 1.0 21 | */ 22 | public function __construct($amount) 23 | { 24 | $this->amount = (float) $amount; 25 | } 26 | 27 | /** 28 | * @param Image $image 29 | * 30 | * @return Image 31 | */ 32 | public function apply( $image ) { 33 | 34 | imagegammacorrect($image->getCore(), 1, $this->amount); 35 | return $image; 36 | } 37 | 38 | } -------------------------------------------------------------------------------- /vendor/kosinix/grafika/src/Grafika/Gd/Filter/Grayscale.php: -------------------------------------------------------------------------------- 1 | getCore(), IMG_FILTER_GRAYSCALE); 20 | return $image; 21 | } 22 | 23 | } -------------------------------------------------------------------------------- /vendor/kosinix/grafika/src/Grafika/Gd/Filter/Invert.php: -------------------------------------------------------------------------------- 1 | getCore(), IMG_FILTER_NEGATE); 21 | return $image; 22 | } 23 | 24 | } -------------------------------------------------------------------------------- /vendor/kosinix/grafika/src/Grafika/Gd/Filter/Pixelate.php: -------------------------------------------------------------------------------- 1 | = 1 15 | */ 16 | protected $amount; 17 | 18 | /** 19 | * Pixelate constructor. 20 | * @param int $amount The size of pixelation. >= 1 21 | */ 22 | public function __construct($amount) 23 | { 24 | $this->amount = (int) $amount; 25 | } 26 | 27 | /** 28 | * @param Image $image 29 | * 30 | * @return Image 31 | */ 32 | public function apply( $image ) { 33 | 34 | imagefilter($image->getCore(), IMG_FILTER_PIXELATE, $this->amount, true); 35 | return $image; 36 | } 37 | 38 | } -------------------------------------------------------------------------------- /vendor/kosinix/grafika/src/Grafika/ImageType.php: -------------------------------------------------------------------------------- 1 | getColor()->getHexString()); 24 | 25 | $draw = new \ImagickDraw(); 26 | 27 | $draw->setStrokeColor($strokeColor); 28 | 29 | $draw->setStrokeWidth($this->thickness); 30 | 31 | list($x1, $y1) = $this->point1; 32 | list($x2, $y2) = $this->point2; 33 | $draw->line($x1, $y1, $x2, $y2); 34 | 35 | $image->getCore()->drawImage($draw); 36 | 37 | return $image; 38 | } 39 | 40 | 41 | } -------------------------------------------------------------------------------- /vendor/kosinix/grafika/src/Grafika/Imagick/Filter/Blur.php: -------------------------------------------------------------------------------- 1 | amount = (int) $amount; 25 | } 26 | 27 | /** 28 | * @param Image $image 29 | * 30 | * @return Image 31 | */ 32 | public function apply( $image ) { 33 | $image->getCore()->blurImage(1 * $this->amount, 0.5 * $this->amount); 34 | return $image; 35 | } 36 | 37 | } -------------------------------------------------------------------------------- /vendor/kosinix/grafika/src/Grafika/Imagick/Filter/Brightness.php: -------------------------------------------------------------------------------- 1 | = 0 >= 100 19 | 20 | /** 21 | * Brightness constructor. 22 | * @param int $amount The amount of brightness to apply. >= -100 and <= -1 to darken. 0 for no change. >= 1 and <= 100 to brighten. 23 | */ 24 | public function __construct($amount) 25 | { 26 | $this->amount = (int) $amount; 27 | } 28 | 29 | /** 30 | * @param Image $image 31 | * 32 | * @return Image 33 | */ 34 | public function apply( $image ) { 35 | $image->getCore()->modulateImage(100 + $this->amount, 100, 100); 36 | return $image; 37 | } 38 | 39 | } -------------------------------------------------------------------------------- /vendor/kosinix/grafika/src/Grafika/Imagick/Filter/Contrast.php: -------------------------------------------------------------------------------- 1 | = 0 >= 100 17 | 18 | /** 19 | * Contrast constructor. 20 | * @param int $amount The amount of contrast to apply. >= -100 and <= -1 to reduce. 0 for no change. >= 1 and <= 100 to increase. 21 | */ 22 | public function __construct($amount) 23 | { 24 | $this->amount = (int) $amount; 25 | } 26 | 27 | /** 28 | * @param Image $image 29 | * 30 | * @return Image 31 | */ 32 | public function apply( $image ) { 33 | 34 | $image->getCore()->sigmoidalContrastImage($this->amount > 0, $this->amount / 4, 0); 35 | return $image; 36 | } 37 | 38 | } -------------------------------------------------------------------------------- /vendor/kosinix/grafika/src/Grafika/Imagick/Filter/Gamma.php: -------------------------------------------------------------------------------- 1 | = 1.0 17 | 18 | /** 19 | * Gamma constructor. 20 | * @param float $amount The amount of gamma correction to apply. >= 1.0 21 | */ 22 | public function __construct($amount) 23 | { 24 | $this->amount = (float) $amount; 25 | } 26 | 27 | /** 28 | * @param Image $image 29 | * 30 | * @return Image 31 | */ 32 | public function apply( $image ) { 33 | 34 | $image->getCore()->gammaImage($this->amount); 35 | return $image; 36 | } 37 | 38 | } -------------------------------------------------------------------------------- /vendor/kosinix/grafika/src/Grafika/Imagick/Filter/Grayscale.php: -------------------------------------------------------------------------------- 1 | getCore()->modulateImage(100, 0, 100); 20 | return $image; 21 | } 22 | 23 | } -------------------------------------------------------------------------------- /vendor/kosinix/grafika/src/Grafika/Imagick/Filter/Invert.php: -------------------------------------------------------------------------------- 1 | getCore()->negateImage(false); 21 | return $image; 22 | } 23 | 24 | } -------------------------------------------------------------------------------- /vendor/kosinix/grafika/src/Grafika/Imagick/Filter/Pixelate.php: -------------------------------------------------------------------------------- 1 | = 1 15 | */ 16 | protected $amount; 17 | 18 | /** 19 | * Pixelate constructor. 20 | * @param int $amount The size of pixelation. >= 1 21 | */ 22 | public function __construct($amount) 23 | { 24 | $this->amount = (int) $amount; 25 | } 26 | 27 | /** 28 | * @param Image $image 29 | * 30 | * @return Image 31 | */ 32 | public function apply( $image ) { 33 | 34 | $size = $this->amount; 35 | $width = $image->getWidth(); 36 | $height = $image->getHeight(); 37 | $image->getCore()->scaleImage(max(1, ($width / $size)), max(1, ($height / $size))); 38 | $image->getCore()->scaleImage($width, $height); 39 | return $image; 40 | } 41 | 42 | } -------------------------------------------------------------------------------- /vendor/kosinix/grafika/src/Grafika/Imagick/Filter/Sharpen.php: -------------------------------------------------------------------------------- 1 | = 1 to <= 100 21 | */ 22 | public function __construct($amount) 23 | { 24 | $this->amount = (int) $amount; 25 | } 26 | 27 | /** 28 | * @param Image $image 29 | * 30 | * @return Image 31 | */ 32 | public function apply( $image ) { 33 | $image->getCore()->unsharpMaskImage(1, 1, $this->amount / 6.25, 0); 34 | return $image; 35 | } 36 | 37 | } -------------------------------------------------------------------------------- /vendor/kosinix/grafika/src/autoloader.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | use Symfony\Polyfill\Intl\Normalizer as p; 13 | 14 | if (!function_exists('normalizer_is_normalized')) { 15 | function normalizer_is_normalized($input, $form = p\Normalizer::NFC) { return p\Normalizer::isNormalized($input, $form); } 16 | } 17 | if (!function_exists('normalizer_normalize')) { 18 | function normalizer_normalize($input, $form = p\Normalizer::NFC) { return p\Normalizer::normalize($input, $form); } 19 | } 20 | -------------------------------------------------------------------------------- /vendor/symfony/polyfill-mbstring/README.md: -------------------------------------------------------------------------------- 1 | Symfony Polyfill / Mbstring 2 | =========================== 3 | 4 | This component provides a partial, native PHP implementation for the 5 | [Mbstring](https://php.net/mbstring) extension. 6 | 7 | More information can be found in the 8 | [main Polyfill README](https://github.com/symfony/polyfill/blob/master/README.md). 9 | 10 | License 11 | ======= 12 | 13 | This library is released under the [MIT license](LICENSE). 14 | -------------------------------------------------------------------------------- /vendor/symfony/polyfill-mbstring/Resources/mb_convert_variables.php8: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | use Symfony\Polyfill\Mbstring as p; 13 | 14 | if (!function_exists('mb_convert_variables')) { 15 | /** 16 | * Convert character code in variable(s) 17 | */ 18 | function mb_convert_variables($to_encoding, $from_encoding, &$var, &...$vars) 19 | { 20 | $vars = [&$var, ...$vars]; 21 | 22 | $ok = true; 23 | array_walk_recursive($vars, function (&$v) use (&$ok, $to_encoding, $from_encoding) { 24 | if (false === $v = p\Mbstring::mb_convert_encoding($v, $to_encoding, $from_encoding)) { 25 | $ok = false; 26 | } 27 | }); 28 | 29 | return $ok ? $from_encoding : false; 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /vendor/symfony/polyfill-php72/README.md: -------------------------------------------------------------------------------- 1 | Symfony Polyfill / Php72 2 | ======================== 3 | 4 | This component provides functions added to PHP 7.2 core: 5 | 6 | - [`spl_object_id`](https://php.net/spl_object_id) 7 | - [`stream_isatty`](https://php.net/stream_isatty) 8 | 9 | On Windows only: 10 | 11 | - [`sapi_windows_vt100_support`](https://php.net/sapi_windows_vt100_support) 12 | 13 | Moved to core since 7.2 (was in the optional XML extension earlier): 14 | 15 | - [`utf8_encode`](https://php.net/utf8_encode) 16 | - [`utf8_decode`](https://php.net/utf8_decode) 17 | 18 | Also, it provides constants added to PHP 7.2: 19 | - [`PHP_FLOAT_*`](https://php.net/reserved.constants#constant.php-float-dig) 20 | - [`PHP_OS_FAMILY`](https://php.net/reserved.constants#constant.php-os-family) 21 | 22 | More information can be found in the 23 | [main Polyfill README](https://github.com/symfony/polyfill/blob/master/README.md). 24 | 25 | License 26 | ======= 27 | 28 | This library is released under the [MIT license](LICENSE). 29 | -------------------------------------------------------------------------------- /vendor/symfony/polyfill-php72/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "symfony/polyfill-php72", 3 | "type": "library", 4 | "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions", 5 | "keywords": ["polyfill", "shim", "compatibility", "portable"], 6 | "homepage": "https://symfony.com", 7 | "license": "MIT", 8 | "authors": [ 9 | { 10 | "name": "Nicolas Grekas", 11 | "email": "p@tchwork.com" 12 | }, 13 | { 14 | "name": "Symfony Community", 15 | "homepage": "https://symfony.com/contributors" 16 | } 17 | ], 18 | "require": { 19 | "php": ">=5.3.3" 20 | }, 21 | "autoload": { 22 | "psr-4": { "Symfony\\Polyfill\\Php72\\": "" }, 23 | "files": [ "bootstrap.php" ] 24 | }, 25 | "minimum-stability": "dev", 26 | "extra": { 27 | "branch-alias": { 28 | "dev-main": "1.19-dev" 29 | }, 30 | "thanks": { 31 | "name": "symfony/polyfill", 32 | "url": "https://github.com/symfony/polyfill" 33 | } 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /vendor/voku/anti-xss/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "voku/anti-xss", 3 | "description": "anti xss-library", 4 | "type": "library", 5 | "keywords": [ 6 | "anti-xss", 7 | "clean", 8 | "security", 9 | "xss" 10 | ], 11 | "homepage": "https://github.com/voku/anti-xss", 12 | "license": "MIT", 13 | "authors": [ 14 | { 15 | "name": "EllisLab Dev Team", 16 | "homepage": "http://ellislab.com/" 17 | }, 18 | { 19 | "name": "Lars Moelleken", 20 | "email": "lars@moelleken.org", 21 | "homepage": "https://www.moelleken.org/" 22 | } 23 | ], 24 | "require": { 25 | "php": ">=7.0.0", 26 | "voku/portable-utf8": "~6.0.2" 27 | }, 28 | "require-dev": { 29 | "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0" 30 | }, 31 | "autoload": { 32 | "psr-4": { 33 | "voku\\helper\\": "src/voku/helper/" 34 | } 35 | }, 36 | "extra": { 37 | "branch-alias": { 38 | "dev-master": "4.1.x-dev" 39 | } 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /vendor/voku/portable-ascii/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "voku/portable-ascii", 3 | "description": "Portable ASCII library - performance optimized (ascii) string functions for php.", 4 | "type": "library", 5 | "keywords": [ 6 | "clean", 7 | "php", 8 | "ascii" 9 | ], 10 | "homepage": "https://github.com/voku/portable-ascii", 11 | "license": "MIT", 12 | "authors": [ 13 | { 14 | "name": "Lars Moelleken", 15 | "homepage": "http://www.moelleken.org/" 16 | } 17 | ], 18 | "require": { 19 | "php": ">=7.0.0" 20 | }, 21 | "require-dev": { 22 | "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0" 23 | }, 24 | "suggest": { 25 | "ext-intl": "Use Intl for transliterator_transliterate() support" 26 | }, 27 | "autoload": { 28 | "psr-4": { 29 | "voku\\": "src/voku/" 30 | } 31 | }, 32 | "autoload-dev": { 33 | "psr-4": { 34 | "voku\\tests\\": "tests/" 35 | } 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /vendor/voku/portable-ascii/src/voku/helper/data/x029.php: -------------------------------------------------------------------------------- 1 | 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 80 => 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', 112 => 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 230 => 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', ]; 3 | -------------------------------------------------------------------------------- /vendor/voku/portable-utf8/SECURITY.md: -------------------------------------------------------------------------------- 1 | # Security Policy 2 | 3 | ## Supported Versions 4 | 5 | Please use the latest release you can find in the CHANGELOG.md. 6 | 7 | ## Reporting a Vulnerability 8 | 9 | Please disclose any vulnerabilities found responsibly - report any security problems found to the maintainers privately. 10 | For example you can write me a email: lars@moelleken.org 11 | 12 | ## Known vulnerabilities 13 | 14 | Portable UTF-8 versions prior to 5.4.26 (released 2019-11-05) have an open redirect vulnerability. The `Bootup::filterRequestUri()` method used a unsecure `header('Location ...` implentation. And because it's most secure to not use this method at all, I decided to disable the function by default. 15 | -------------------------------------------------------------------------------- /vendor/voku/portable-utf8/SUMMARY.md: -------------------------------------------------------------------------------- 1 | 2 | # Table of content 3 | 4 | * [API Reference](README.md#class-methods) 5 | -------------------------------------------------------------------------------- /vendor/voku/portable-utf8/bootstrap.php: -------------------------------------------------------------------------------- 1 |