实例介绍
CKFinder是一个强大而易于使用的Web浏览器的Ajax文件管理器。 其简单的界面使得它直观,快速学习的各类用户,从高级人才到互联网初学者。 特点 文件夹树导航 :用户直观的。质量 缩略图 ,使很快找到的东西。多...
【实例截图】
【核心代码】
.
├── PHP开源文档管理系统ckfinder_ckfinder_php_2.0.1.zip
└── ckfinder
├── _samples
│ ├── ckeditor.html
│ ├── fckeditor.html
│ ├── index.html
│ ├── php
│ │ ├── ckeditor.php
│ │ ├── fckeditor.php
│ │ ├── popup.php
│ │ ├── popups.php
│ │ └── standalone.php
│ ├── popup.html
│ ├── popups.html
│ ├── public_api.html
│ ├── sample.css
│ ├── standalone.html
│ └── standalone_v1.html
├── changelog.txt
├── ckfinder.html
├── ckfinder.js
├── ckfinder.php
├── ckfinder_v1.js
├── config.js
├── config.php
├── core
│ ├── ckfinder_php4.php
│ ├── ckfinder_php5.php
│ └── connector
│ └── php
│ ├── connector.php
│ ├── constants.php
│ ├── lang
│ │ ├── cs.php
│ │ ├── da.php
│ │ ├── de.php
│ │ ├── el.php
│ │ ├── en.php
│ │ ├── es-mx.php
│ │ ├── es.php
│ │ ├── fr.php
│ │ ├── he.php
│ │ ├── hu.php
│ │ ├── it.php
│ │ ├── ja.php
│ │ ├── lv.php
│ │ ├── nb.php
│ │ ├── nl.php
│ │ ├── nn.php
│ │ ├── no.php
│ │ ├── pl.php
│ │ ├── pt-br.php
│ │ ├── ru.php
│ │ ├── sk.php
│ │ ├── sl.php
│ │ ├── sv.php
│ │ ├── zh-cn.php
│ │ └── zh-tw.php
│ ├── php4
│ │ ├── CommandHandler
│ │ │ ├── CommandHandlerBase.php
│ │ │ ├── CopyFiles.php
│ │ │ ├── CreateFolder.php
│ │ │ ├── DeleteFile.php
│ │ │ ├── DeleteFolder.php
│ │ │ ├── DownloadFile.php
│ │ │ ├── FileUpload.php
│ │ │ ├── GetFiles.php
│ │ │ ├── GetFolders.php
│ │ │ ├── Init.php
│ │ │ ├── MoveFiles.php
│ │ │ ├── QuickUpload.php
│ │ │ ├── RenameFile.php
│ │ │ ├── RenameFolder.php
│ │ │ ├── Thumbnail.php
│ │ │ └── XmlCommandHandlerBase.php
│ │ ├── Core
│ │ │ ├── AccessControlConfig.php
│ │ │ ├── Config.php
│ │ │ ├── Connector.php
│ │ │ ├── Factory.php
│ │ │ ├── FolderHandler.php
│ │ │ ├── Hooks.php
│ │ │ ├── ImagesConfig.php
│ │ │ ├── Registry.php
│ │ │ ├── ResourceTypeConfig.php
│ │ │ ├── ThumbnailsConfig.php
│ │ │ └── Xml.php
│ │ ├── ErrorHandler
│ │ │ ├── Base.php
│ │ │ ├── FileUpload.php
│ │ │ ├── Http.php
│ │ │ └── QuickUpload.php
│ │ └── Utils
│ │ ├── FileSystem.php
│ │ ├── Misc.php
│ │ ├── Security.php
│ │ └── XmlNode.php
│ └── php5
│ ├── CommandHandler
│ │ ├── CommandHandlerBase.php
│ │ ├── CopyFiles.php
│ │ ├── CreateFolder.php
│ │ ├── DeleteFile.php
│ │ ├── DeleteFolder.php
│ │ ├── DownloadFile.php
│ │ ├── FileUpload.php
│ │ ├── GetFiles.php
│ │ ├── GetFolders.php
│ │ ├── Init.php
│ │ ├── MoveFiles.php
│ │ ├── QuickUpload.php
│ │ ├── RenameFile.php
│ │ ├── RenameFolder.php
│ │ ├── Thumbnail.php
│ │ └── XmlCommandHandlerBase.php
│ ├── Core
│ │ ├── AccessControlConfig.php
│ │ ├── Config.php
│ │ ├── Connector.php
│ │ ├── Factory.php
│ │ ├── FolderHandler.php
│ │ ├── Hooks.php
│ │ ├── ImagesConfig.php
│ │ ├── Registry.php
│ │ ├── ResourceTypeConfig.php
│ │ ├── ThumbnailsConfig.php
│ │ └── Xml.php
│ ├── ErrorHandler
│ │ ├── Base.php
│ │ ├── FileUpload.php
│ │ ├── Http.php
│ │ └── QuickUpload.php
│ └── Utils
│ ├── FileSystem.php
│ ├── Misc.php
│ ├── Security.php
│ └── XmlNode.php
├── help
│ ├── en
│ │ ├── files
│ │ │ ├── 001.html
│ │ │ ├── 002.html
│ │ │ ├── 003.html
│ │ │ ├── 004.html
│ │ │ ├── 005.html
│ │ │ ├── 006.html
│ │ │ ├── 007.html
│ │ │ ├── 008.html
│ │ │ ├── 009.html
│ │ │ ├── 010.html
│ │ │ ├── 011.html
│ │ │ ├── 012.html
│ │ │ ├── 013.html
│ │ │ ├── header.html
│ │ │ ├── images
│ │ │ │ ├── 001.gif
│ │ │ │ ├── 002.gif
│ │ │ │ ├── 003.gif
│ │ │ │ ├── 004.gif
│ │ │ │ ├── 005.gif
│ │ │ │ ├── 006.gif
│ │ │ │ ├── 007.gif
│ │ │ │ ├── 008.gif
│ │ │ │ ├── 009.gif
│ │ │ │ ├── 010.gif
│ │ │ │ ├── 011.gif
│ │ │ │ ├── 012.gif
│ │ │ │ ├── 013.gif
│ │ │ │ ├── 014.gif
│ │ │ │ ├── 015.gif
│ │ │ │ ├── 016.gif
│ │ │ │ ├── 017.gif
│ │ │ │ ├── 018.gif
│ │ │ │ ├── 019.gif
│ │ │ │ └── 020.gif
│ │ │ ├── license.html
│ │ │ ├── other
│ │ │ │ ├── help.css
│ │ │ │ └── help.js
│ │ │ ├── suggestions.html
│ │ │ └── toc.html
│ │ └── index.html
│ ├── es
│ │ ├── files
│ │ │ ├── 001.html
│ │ │ ├── 002.html
│ │ │ ├── 003.html
│ │ │ ├── 004.html
│ │ │ ├── 005.html
│ │ │ ├── 006.html
│ │ │ ├── 007.html
│ │ │ ├── 008.html
│ │ │ ├── 009.html
│ │ │ ├── 010.html
│ │ │ ├── 011.html
│ │ │ ├── 012.html
│ │ │ ├── 013.html
│ │ │ ├── header.html
│ │ │ ├── images
│ │ │ │ ├── 001.png
│ │ │ │ ├── 002.gif
│ │ │ │ ├── 003.gif
│ │ │ │ ├── 004.png
│ │ │ │ ├── 005.png
│ │ │ │ ├── 006.png
│ │ │ │ ├── 007.png
│ │ │ │ ├── 008.png
│ │ │ │ ├── 009.png
│ │ │ │ ├── 010.gif
│ │ │ │ ├── 011.png
│ │ │ │ ├── 012.png
│ │ │ │ ├── 013.png
│ │ │ │ ├── 014.gif
│ │ │ │ ├── 015.gif
│ │ │ │ ├── 016.gif
│ │ │ │ ├── 017.gif
│ │ │ │ ├── 018.png
│ │ │ │ ├── 019.png
│ │ │ │ └── 020.png
│ │ │ ├── license.html
│ │ │ ├── other
│ │ │ │ ├── help.css
│ │ │ │ └── help.js
│ │ │ ├── suggestions.html
│ │ │ └── toc.html
│ │ └── index.html
│ ├── es-mx
│ │ ├── files
│ │ │ ├── 001.html
│ │ │ ├── 002.html
│ │ │ ├── 003.html
│ │ │ ├── 004.html
│ │ │ ├── 005.html
│ │ │ ├── 006.html
│ │ │ ├── 007.html
│ │ │ ├── 008.html
│ │ │ ├── 009.html
│ │ │ ├── 010.html
│ │ │ ├── 011.html
│ │ │ ├── 012.html
│ │ │ ├── 013.html
│ │ │ ├── header.html
│ │ │ ├── images
│ │ │ │ ├── 001.png
│ │ │ │ ├── 002.gif
│ │ │ │ ├── 003.gif
│ │ │ │ ├── 004.png
│ │ │ │ ├── 005.png
│ │ │ │ ├── 006.png
│ │ │ │ ├── 007.png
│ │ │ │ ├── 008.png
│ │ │ │ ├── 009.png
│ │ │ │ ├── 010.gif
│ │ │ │ ├── 011.png
│ │ │ │ ├── 012.png
│ │ │ │ ├── 013.png
│ │ │ │ ├── 014.gif
│ │ │ │ ├── 015.gif
│ │ │ │ ├── 016.gif
│ │ │ │ ├── 017.gif
│ │ │ │ ├── 018.png
│ │ │ │ ├── 019.png
│ │ │ │ └── 020.png
│ │ │ ├── license.html
│ │ │ ├── other
│ │ │ │ ├── help.css
│ │ │ │ └── help.js
│ │ │ ├── suggestions.html
│ │ │ └── toc.html
│ │ └── index.html
│ └── pl
│ ├── files
│ │ ├── 001.html
│ │ ├── 002.html
│ │ ├── 003.html
│ │ ├── 004.html
│ │ ├── 005.html
│ │ ├── 006.html
│ │ ├── 007.html
│ │ ├── 008.html
│ │ ├── 009.html
│ │ ├── 010.html
│ │ ├── 011.html
│ │ ├── 012.html
│ │ ├── 013.html
│ │ ├── header.html
│ │ ├── images
│ │ │ ├── 001.jpg
│ │ │ ├── 002.gif
│ │ │ ├── 003.gif
│ │ │ ├── 004.png
│ │ │ ├── 005.png
│ │ │ ├── 006.png
│ │ │ ├── 007.jpg
│ │ │ ├── 008.png
│ │ │ ├── 009.png
│ │ │ ├── 010.png
│ │ │ ├── 011.png
│ │ │ ├── 012.png
│ │ │ ├── 013.png
│ │ │ ├── 014.gif
│ │ │ ├── 015.gif
│ │ │ ├── 016.gif
│ │ │ ├── 017.gif
│ │ │ ├── 018.gif
│ │ │ ├── 019.png
│ │ │ └── 020.png
│ │ ├── license.html
│ │ ├── other
│ │ │ ├── help.css
│ │ │ └── help.js
│ │ ├── suggestions.html
│ │ └── toc.html
│ └── index.html
├── install.txt
├── lang
│ ├── _translationstatus.txt
│ ├── cs.js
│ ├── da.js
│ ├── de.js
│ ├── el.js
│ ├── en.js
│ ├── es-mx.js
│ ├── es.js
│ ├── fr.js
│ ├── he.js
│ ├── hu.js
│ ├── it.js
│ ├── ja.js
│ ├── lv.js
│ ├── nb.js
│ ├── nl.js
│ ├── nn.js
│ ├── no.js
│ ├── pl.js
│ ├── pt-br.js
│ ├── ru.js
│ ├── sk.js
│ ├── sl.js
│ ├── sv.js
│ ├── zh-cn.js
│ └── zh-tw.js
├── license.txt
├── plugins
│ ├── dummy
│ │ ├── lang
│ │ │ ├── en.js
│ │ │ └── pl.js
│ │ └── plugin.js
│ ├── fileeditor
│ │ ├── codemirror
│ │ │ ├── LICENSE
│ │ │ ├── contrib
│ │ │ │ └── php
│ │ │ │ ├── LICENSE
│ │ │ │ ├── css
│ │ │ │ │ └── phpcolors.css
│ │ │ │ ├── index.html
│ │ │ │ └── js
│ │ │ │ ├── parsephp.js
│ │ │ │ ├── parsephphtmlmixed.js
│ │ │ │ └── tokenizephp.js
│ │ │ ├── css
│ │ │ │ ├── csscolors.css
│ │ │ │ ├── docs.css
│ │ │ │ ├── jscolors.css
│ │ │ │ ├── people.jpg
│ │ │ │ ├── sparqlcolors.css
│ │ │ │ └── xmlcolors.css
│ │ │ └── js
│ │ │ ├── codemirror.js
│ │ │ ├── editor.js
│ │ │ ├── highlight.js
│ │ │ ├── mirrorframe.js
│ │ │ ├── parsecss.js
│ │ │ ├── parsedummy.js
│ │ │ ├── parsehtmlmixed.js
│ │ │ ├── parsejavascript.js
│ │ │ ├── parsesparql.js
│ │ │ ├── parsexml.js
│ │ │ ├── select.js
│ │ │ ├── stringstream.js
│ │ │ ├── tokenize.js
│ │ │ ├── tokenizejavascript.js
│ │ │ ├── undo.js
│ │ │ └── util.js
│ │ ├── plugin.js
│ │ └── plugin.php
│ ├── imageresize
│ │ ├── images
│ │ │ └── mini.gif
│ │ ├── plugin.js
│ │ └── plugin.php
│ └── watermark
│ ├── logo.gif
│ └── plugin.php
├── skins
│ ├── kama
│ │ ├── app.css
│ │ ├── host.css
│ │ ├── icons.png
│ │ ├── images
│ │ │ ├── ckffolder.gif
│ │ │ ├── ckffolderopened.gif
│ │ │ ├── ckfminus.gif
│ │ │ ├── ckfnothumb.gif
│ │ │ ├── ckfplus.gif
│ │ │ ├── icons
│ │ │ │ ├── 16
│ │ │ │ │ ├── ai.gif
│ │ │ │ │ ├── avi.gif
│ │ │ │ │ ├── bmp.gif
│ │ │ │ │ ├── cs.gif
│ │ │ │ │ ├── default.icon.gif
│ │ │ │ │ ├── dll.gif
│ │ │ │ │ ├── doc.gif
│ │ │ │ │ ├── docx.gif
│ │ │ │ │ ├── exe.gif
│ │ │ │ │ ├── fla.gif
│ │ │ │ │ ├── gif.gif
│ │ │ │ │ ├── jpg.gif
│ │ │ │ │ ├── js.gif
│ │ │ │ │ ├── mdb.gif
│ │ │ │ │ ├── mp3.gif
│ │ │ │ │ ├── ogg.gif
│ │ │ │ │ ├── pdf.gif
│ │ │ │ │ ├── ppt.gif
│ │ │ │ │ ├── pptx.gif
│ │ │ │ │ ├── rdp.gif
│ │ │ │ │ ├── swf.gif
│ │ │ │ │ ├── swt.gif
│ │ │ │ │ ├── txt.gif
│ │ │ │ │ ├── vsd.gif
│ │ │ │ │ ├── xls.gif
│ │ │ │ │ ├── xlsx.gif
│ │ │ │ │ ├── xml.gif
│ │ │ │ │ └── zip.gif
│ │ │ │ └── 32
│ │ │ │ ├── ai.gif
│ │ │ │ ├── avi.gif
│ │ │ │ ├── bmp.gif
│ │ │ │ ├── cs.gif
│ │ │ │ ├── default.icon.gif
│ │ │ │ ├── dll.gif
│ │ │ │ ├── doc.gif
│ │ │ │ ├── docx.gif
│ │ │ │ ├── exe.gif
│ │ │ │ ├── fla.gif
│ │ │ │ ├── gif.gif
│ │ │ │ ├── jpg.gif
│ │ │ │ ├── js.gif
│ │ │ │ ├── mdb.gif
│ │ │ │ ├── mp3.gif
│ │ │ │ ├── ogg.gif
│ │ │ │ ├── ogg.png
│ │ │ │ ├── pdf.gif
│ │ │ │ ├── ppt.gif
│ │ │ │ ├── pptx.gif
│ │ │ │ ├── rdp.gif
│ │ │ │ ├── swf.gif
│ │ │ │ ├── swt.gif
│ │ │ │ ├── txt.gif
│ │ │ │ ├── vsd.gif
│ │ │ │ ├── xls.gif
│ │ │ │ ├── xlsx.gif
│ │ │ │ ├── xml.gif
│ │ │ │ └── zip.gif
│ │ │ ├── icons.png
│ │ │ ├── loaders
│ │ │ │ ├── 16x16.gif
│ │ │ │ └── 32x32.gif
│ │ │ ├── spacer.gif
│ │ │ ├── sprites.png
│ │ │ ├── sprites_ie6.png
│ │ │ └── toolbar
│ │ │ ├── add.gif
│ │ │ ├── clear_basket.gif
│ │ │ ├── delete.gif
│ │ │ ├── download.gif
│ │ │ ├── help.gif
│ │ │ ├── refresh.gif
│ │ │ ├── settings.gif
│ │ │ └── view.gif
│ │ ├── richcombo.css
│ │ ├── skin.js
│ │ └── uipanel.css
│ └── v1
│ ├── app.css
│ ├── host.css
│ ├── icons.png
│ ├── images
│ │ ├── ckffolder.gif
│ │ ├── ckffolderopened.gif
│ │ ├── ckfminus.gif
│ │ ├── ckfnothumb.gif
│ │ ├── ckfplus.gif
│ │ ├── dialog_sides.gif
│ │ ├── dialog_sides.png
│ │ ├── dialog_sides_rtl.png
│ │ ├── icons
│ │ │ ├── 16
│ │ │ │ ├── ai.gif
│ │ │ │ ├── avi.gif
│ │ │ │ ├── bmp.gif
│ │ │ │ ├── cs.gif
│ │ │ │ ├── default.icon.gif
│ │ │ │ ├── dll.gif
│ │ │ │ ├── doc.gif
│ │ │ │ ├── docx.gif
│ │ │ │ ├── exe.gif
│ │ │ │ ├── fla.gif
│ │ │ │ ├── gif.gif
│ │ │ │ ├── jpg.gif
│ │ │ │ ├── js.gif
│ │ │ │ ├── mdb.gif
│ │ │ │ ├── mp3.gif
│ │ │ │ ├── pdf.gif
│ │ │ │ ├── ppt.gif
│ │ │ │ ├── pptx.gif
│ │ │ │ ├── rdp.gif
│ │ │ │ ├── swf.gif
│ │ │ │ ├── swt.gif
│ │ │ │ ├── txt.gif
│ │ │ │ ├── vsd.gif
│ │ │ │ ├── xls.gif
│ │ │ │ ├── xlsx.gif
│ │ │ │ ├── xml.gif
│ │ │ │ └── zip.gif
│ │ │ └── 32
│ │ │ ├── ai.gif
│ │ │ ├── avi.gif
│ │ │ ├── bmp.gif
│ │ │ ├── cs.gif
│ │ │ ├── default.icon.gif
│ │ │ ├── dll.gif
│ │ │ ├── doc.gif
│ │ │ ├── docx.gif
│ │ │ ├── exe.gif
│ │ │ ├── fla.gif
│ │ │ ├── gif.gif
│ │ │ ├── jpg.gif
│ │ │ ├── js.gif
│ │ │ ├── mdb.gif
│ │ │ ├── mp3.gif
│ │ │ ├── pdf.gif
│ │ │ ├── ppt.gif
│ │ │ ├── pptx.gif
│ │ │ ├── rdp.gif
│ │ │ ├── swf.gif
│ │ │ ├── swt.gif
│ │ │ ├── txt.gif
│ │ │ ├── vsd.gif
│ │ │ ├── xls.gif
│ │ │ ├── xlsx.gif
│ │ │ ├── xml.gif
│ │ │ └── zip.gif
│ │ ├── icons.png
│ │ ├── loaders
│ │ │ ├── 16x16.gif
│ │ │ └── 32x32.gif
│ │ ├── spacer.gif
│ │ ├── sprites.png
│ │ ├── sprites_ie6.png
│ │ ├── toolbar
│ │ │ ├── add.gif
│ │ │ ├── clear_basket.gif
│ │ │ ├── delete.gif
│ │ │ ├── download.gif
│ │ │ ├── help.gif
│ │ │ ├── refresh.gif
│ │ │ ├── settings.gif
│ │ │ └── view.gif
│ │ └── toolbar_start.gif
│ ├── richcombo.css
│ ├── skin.js
│ └── uipanel.css
└── userfiles
65 directories, 513 files
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论