├── .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 |
正在拉取用户协议...
3 |