├── tests └── .gitkeep ├── .gitignore ├── public ├── js │ ├── kcfinder │ │ ├── index.php │ │ ├── .gitignore │ │ ├── cache │ │ │ ├── theme_dark.js │ │ │ ├── theme_default.js │ │ │ ├── .htaccess │ │ │ └── base.css │ │ ├── tpl │ │ │ ├── .htaccess │ │ │ ├── tpl_css.php │ │ │ └── tpl_javascript.php │ │ ├── doc │ │ │ └── .htaccess │ │ ├── lib │ │ │ ├── .htaccess │ │ │ └── helper_text.php │ │ ├── conf │ │ │ ├── .htaccess │ │ │ └── upload.htaccess │ │ ├── core │ │ │ ├── .htaccess │ │ │ ├── types │ │ │ │ ├── type_img.php │ │ │ │ └── type_mime.php │ │ │ └── autoload.php │ │ ├── lang │ │ │ ├── .htaccess │ │ │ └── en.php │ │ ├── integration │ │ │ ├── .htaccess │ │ │ └── BolmerCMS.php │ │ ├── favicon.ico │ │ ├── themes │ │ │ ├── dark │ │ │ │ ├── init.js │ │ │ │ ├── img │ │ │ │ │ ├── loading.gif │ │ │ │ │ ├── icons │ │ │ │ │ │ ├── copy.png │ │ │ │ │ │ ├── move.png │ │ │ │ │ │ ├── view.png │ │ │ │ │ │ ├── about.png │ │ │ │ │ │ ├── delete.png │ │ │ │ │ │ ├── rename.png │ │ │ │ │ │ ├── select.png │ │ │ │ │ │ ├── upload.png │ │ │ │ │ │ ├── clipboard.png │ │ │ │ │ │ ├── download.png │ │ │ │ │ │ ├── maximize.png │ │ │ │ │ │ ├── refresh.png │ │ │ │ │ │ ├── settings.png │ │ │ │ │ │ ├── folder-new.png │ │ │ │ │ │ ├── clipboard-add.png │ │ │ │ │ │ └── clipboard-clear.png │ │ │ │ │ ├── kcf_logo.png │ │ │ │ │ ├── tree │ │ │ │ │ │ ├── minus.png │ │ │ │ │ │ ├── plus.png │ │ │ │ │ │ ├── denied.png │ │ │ │ │ │ └── folder.png │ │ │ │ │ ├── files │ │ │ │ │ │ ├── big │ │ │ │ │ │ │ ├── ..png │ │ │ │ │ │ │ ├── gz.png │ │ │ │ │ │ │ ├── js.png │ │ │ │ │ │ │ ├── pl.png │ │ │ │ │ │ │ ├── pm.png │ │ │ │ │ │ │ ├── qt.png │ │ │ │ │ │ │ ├── sh.png │ │ │ │ │ │ │ ├── avi.png │ │ │ │ │ │ │ ├── bat.png │ │ │ │ │ │ │ ├── bmp.png │ │ │ │ │ │ │ ├── bz2.png │ │ │ │ │ │ │ ├── ccd.png │ │ │ │ │ │ │ ├── cgi.png │ │ │ │ │ │ │ ├── com.png │ │ │ │ │ │ │ ├── csh.png │ │ │ │ │ │ │ ├── cue.png │ │ │ │ │ │ │ ├── deb.png │ │ │ │ │ │ │ ├── dll.png │ │ │ │ │ │ │ ├── doc.png │ │ │ │ │ │ │ ├── docx.png │ │ │ │ │ │ │ ├── exe.png │ │ │ │ │ │ │ ├── fla.png │ │ │ │ │ │ │ ├── flv.png │ │ │ │ │ │ │ ├── fon.png │ │ │ │ │ │ │ ├── gif.png │ │ │ │ │ │ │ ├── htm.png │ │ │ │ │ │ │ ├── html.png │ │ │ │ │ │ │ ├── ini.png │ │ │ │ │ │ │ ├── iso.png │ │ │ │ │ │ │ ├── jar.png │ │ │ │ │ │ │ ├── java.png │ │ │ │ │ │ │ ├── jpeg.png │ │ │ │ │ │ │ ├── jpg.png │ │ │ │ │ │ │ ├── mds.png │ │ │ │ │ │ │ ├── mdx.png │ │ │ │ │ │ │ ├── mid.png │ │ │ │ │ │ │ ├── midi.png │ │ │ │ │ │ │ ├── mkv.png │ │ │ │ │ │ │ ├── mov.png │ │ │ │ │ │ │ ├── mp3.png │ │ │ │ │ │ │ ├── mp4.png │ │ │ │ │ │ │ ├── mpeg.png │ │ │ │ │ │ │ ├── mpg.png │ │ │ │ │ │ │ ├── nfo.png │ │ │ │ │ │ │ ├── nrg.png │ │ │ │ │ │ │ ├── ogg.png │ │ │ │ │ │ │ ├── pdf.png │ │ │ │ │ │ │ ├── php.png │ │ │ │ │ │ │ ├── phps.png │ │ │ │ │ │ │ ├── png.png │ │ │ │ │ │ │ ├── ppt.png │ │ │ │ │ │ │ ├── pptx.png │ │ │ │ │ │ │ ├── psd.png │ │ │ │ │ │ │ ├── rar.png │ │ │ │ │ │ │ ├── rpm.png │ │ │ │ │ │ │ ├── rtf.png │ │ │ │ │ │ │ ├── sql.png │ │ │ │ │ │ │ ├── srt.png │ │ │ │ │ │ │ ├── sub.png │ │ │ │ │ │ │ ├── swf.png │ │ │ │ │ │ │ ├── tgz.png │ │ │ │ │ │ │ ├── tif.png │ │ │ │ │ │ │ ├── tiff.png │ │ │ │ │ │ │ ├── ttf.png │ │ │ │ │ │ │ ├── txt.png │ │ │ │ │ │ │ ├── wav.png │ │ │ │ │ │ │ ├── wma.png │ │ │ │ │ │ │ ├── xls.png │ │ │ │ │ │ │ ├── xlsx.png │ │ │ │ │ │ │ ├── zip.png │ │ │ │ │ │ │ ├── .image.png │ │ │ │ │ │ │ └── torrent.png │ │ │ │ │ │ └── small │ │ │ │ │ │ │ ├── ..png │ │ │ │ │ │ │ ├── avi.png │ │ │ │ │ │ │ ├── bat.png │ │ │ │ │ │ │ ├── bmp.png │ │ │ │ │ │ │ ├── bz2.png │ │ │ │ │ │ │ ├── ccd.png │ │ │ │ │ │ │ ├── cgi.png │ │ │ │ │ │ │ ├── com.png │ │ │ │ │ │ │ ├── csh.png │ │ │ │ │ │ │ ├── cue.png │ │ │ │ │ │ │ ├── deb.png │ │ │ │ │ │ │ ├── dll.png │ │ │ │ │ │ │ ├── doc.png │ │ │ │ │ │ │ ├── exe.png │ │ │ │ │ │ │ ├── fla.png │ │ │ │ │ │ │ ├── flv.png │ │ │ │ │ │ │ ├── fon.png │ │ │ │ │ │ │ ├── gif.png │ │ │ │ │ │ │ ├── gz.png │ │ │ │ │ │ │ ├── htm.png │ │ │ │ │ │ │ ├── ini.png │ │ │ │ │ │ │ ├── iso.png │ │ │ │ │ │ │ ├── jar.png │ │ │ │ │ │ │ ├── jpg.png │ │ │ │ │ │ │ ├── js.png │ │ │ │ │ │ │ ├── mds.png │ │ │ │ │ │ │ ├── mdx.png │ │ │ │ │ │ │ ├── mid.png │ │ │ │ │ │ │ ├── mkv.png │ │ │ │ │ │ │ ├── mov.png │ │ │ │ │ │ │ ├── mp3.png │ │ │ │ │ │ │ ├── mp4.png │ │ │ │ │ │ │ ├── mpg.png │ │ │ │ │ │ │ ├── nfo.png │ │ │ │ │ │ │ ├── nrg.png │ │ │ │ │ │ │ ├── ogg.png │ │ │ │ │ │ │ ├── pdf.png │ │ │ │ │ │ │ ├── php.png │ │ │ │ │ │ │ ├── pl.png │ │ │ │ │ │ │ ├── pm.png │ │ │ │ │ │ │ ├── png.png │ │ │ │ │ │ │ ├── ppt.png │ │ │ │ │ │ │ ├── psd.png │ │ │ │ │ │ │ ├── qt.png │ │ │ │ │ │ │ ├── rar.png │ │ │ │ │ │ │ ├── rpm.png │ │ │ │ │ │ │ ├── rtf.png │ │ │ │ │ │ │ ├── sh.png │ │ │ │ │ │ │ ├── sql.png │ │ │ │ │ │ │ ├── srt.png │ │ │ │ │ │ │ ├── sub.png │ │ │ │ │ │ │ ├── swf.png │ │ │ │ │ │ │ ├── tgz.png │ │ │ │ │ │ │ ├── tif.png │ │ │ │ │ │ │ ├── ttf.png │ │ │ │ │ │ │ ├── txt.png │ │ │ │ │ │ │ ├── wav.png │ │ │ │ │ │ │ ├── wma.png │ │ │ │ │ │ │ ├── xls.png │ │ │ │ │ │ │ ├── zip.png │ │ │ │ │ │ │ ├── docx.png │ │ │ │ │ │ │ ├── html.png │ │ │ │ │ │ │ ├── java.png │ │ │ │ │ │ │ ├── jpeg.png │ │ │ │ │ │ │ ├── midi.png │ │ │ │ │ │ │ ├── mpeg.png │ │ │ │ │ │ │ ├── phps.png │ │ │ │ │ │ │ ├── pptx.png │ │ │ │ │ │ │ ├── tiff.png │ │ │ │ │ │ │ ├── xlsx.png │ │ │ │ │ │ │ ├── .image.png │ │ │ │ │ │ │ └── torrent.png │ │ │ │ │ ├── bg_transparent.png │ │ │ │ │ ├── ui-icons_black.png │ │ │ │ │ ├── ui-icons_grey.png │ │ │ │ │ └── ui-icons_white.png │ │ │ │ ├── js.php │ │ │ │ ├── css.php │ │ │ │ └── README │ │ │ └── default │ │ │ │ ├── init.js │ │ │ │ ├── img │ │ │ │ ├── loading.gif │ │ │ │ ├── kcf_logo.png │ │ │ │ ├── tree │ │ │ │ │ ├── plus.png │ │ │ │ │ ├── denied.png │ │ │ │ │ ├── folder.png │ │ │ │ │ └── minus.png │ │ │ │ ├── files │ │ │ │ │ ├── big │ │ │ │ │ │ ├── ..png │ │ │ │ │ │ ├── gz.png │ │ │ │ │ │ ├── js.png │ │ │ │ │ │ ├── pl.png │ │ │ │ │ │ ├── pm.png │ │ │ │ │ │ ├── qt.png │ │ │ │ │ │ ├── sh.png │ │ │ │ │ │ ├── avi.png │ │ │ │ │ │ ├── bat.png │ │ │ │ │ │ ├── bmp.png │ │ │ │ │ │ ├── bz2.png │ │ │ │ │ │ ├── ccd.png │ │ │ │ │ │ ├── cgi.png │ │ │ │ │ │ ├── com.png │ │ │ │ │ │ ├── csh.png │ │ │ │ │ │ ├── cue.png │ │ │ │ │ │ ├── deb.png │ │ │ │ │ │ ├── dll.png │ │ │ │ │ │ ├── doc.png │ │ │ │ │ │ ├── docx.png │ │ │ │ │ │ ├── exe.png │ │ │ │ │ │ ├── fla.png │ │ │ │ │ │ ├── flv.png │ │ │ │ │ │ ├── fon.png │ │ │ │ │ │ ├── gif.png │ │ │ │ │ │ ├── htm.png │ │ │ │ │ │ ├── html.png │ │ │ │ │ │ ├── ini.png │ │ │ │ │ │ ├── iso.png │ │ │ │ │ │ ├── jar.png │ │ │ │ │ │ ├── java.png │ │ │ │ │ │ ├── jpeg.png │ │ │ │ │ │ ├── jpg.png │ │ │ │ │ │ ├── mds.png │ │ │ │ │ │ ├── mdx.png │ │ │ │ │ │ ├── mid.png │ │ │ │ │ │ ├── midi.png │ │ │ │ │ │ ├── mkv.png │ │ │ │ │ │ ├── mov.png │ │ │ │ │ │ ├── mp3.png │ │ │ │ │ │ ├── mp4.png │ │ │ │ │ │ ├── mpeg.png │ │ │ │ │ │ ├── mpg.png │ │ │ │ │ │ ├── nfo.png │ │ │ │ │ │ ├── nrg.png │ │ │ │ │ │ ├── ogg.png │ │ │ │ │ │ ├── pdf.png │ │ │ │ │ │ ├── php.png │ │ │ │ │ │ ├── phps.png │ │ │ │ │ │ ├── png.png │ │ │ │ │ │ ├── ppt.png │ │ │ │ │ │ ├── pptx.png │ │ │ │ │ │ ├── psd.png │ │ │ │ │ │ ├── rar.png │ │ │ │ │ │ ├── rpm.png │ │ │ │ │ │ ├── rtf.png │ │ │ │ │ │ ├── sql.png │ │ │ │ │ │ ├── srt.png │ │ │ │ │ │ ├── sub.png │ │ │ │ │ │ ├── swf.png │ │ │ │ │ │ ├── tgz.png │ │ │ │ │ │ ├── tif.png │ │ │ │ │ │ ├── tiff.png │ │ │ │ │ │ ├── ttf.png │ │ │ │ │ │ ├── txt.png │ │ │ │ │ │ ├── wav.png │ │ │ │ │ │ ├── wma.png │ │ │ │ │ │ ├── xls.png │ │ │ │ │ │ ├── xlsx.png │ │ │ │ │ │ ├── zip.png │ │ │ │ │ │ ├── .image.png │ │ │ │ │ │ └── torrent.png │ │ │ │ │ └── small │ │ │ │ │ │ ├── ..png │ │ │ │ │ │ ├── gz.png │ │ │ │ │ │ ├── js.png │ │ │ │ │ │ ├── pl.png │ │ │ │ │ │ ├── pm.png │ │ │ │ │ │ ├── qt.png │ │ │ │ │ │ ├── sh.png │ │ │ │ │ │ ├── avi.png │ │ │ │ │ │ ├── bat.png │ │ │ │ │ │ ├── bmp.png │ │ │ │ │ │ ├── bz2.png │ │ │ │ │ │ ├── ccd.png │ │ │ │ │ │ ├── cgi.png │ │ │ │ │ │ ├── com.png │ │ │ │ │ │ ├── csh.png │ │ │ │ │ │ ├── cue.png │ │ │ │ │ │ ├── deb.png │ │ │ │ │ │ ├── dll.png │ │ │ │ │ │ ├── doc.png │ │ │ │ │ │ ├── docx.png │ │ │ │ │ │ ├── exe.png │ │ │ │ │ │ ├── fla.png │ │ │ │ │ │ ├── flv.png │ │ │ │ │ │ ├── fon.png │ │ │ │ │ │ ├── gif.png │ │ │ │ │ │ ├── htm.png │ │ │ │ │ │ ├── html.png │ │ │ │ │ │ ├── ini.png │ │ │ │ │ │ ├── iso.png │ │ │ │ │ │ ├── jar.png │ │ │ │ │ │ ├── java.png │ │ │ │ │ │ ├── jpeg.png │ │ │ │ │ │ ├── jpg.png │ │ │ │ │ │ ├── mds.png │ │ │ │ │ │ ├── mdx.png │ │ │ │ │ │ ├── mid.png │ │ │ │ │ │ ├── midi.png │ │ │ │ │ │ ├── mkv.png │ │ │ │ │ │ ├── mov.png │ │ │ │ │ │ ├── mp3.png │ │ │ │ │ │ ├── mp4.png │ │ │ │ │ │ ├── mpeg.png │ │ │ │ │ │ ├── mpg.png │ │ │ │ │ │ ├── nfo.png │ │ │ │ │ │ ├── nrg.png │ │ │ │ │ │ ├── ogg.png │ │ │ │ │ │ ├── pdf.png │ │ │ │ │ │ ├── php.png │ │ │ │ │ │ ├── phps.png │ │ │ │ │ │ ├── png.png │ │ │ │ │ │ ├── ppt.png │ │ │ │ │ │ ├── pptx.png │ │ │ │ │ │ ├── psd.png │ │ │ │ │ │ ├── rar.png │ │ │ │ │ │ ├── rpm.png │ │ │ │ │ │ ├── rtf.png │ │ │ │ │ │ ├── sql.png │ │ │ │ │ │ ├── srt.png │ │ │ │ │ │ ├── sub.png │ │ │ │ │ │ ├── swf.png │ │ │ │ │ │ ├── tgz.png │ │ │ │ │ │ ├── tif.png │ │ │ │ │ │ ├── tiff.png │ │ │ │ │ │ ├── ttf.png │ │ │ │ │ │ ├── txt.png │ │ │ │ │ │ ├── wav.png │ │ │ │ │ │ ├── wma.png │ │ │ │ │ │ ├── xls.png │ │ │ │ │ │ ├── xlsx.png │ │ │ │ │ │ ├── zip.png │ │ │ │ │ │ ├── .image.png │ │ │ │ │ │ └── torrent.png │ │ │ │ ├── icons │ │ │ │ │ ├── about.png │ │ │ │ │ ├── copy.png │ │ │ │ │ ├── delete.png │ │ │ │ │ ├── move.png │ │ │ │ │ ├── rename.png │ │ │ │ │ ├── select.png │ │ │ │ │ ├── upload.png │ │ │ │ │ ├── view.png │ │ │ │ │ ├── download.png │ │ │ │ │ ├── maximize.png │ │ │ │ │ ├── refresh.png │ │ │ │ │ ├── settings.png │ │ │ │ │ ├── clipboard.png │ │ │ │ │ ├── folder-new.png │ │ │ │ │ ├── clipboard-add.png │ │ │ │ │ └── clipboard-clear.png │ │ │ │ ├── bg_transparent.png │ │ │ │ ├── ui-icons_black.png │ │ │ │ └── ui-icons_white.png │ │ │ │ ├── js.php │ │ │ │ ├── css.php │ │ │ │ └── README │ │ ├── css │ │ │ ├── 999.agent.css │ │ │ └── index.php │ │ ├── js │ │ │ ├── index.php │ │ │ ├── 040.object.js │ │ │ └── 020.jquery.rightClick.js │ │ ├── browse.php │ │ ├── upload.php │ │ ├── js_localize.php │ │ └── README.md │ ├── ckeditor │ │ ├── plugins │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ ├── link │ │ │ │ ├── images │ │ │ │ │ ├── anchor.png │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── anchor.png │ │ │ │ └── dialogs │ │ │ │ │ └── anchor.js │ │ │ ├── image │ │ │ │ └── images │ │ │ │ │ └── noimage.png │ │ │ ├── magicline │ │ │ │ └── images │ │ │ │ │ ├── icon.png │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ └── hidpi │ │ │ │ │ ├── icon.png │ │ │ │ │ └── icon-rtl.png │ │ │ ├── about │ │ │ │ └── dialogs │ │ │ │ │ ├── logo_ckeditor.png │ │ │ │ │ ├── hidpi │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ └── about.js │ │ │ ├── dialog │ │ │ │ └── dialogDefinition.js │ │ │ ├── specialchar │ │ │ │ └── dialogs │ │ │ │ │ └── lang │ │ │ │ │ └── _translationstatus.txt │ │ │ ├── a11yhelp │ │ │ │ └── dialogs │ │ │ │ │ └── lang │ │ │ │ │ └── _translationstatus.txt │ │ │ ├── wsc │ │ │ │ ├── README.md │ │ │ │ ├── dialogs │ │ │ │ │ ├── wsc.css │ │ │ │ │ └── ciframe.html │ │ │ │ └── LICENSE.md │ │ │ └── scayt │ │ │ │ ├── README.md │ │ │ │ ├── LICENSE.md │ │ │ │ └── dialogs │ │ │ │ └── toolbar.css │ │ ├── skins │ │ │ └── moono │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ └── images │ │ │ │ ├── lock.png │ │ │ │ ├── arrow.png │ │ │ │ ├── close.png │ │ │ │ ├── refresh.png │ │ │ │ ├── lock-open.png │ │ │ │ └── hidpi │ │ │ │ ├── close.png │ │ │ │ ├── lock.png │ │ │ │ ├── refresh.png │ │ │ │ └── lock-open.png │ │ └── README.md │ └── jquery │ │ ├── fancybox │ │ ├── blank.gif │ │ ├── fancybox_loading.gif │ │ ├── fancybox_overlay.png │ │ ├── fancybox_sprite.png │ │ ├── fancybox_loading@2x.gif │ │ ├── fancybox_sprite@2x.png │ │ └── helpers │ │ │ ├── fancybox_buttons.png │ │ │ └── jquery.fancybox-thumbs.css │ │ └── jquery.throttle-debounce.min.js ├── sandpaper.png └── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── assets ├── demo.jpg ├── install.jpg └── customize.jpg ├── src ├── views │ ├── errors │ │ └── 404.blade.php │ ├── alerts.blade.php │ ├── admin │ │ ├── alerts.blade.php │ │ ├── pages │ │ │ └── module.blade.php │ │ ├── menus │ │ │ ├── items │ │ │ │ ├── add-or-edit.blade.php │ │ │ │ └── index.blade.php │ │ │ └── add-or-edit.blade.php │ │ ├── header.blade.php │ │ ├── signin.blade.php │ │ ├── template.blade.php │ │ ├── links │ │ │ ├── index.blade.php │ │ │ └── add-or-edit.blade.php │ │ └── users │ │ │ └── index.blade.php │ ├── menus │ │ └── render.blade.php │ ├── page.blade.php │ ├── header.blade.php │ ├── emails │ │ └── template.blade.php │ └── template.blade.php ├── controllers │ ├── admin │ │ ├── AdminLinkController.php │ │ ├── AdminPageController.php │ │ ├── AdminUserController.php │ │ ├── AdminSettingController.php │ │ └── AdminMenuItemController.php │ ├── PageController.php │ └── UserController.php ├── lang │ └── validation.php ├── models │ ├── PageModule.php │ ├── Setting.php │ ├── Link.php │ ├── LinkableModel.php │ ├── MenuItem.php │ └── Change.php ├── migrations │ ├── 2014_06_23_213856_create_links_table.php │ ├── 2014_05_30_235338_create_settings_table.php │ ├── 2014_06_02_231541_create_changes_table.php │ ├── 2014_06_03_160140_create_menus_table.php │ ├── 2014_06_02_230608_create_pages_modules_table.php │ ├── 2014_06_03_160217_create_menus_items_table.php │ └── 2014_05_30_210037_create_users_table.php ├── config │ └── config.php ├── filters.php ├── commands │ ├── AngelUpdate.php │ ├── AngelAssets.php │ ├── DatabaseRestore.php │ └── DatabaseBackup.php └── Angel │ └── Core │ ├── ToolBelt.php │ └── Helpers.php ├── .travis.yml ├── phpunit.xml ├── composer.json └── LICENSE /tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | composer.phar 3 | composer.lock 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /public/js/kcfinder/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/assets/demo.jpg -------------------------------------------------------------------------------- /public/js/kcfinder/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | upload/* 3 | [Tt]humbs.db 4 | *.DS_Store 5 | -------------------------------------------------------------------------------- /public/js/kcfinder/cache/theme_dark.js: -------------------------------------------------------------------------------- 1 | new Image().src="themes/dark/img/loading.gif"; -------------------------------------------------------------------------------- /assets/install.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/assets/install.jpg -------------------------------------------------------------------------------- /public/js/kcfinder/cache/theme_default.js: -------------------------------------------------------------------------------- 1 | new Image().src="themes/default/img/loading.gif"; -------------------------------------------------------------------------------- /public/js/kcfinder/tpl/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Order allow,deny 3 | Deny from all 4 | -------------------------------------------------------------------------------- /assets/customize.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/assets/customize.jpg -------------------------------------------------------------------------------- /public/js/kcfinder/doc/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Order allow,deny 3 | Deny from all 4 | 5 | -------------------------------------------------------------------------------- /public/js/kcfinder/lib/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Order allow,deny 3 | Deny from all 4 | 5 | -------------------------------------------------------------------------------- /public/sandpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/sandpaper.png -------------------------------------------------------------------------------- /public/js/kcfinder/cache/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Order allow,deny 3 | Deny from all 4 | 5 | -------------------------------------------------------------------------------- /public/js/kcfinder/conf/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Order allow,deny 3 | Deny from all 4 | 5 | -------------------------------------------------------------------------------- /public/js/kcfinder/core/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Order allow,deny 3 | Deny from all 4 | 5 | -------------------------------------------------------------------------------- /public/js/kcfinder/lang/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Order allow,deny 3 | Deny from all 4 | 5 | -------------------------------------------------------------------------------- /public/js/kcfinder/integration/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Order allow,deny 3 | Deny from all 4 | 5 | -------------------------------------------------------------------------------- /public/js/kcfinder/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/favicon.ico -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/init.js: -------------------------------------------------------------------------------- 1 | new Image().src = 'themes/dark/img/loading.gif'; // preload animated gif 2 | -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/init.js: -------------------------------------------------------------------------------- 1 | new Image().src = 'themes/default/img/loading.gif'; // preload animated gif 2 | -------------------------------------------------------------------------------- /public/js/ckeditor/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/ckeditor/plugins/icons.png -------------------------------------------------------------------------------- /public/js/jquery/fancybox/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/jquery/fancybox/blank.gif -------------------------------------------------------------------------------- /public/js/ckeditor/skins/moono/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/ckeditor/skins/moono/icons.png -------------------------------------------------------------------------------- /public/js/ckeditor/plugins/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/ckeditor/plugins/icons_hidpi.png -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /public/js/ckeditor/skins/moono/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/ckeditor/skins/moono/icons_hidpi.png -------------------------------------------------------------------------------- /public/js/ckeditor/skins/moono/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/ckeditor/skins/moono/images/lock.png -------------------------------------------------------------------------------- /public/js/jquery/fancybox/fancybox_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/jquery/fancybox/fancybox_loading.gif -------------------------------------------------------------------------------- /public/js/jquery/fancybox/fancybox_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/jquery/fancybox/fancybox_overlay.png -------------------------------------------------------------------------------- /public/js/jquery/fancybox/fancybox_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/jquery/fancybox/fancybox_sprite.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/loading.gif -------------------------------------------------------------------------------- /public/js/ckeditor/plugins/link/images/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/ckeditor/plugins/link/images/anchor.png -------------------------------------------------------------------------------- /public/js/ckeditor/skins/moono/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/ckeditor/skins/moono/images/arrow.png -------------------------------------------------------------------------------- /public/js/ckeditor/skins/moono/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/ckeditor/skins/moono/images/close.png -------------------------------------------------------------------------------- /public/js/ckeditor/skins/moono/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/ckeditor/skins/moono/images/refresh.png -------------------------------------------------------------------------------- /public/js/jquery/fancybox/fancybox_loading@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/jquery/fancybox/fancybox_loading@2x.gif -------------------------------------------------------------------------------- /public/js/jquery/fancybox/fancybox_sprite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/jquery/fancybox/fancybox_sprite@2x.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/icons/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/icons/copy.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/icons/move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/icons/move.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/icons/view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/icons/view.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/kcf_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/kcf_logo.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/tree/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/tree/minus.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/tree/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/tree/plus.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/loading.gif -------------------------------------------------------------------------------- /public/js/ckeditor/plugins/image/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/ckeditor/plugins/image/images/noimage.png -------------------------------------------------------------------------------- /public/js/ckeditor/skins/moono/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/ckeditor/skins/moono/images/lock-open.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/..png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/..png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/gz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/gz.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/js.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/pl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/pl.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/pm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/pm.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/qt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/qt.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/sh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/sh.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/icons/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/icons/about.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/icons/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/icons/delete.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/icons/rename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/icons/rename.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/icons/select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/icons/select.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/icons/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/icons/upload.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/tree/denied.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/tree/denied.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/tree/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/tree/folder.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/kcf_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/kcf_logo.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/tree/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/tree/plus.png -------------------------------------------------------------------------------- /public/js/ckeditor/plugins/magicline/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/ckeditor/plugins/magicline/images/icon.png -------------------------------------------------------------------------------- /public/js/ckeditor/skins/moono/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/ckeditor/skins/moono/images/hidpi/close.png -------------------------------------------------------------------------------- /public/js/ckeditor/skins/moono/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/ckeditor/skins/moono/images/hidpi/lock.png -------------------------------------------------------------------------------- /public/js/jquery/fancybox/helpers/fancybox_buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/jquery/fancybox/helpers/fancybox_buttons.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/bg_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/bg_transparent.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/avi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/avi.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/bat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/bat.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/bmp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/bmp.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/bz2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/bz2.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/ccd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/ccd.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/cgi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/cgi.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/com.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/com.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/csh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/csh.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/cue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/cue.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/deb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/deb.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/dll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/dll.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/doc.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/docx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/docx.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/exe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/exe.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/fla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/fla.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/flv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/flv.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/fon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/fon.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/gif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/gif.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/htm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/htm.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/html.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/ini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/ini.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/iso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/iso.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/jar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/jar.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/java.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/jpeg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/jpeg.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/jpg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/jpg.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/mds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/mds.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/mdx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/mdx.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/mid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/mid.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/midi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/midi.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/mkv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/mkv.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/mov.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/mov.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/mp3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/mp3.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/mp4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/mp4.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/mpeg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/mpeg.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/mpg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/mpg.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/nfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/nfo.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/nrg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/nrg.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/ogg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/ogg.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/pdf.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/php.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/php.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/phps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/phps.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/png.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/ppt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/ppt.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/pptx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/pptx.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/psd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/psd.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/rar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/rar.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/rpm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/rpm.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/rtf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/rtf.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/sql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/sql.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/srt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/srt.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/sub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/sub.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/swf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/swf.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/tgz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/tgz.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/tif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/tif.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/tiff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/tiff.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/ttf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/ttf.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/txt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/txt.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/wav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/wav.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/wma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/wma.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/xls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/xls.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/xlsx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/xlsx.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/zip.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/..png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/..png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/avi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/avi.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/bat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/bat.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/bmp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/bmp.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/bz2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/bz2.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/ccd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/ccd.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/cgi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/cgi.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/com.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/com.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/csh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/csh.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/cue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/cue.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/deb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/deb.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/dll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/dll.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/doc.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/exe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/exe.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/fla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/fla.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/flv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/flv.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/fon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/fon.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/gif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/gif.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/gz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/gz.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/htm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/htm.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/ini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/ini.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/iso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/iso.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/jar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/jar.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/jpg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/jpg.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/js.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/mds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/mds.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/mdx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/mdx.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/mid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/mid.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/mkv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/mkv.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/mov.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/mov.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/mp3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/mp3.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/mp4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/mp4.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/mpg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/mpg.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/nfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/nfo.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/nrg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/nrg.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/ogg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/ogg.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/pdf.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/php.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/php.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/pl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/pl.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/pm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/pm.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/png.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/ppt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/ppt.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/psd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/psd.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/qt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/qt.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/rar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/rar.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/rpm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/rpm.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/rtf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/rtf.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/sh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/sh.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/sql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/sql.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/srt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/srt.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/sub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/sub.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/swf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/swf.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/tgz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/tgz.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/tif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/tif.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/ttf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/ttf.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/txt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/txt.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/wav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/wav.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/wma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/wma.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/xls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/xls.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/zip.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/icons/clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/icons/clipboard.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/icons/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/icons/download.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/icons/maximize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/icons/maximize.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/icons/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/icons/refresh.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/icons/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/icons/settings.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/ui-icons_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/ui-icons_black.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/ui-icons_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/ui-icons_grey.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/ui-icons_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/ui-icons_white.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/..png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/..png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/gz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/gz.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/js.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/pl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/pl.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/pm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/pm.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/qt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/qt.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/sh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/sh.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/icons/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/icons/about.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/icons/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/icons/copy.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/icons/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/icons/delete.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/icons/move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/icons/move.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/icons/rename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/icons/rename.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/icons/select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/icons/select.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/icons/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/icons/upload.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/icons/view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/icons/view.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/tree/denied.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/tree/denied.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/tree/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/tree/folder.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/tree/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/tree/minus.png -------------------------------------------------------------------------------- /public/js/ckeditor/plugins/link/images/hidpi/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/ckeditor/plugins/link/images/hidpi/anchor.png -------------------------------------------------------------------------------- /public/js/ckeditor/plugins/magicline/images/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/ckeditor/plugins/magicline/images/icon-rtl.png -------------------------------------------------------------------------------- /public/js/ckeditor/skins/moono/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/ckeditor/skins/moono/images/hidpi/refresh.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/.image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/.image.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/big/torrent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/big/torrent.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/docx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/docx.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/html.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/java.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/jpeg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/jpeg.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/midi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/midi.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/mpeg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/mpeg.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/phps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/phps.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/pptx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/pptx.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/tiff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/tiff.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/xlsx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/xlsx.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/icons/folder-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/icons/folder-new.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/bg_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/bg_transparent.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/avi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/avi.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/bat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/bat.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/bmp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/bmp.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/bz2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/bz2.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/ccd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/ccd.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/cgi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/cgi.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/com.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/com.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/csh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/csh.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/cue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/cue.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/deb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/deb.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/dll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/dll.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/doc.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/docx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/docx.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/exe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/exe.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/fla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/fla.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/flv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/flv.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/fon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/fon.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/gif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/gif.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/htm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/htm.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/html.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/ini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/ini.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/iso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/iso.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/jar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/jar.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/java.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/jpeg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/jpeg.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/jpg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/jpg.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/mds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/mds.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/mdx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/mdx.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/mid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/mid.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/midi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/midi.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/mkv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/mkv.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/mov.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/mov.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/mp3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/mp3.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/mp4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/mp4.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/mpeg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/mpeg.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/mpg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/mpg.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/nfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/nfo.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/nrg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/nrg.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/ogg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/ogg.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/pdf.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/php.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/php.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/phps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/phps.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/png.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/ppt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/ppt.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/pptx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/pptx.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/psd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/psd.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/rar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/rar.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/rpm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/rpm.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/rtf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/rtf.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/sql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/sql.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/srt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/srt.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/sub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/sub.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/swf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/swf.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/tgz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/tgz.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/tif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/tif.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/tiff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/tiff.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/ttf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/ttf.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/txt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/txt.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/wav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/wav.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/wma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/wma.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/xls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/xls.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/xlsx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/xlsx.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/zip.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/..png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/..png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/gz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/gz.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/js.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/pl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/pl.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/pm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/pm.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/qt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/qt.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/sh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/sh.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/icons/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/icons/download.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/icons/maximize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/icons/maximize.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/icons/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/icons/refresh.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/icons/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/icons/settings.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/ui-icons_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/ui-icons_black.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/ui-icons_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/ui-icons_white.png -------------------------------------------------------------------------------- /public/js/ckeditor/plugins/about/dialogs/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/ckeditor/plugins/about/dialogs/logo_ckeditor.png -------------------------------------------------------------------------------- /public/js/ckeditor/plugins/magicline/images/hidpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/ckeditor/plugins/magicline/images/hidpi/icon.png -------------------------------------------------------------------------------- /public/js/ckeditor/skins/moono/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/ckeditor/skins/moono/images/hidpi/lock-open.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/.image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/.image.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/files/small/torrent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/files/small/torrent.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/icons/clipboard-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/icons/clipboard-add.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/.image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/.image.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/big/torrent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/big/torrent.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/avi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/avi.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/bat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/bat.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/bmp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/bmp.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/bz2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/bz2.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/ccd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/ccd.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/cgi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/cgi.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/com.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/com.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/csh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/csh.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/cue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/cue.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/deb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/deb.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/dll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/dll.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/doc.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/docx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/docx.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/exe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/exe.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/fla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/fla.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/flv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/flv.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/fon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/fon.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/gif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/gif.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/htm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/htm.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/html.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/ini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/ini.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/iso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/iso.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/jar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/jar.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/java.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/jpeg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/jpeg.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/jpg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/jpg.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/mds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/mds.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/mdx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/mdx.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/mid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/mid.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/midi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/midi.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/mkv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/mkv.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/mov.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/mov.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/mp3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/mp3.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/mp4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/mp4.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/mpeg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/mpeg.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/mpg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/mpg.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/nfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/nfo.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/nrg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/nrg.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/ogg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/ogg.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/pdf.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/php.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/php.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/phps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/phps.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/png.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/ppt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/ppt.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/pptx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/pptx.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/psd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/psd.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/rar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/rar.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/rpm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/rpm.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/rtf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/rtf.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/sql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/sql.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/srt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/srt.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/sub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/sub.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/swf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/swf.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/tgz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/tgz.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/tif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/tif.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/tiff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/tiff.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/ttf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/ttf.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/txt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/txt.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/wav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/wav.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/wma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/wma.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/xls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/xls.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/xlsx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/xlsx.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/zip.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/icons/clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/icons/clipboard.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/icons/folder-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/icons/folder-new.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/img/icons/clipboard-clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/dark/img/icons/clipboard-clear.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/.image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/.image.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/files/small/torrent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/files/small/torrent.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/icons/clipboard-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/icons/clipboard-add.png -------------------------------------------------------------------------------- /public/js/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png -------------------------------------------------------------------------------- /public/js/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/img/icons/clipboard-clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVMartin/angel-core/HEAD/public/js/kcfinder/themes/default/img/icons/clipboard-clear.png -------------------------------------------------------------------------------- /public/js/ckeditor/plugins/dialog/dialogDefinition.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | -------------------------------------------------------------------------------- /src/views/errors/404.blade.php: -------------------------------------------------------------------------------- 1 | @extends('core::template') 2 | 3 | @section('title', '404') 4 | 5 | @section('content') 6 |

Whoops! 404

7 |

The page you requested doesn't appear to exist. Please check the URL and try again.

8 | @stop -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 5.3 5 | - 5.4 6 | - 5.5 7 | - 5.6 8 | - hhvm 9 | 10 | before_script: 11 | - composer self-update 12 | - composer install --prefer-source --no-interaction --dev 13 | 14 | script: phpunit 15 | -------------------------------------------------------------------------------- /public/js/kcfinder/css/999.agent.css: -------------------------------------------------------------------------------- 1 | body.mobile { 2 | -webkit-touch-callout: none; 3 | -webkit-user-select: none; 4 | -moz-user-select: none; 5 | } 6 | 7 | body.firefox #files > div { 8 | overflow: auto; 9 | margin-bottom: 5px; 10 | } -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/js.php: -------------------------------------------------------------------------------- 1 | minify("cache/theme_$theme.js"); 11 | 12 | ?> -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/css.php: -------------------------------------------------------------------------------- 1 | minify("cache/theme_$theme.css"); 11 | 12 | ?> -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/js.php: -------------------------------------------------------------------------------- 1 | minify("cache/theme_$theme.js"); 11 | 12 | ?> -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/css.php: -------------------------------------------------------------------------------- 1 | minify("cache/theme_$theme.css"); 11 | 12 | ?> -------------------------------------------------------------------------------- /src/controllers/admin/AdminLinkController.php: -------------------------------------------------------------------------------- 1 | array( 5 | //--------- 6 | // Users 7 | //--------- 8 | 'loguser' => '"Username or Email"', 9 | 'logpass' => '"Password"', 10 | 'email' => '"Email"', 11 | 'username' => '"Username"', 12 | 'first_name' => '"First Name"', 13 | 'last_name' => '"Last Name"', 14 | 'password' => '"Password"', 15 | ), 16 | ); -------------------------------------------------------------------------------- /public/js/kcfinder/themes/dark/README: -------------------------------------------------------------------------------- 1 | This folder contains files for designing default visual theme for KCFinder. 2 | Some icons are taken from default KDE4 visual theme (http://www.kde.org) 3 | 4 | Theme Details: 5 | 6 | Version: 1.0 7 | Author: Pavel Tzonkov 8 | Licenses: GPLv3 - http://opensource.org/licenses/GPL-3.0 9 | LGPLv3 - http://opensource.org/licenses/LGPL-3.0 10 | -------------------------------------------------------------------------------- /public/js/kcfinder/themes/default/README: -------------------------------------------------------------------------------- 1 | This folder contains files for designing default visual theme for KCFinder. 2 | Some icons are taken from default KDE4 visual theme (http://www.kde.org) 3 | 4 | Theme Details: 5 | 6 | Version: 1.0 7 | Author: Pavel Tzonkov 8 | Licenses: GPLv3 - http://opensource.org/licenses/GPL-3.0 9 | LGPLv3 - http://opensource.org/licenses/LGPL-3.0 10 | -------------------------------------------------------------------------------- /public/js/kcfinder/tpl/tpl_css.php: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | -------------------------------------------------------------------------------- /src/views/alerts.blade.php: -------------------------------------------------------------------------------- 1 | @if (isset($error) && count($error)) 2 |
3 |
4 |
5 | @foreach ($error as $message) 6 |

{{ $message }}

7 | @endforeach 8 |
9 |
10 |
11 | @endif 12 | @if (isset($success) && count($success)) 13 |
14 |
15 |
16 | @foreach ($success as $message) 17 |

{{ $message }}

18 | @endforeach 19 |
20 |
21 |
22 | @endif -------------------------------------------------------------------------------- /src/views/admin/alerts.blade.php: -------------------------------------------------------------------------------- 1 | @if (isset($error) && count($error)) 2 |
3 |
4 |
5 | @foreach ($error as $message) 6 |

{{ $message }}

7 | @endforeach 8 |
9 |
10 |
11 | @endif 12 | @if (isset($success) && count($success)) 13 |
14 |
15 |
16 | @foreach ($success as $message) 17 |

{{ $message }}

18 | @endforeach 19 |
20 |
21 |
22 | @endif -------------------------------------------------------------------------------- /src/views/menus/render.blade.php: -------------------------------------------------------------------------------- 1 | @foreach ($menu->menuItems as $menuItem) 2 | model->link() == Request::url()) ? ' class="active"' : '' }}> 3 | 4 | {{ $menuItem->model->name }} 5 | @if ($menuItem->fmodel == 'Modal') 6 | {{ $menuItem->model->render(); }} 7 | @endif 8 | 9 | @if ($menuItem->childMenu) 10 | 13 | @endif 14 | 15 | @endforeach -------------------------------------------------------------------------------- /src/models/PageModule.php: -------------------------------------------------------------------------------- 1 | belongsTo(App::make('Page')); 12 | } 13 | 14 | /////////////////////////////////////////////// 15 | // Events // 16 | /////////////////////////////////////////////// 17 | public static function boot() 18 | { 19 | parent::boot(); 20 | 21 | static::saving(function($module) { 22 | $module->plaintext = strip_tags($module->html); 23 | }); 24 | } 25 | 26 | } -------------------------------------------------------------------------------- /src/views/page.blade.php: -------------------------------------------------------------------------------- 1 | @extends('core::template') 2 | 3 | @section('title', $page->title) 4 | 5 | @section('meta') 6 | {{ $page->meta_html() }} 7 | @stop 8 | 9 | @section('css') 10 | @if ($page->css) 11 | 14 | @endif 15 | @stop 16 | 17 | @section('js') 18 | @if ($page->js) 19 | 22 | @endif 23 | @stop 24 | 25 | @section('content') 26 | {{ $page->html }} 27 | 28 | @if ($page->modules) 29 | @foreach( $page->modules as $module) 30 | {{ $module->html }} 31 | @endforeach 32 | @endif 33 | @stop 34 | -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- 1 | 2 | 13 | 14 | 15 | ./tests/ 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /public/js/kcfinder/css/index.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2010-2014 KCFinder Project 10 | * @license http://opensource.org/licenses/GPL-3.0 GPLv3 11 | * @license http://opensource.org/licenses/LGPL-3.0 LGPLv3 12 | * @link http://kcfinder.sunhater.com 13 | */ 14 | 15 | namespace kcfinder; 16 | 17 | chdir(".."); 18 | require "core/autoload.php"; 19 | $min = new minifier("css"); 20 | $min->minify("cache/base.css"); 21 | 22 | ?> -------------------------------------------------------------------------------- /public/js/kcfinder/js/index.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2010-2014 KCFinder Project 10 | * @license http://opensource.org/licenses/GPL-3.0 GPLv3 11 | * @license http://opensource.org/licenses/LGPL-3.0 LGPLv3 12 | * @link http://kcfinder.sunhater.com 13 | */ 14 | 15 | namespace kcfinder; 16 | 17 | chdir(".."); 18 | require "core/autoload.php"; 19 | $min = new minifier("js"); 20 | $min->minify("cache/base.js"); 21 | 22 | ?> -------------------------------------------------------------------------------- /src/views/header.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 17 |
-------------------------------------------------------------------------------- /public/js/kcfinder/browse.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2010-2014 KCFinder Project 10 | * @license http://opensource.org/licenses/GPL-3.0 GPLv3 11 | * @license http://opensource.org/licenses/LGPL-3.0 LGPLv3 12 | * @link http://kcfinder.sunhater.com 13 | */ 14 | 15 | require "core/bootstrap.php"; 16 | $browser = "kcfinder\\browser"; // To execute core/bootstrap.php on older 17 | $browser = new $browser(); // PHP versions (even PHP 4) 18 | $browser->action(); 19 | 20 | ?> -------------------------------------------------------------------------------- /public/js/kcfinder/js/040.object.js: -------------------------------------------------------------------------------- 1 | /** This file is part of KCFinder project 2 | * 3 | * @desc Base JavaScript object properties 4 | * @package KCFinder 5 | * @version 3.12 6 | * @author Pavel Tzonkov 7 | * @copyright 2010-2014 KCFinder Project 8 | * @license http://opensource.org/licenses/GPL-3.0 GPLv3 9 | * @license http://opensource.org/licenses/LGPL-3.0 LGPLv3 10 | * @link http://kcfinder.sunhater.com 11 | */ 12 | 13 | var _ = { 14 | opener: {}, 15 | support: {}, 16 | files: [], 17 | clipboard: [], 18 | labels: [], 19 | shows: [], 20 | orders: [], 21 | cms: "", 22 | scrollbarWidth: 20 23 | }; 24 | -------------------------------------------------------------------------------- /public/js/kcfinder/upload.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2010-2014 KCFinder Project 10 | * @license http://opensource.org/licenses/GPL-3.0 GPLv3 11 | * @license http://opensource.org/licenses/LGPL-3.0 LGPLv3 12 | * @link http://kcfinder.sunhater.com 13 | */ 14 | 15 | require "core/bootstrap.php"; 16 | $uploader = "kcfinder\\uploader"; // To execute core/bootstrap.php on older 17 | $uploader = new $uploader(); // PHP versions (even PHP 4) 18 | $uploader->upload(); 19 | 20 | ?> -------------------------------------------------------------------------------- /src/controllers/admin/AdminPageController.php: -------------------------------------------------------------------------------- 1 | with('modules')->find($id); 18 | 19 | $this->data['page'] = $page; 20 | $this->data['changes'] = $page->changes(); 21 | $this->data['action'] = 'edit'; 22 | 23 | return View::make($this->view('add-or-edit'), $this->data); 24 | } 25 | 26 | } -------------------------------------------------------------------------------- /src/migrations/2014_06_23_213856_create_links_table.php: -------------------------------------------------------------------------------- 1 | engine = 'InnoDB'; 17 | 18 | $table->increments('id'); 19 | $table->string('name'); 20 | $table->string('url'); 21 | }); 22 | } 23 | 24 | /** 25 | * Reverse the migrations. 26 | * 27 | * @return void 28 | */ 29 | public function down() 30 | { 31 | Schema::drop('links'); 32 | } 33 | 34 | } 35 | -------------------------------------------------------------------------------- /public/js/kcfinder/conf/upload.htaccess: -------------------------------------------------------------------------------- 1 | 2 | php_flag engine Off 3 | 4 | 5 | php_flag engine Off 6 | 7 | 8 | php_flag engine Off 9 | 10 | 11 | Options -ExecCGI 12 | 13 | 14 | RemoveHandler .cgi .pl .py .pyc .pyo .phtml .php .php3 .php4 .php5 .php6 .pcgi .pcgi3 .pcgi4 .pcgi5 .pchi6 .inc 15 | RemoveType .cgi .pl .py .pyc .pyo .phtml .php .php3 .php4 .php5 .php6 .pcgi .pcgi3 .pcgi4 .pcgi5 .pchi6 .inc 16 | SetHandler None 17 | SetHandler default-handler 18 | 19 | # Remove both lines below if you want to render HTML files from the upload folder 20 | AddType text/plain .html 21 | AddType text/plain .htm 22 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angel/core", 3 | "description": "Angel is a CMS built on top of Laravel.", 4 | "keywords": [ 5 | "angel", 6 | "cms", 7 | "laravel" 8 | ], 9 | "homepage": "https://github.com/JVMartin/angel", 10 | "authors": [ 11 | { 12 | "name": "Jacob Martin", 13 | "email": "jacobm@angelvisiontech.com", 14 | "homepage": "http://jacobvmartin.com" 15 | } 16 | ], 17 | "require": { 18 | "php": ">=5.3.0", 19 | "illuminate/support": "4.1.*", 20 | "mobiledetect/mobiledetectlib": "2.8.3" 21 | }, 22 | "autoload": { 23 | "classmap": [ 24 | "src/commands", 25 | "src/migrations", 26 | "src/controllers", 27 | "src/models" 28 | ], 29 | "psr-0": { 30 | "Angel\\Core\\": "src/" 31 | } 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /public/js/jquery/jquery.throttle-debounce.min.js: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery throttle / debounce - v1.1 - 3/7/2010 3 | * http://benalman.com/projects/jquery-throttle-debounce-plugin/ 4 | * 5 | * Copyright (c) 2010 "Cowboy" Ben Alman 6 | * Dual licensed under the MIT and GPL licenses. 7 | * http://benalman.com/about/license/ 8 | */ 9 | (function(b,c){var $=b.jQuery||b.Cowboy||(b.Cowboy={}),a;$.throttle=a=function(e,f,j,i){var h,d=0;if(typeof f!=="boolean"){i=j;j=f;f=c}function g(){var o=this,m=+new Date()-d,n=arguments;function l(){d=+new Date();j.apply(o,n)}function k(){h=c}if(i&&!h){l()}h&&clearTimeout(h);if(i===c&&m>e){l()}else{if(f!==true){h=setTimeout(i?k:l,i===c?e-m:e)}}}if($.guid){g.guid=j.guid=j.guid||$.guid++}return g};$.debounce=function(d,e,f){return f===c?a(d,e,false):a(d,f,e!==false)}})(this); -------------------------------------------------------------------------------- /src/controllers/PageController.php: -------------------------------------------------------------------------------- 1 | where('url', $url)->first(); 12 | 13 | if (!$page || !$page->is_published()) App::abort(404); 14 | 15 | $this->data['page'] = $page; 16 | 17 | $method = str_replace('-', '_', $url); 18 | if (method_exists($this, $method)) { 19 | return $this->$method($section); 20 | } 21 | 22 | return View::make('core::page', $this->data); 23 | } 24 | 25 | public function page_missing() 26 | { 27 | return Response::make(View::make('core::errors.404', $this->data), 404); 28 | } 29 | 30 | } -------------------------------------------------------------------------------- /src/config/config.php: -------------------------------------------------------------------------------- 1 | 'admin', 8 | 9 | // This is the menu in the admin console. 10 | // Add modules here after installation. 11 | // 'Name' => 'admin uri' 12 | 'menu' => array( 13 | 'Pages' => 'pages', 14 | 'Menus' => 'menus', 15 | 'Links' => 'links', 16 | 'Users' => 'users', 17 | 'Settings' => 'settings' 18 | ), 19 | 20 | // All linkable models must be declared here. 21 | // 'Model Name' => 'admin uri' 22 | 'linkable_models' => array( 23 | 'Page' => 'pages', 24 | 'Link' => 'links', 25 | ) 26 | 27 | ); 28 | 29 | return $config; -------------------------------------------------------------------------------- /src/models/Setting.php: -------------------------------------------------------------------------------- 1 | array( 10 | 'value' => 'Your Company' 11 | ), 12 | 'theme' => array( 13 | 'value' => 'default', 14 | 'arr' => array( 15 | 'default' => 'Default', 16 | 'slate' => 'Slate', 17 | 'darkly' => 'Darkly' 18 | ) 19 | ), 20 | 'stripe' => array( 21 | 'value' => 'test' 22 | ), 23 | ); 24 | } 25 | 26 | public static function currentSettings() { 27 | $settings = static::settings(); 28 | 29 | foreach (static::all() as $setting) { 30 | $settings[$setting->key]['value'] = $setting->value; 31 | } 32 | 33 | return $settings; 34 | } 35 | 36 | } -------------------------------------------------------------------------------- /src/controllers/admin/AdminUserController.php: -------------------------------------------------------------------------------- 1 | validate_custom(); 18 | if (count($errors)) return Redirect::to(admin_uri('users'))->withErrors($errors); 19 | 20 | $user->delete(); 21 | 22 | return Redirect::to(admin_uri('users'))->with('success', ' 23 |

User successfully deleted.

24 |

Undo

25 | '); 26 | } 27 | 28 | } -------------------------------------------------------------------------------- /src/migrations/2014_05_30_235338_create_settings_table.php: -------------------------------------------------------------------------------- 1 | engine = 'InnoDB'; 17 | 18 | $table->string('key')->unique(); 19 | $table->string('value')->nullable(); 20 | $table->timestamps(); // Adds `created_at` and `updated_at` columns 21 | 22 | $table->primary('key'); 23 | }); 24 | } 25 | 26 | /** 27 | * Reverse the migrations. 28 | * 29 | * @return void 30 | */ 31 | public function down() 32 | { 33 | Schema::drop('settings'); 34 | } 35 | 36 | } 37 | -------------------------------------------------------------------------------- /public/js/kcfinder/lang/en.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2010-2014 KCFinder Project 10 | * @license http://opensource.org/licenses/GPL-3.0 GPLv3 11 | * @license http://opensource.org/licenses/LGPL-3.0 LGPLv3 12 | * @link http://kcfinder.sunhater.com 13 | */ 14 | 15 | $lang = array( 16 | '_locale' => "en_US.UTF-8", 17 | '_charset' => "utf-8", 18 | 19 | // Date time formats. See http://www.php.net/manual/en/function.strftime.php 20 | '_dateTimeFull' => "%A, %B %e, %Y %I:%M %p", 21 | '_dateTimeMid' => "%a %b %e %Y %I:%M %p", 22 | '_dateTimeSmall' => "%m/%d/%Y %I:%M %p", 23 | ); 24 | 25 | ?> -------------------------------------------------------------------------------- /public/js/ckeditor/plugins/specialchar/dialogs/lang/_translationstatus.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 2 | For licensing, see LICENSE.md or http://ckeditor.com/license 3 | 4 | cs.js Found: 118 Missing: 0 5 | cy.js Found: 118 Missing: 0 6 | de.js Found: 118 Missing: 0 7 | el.js Found: 16 Missing: 102 8 | eo.js Found: 118 Missing: 0 9 | et.js Found: 31 Missing: 87 10 | fa.js Found: 24 Missing: 94 11 | fi.js Found: 23 Missing: 95 12 | fr.js Found: 118 Missing: 0 13 | hr.js Found: 23 Missing: 95 14 | it.js Found: 118 Missing: 0 15 | nb.js Found: 118 Missing: 0 16 | nl.js Found: 118 Missing: 0 17 | no.js Found: 118 Missing: 0 18 | tr.js Found: 118 Missing: 0 19 | ug.js Found: 39 Missing: 79 20 | zh-cn.js Found: 118 Missing: 0 21 | -------------------------------------------------------------------------------- /src/controllers/admin/AdminSettingController.php: -------------------------------------------------------------------------------- 1 | data); 10 | } 11 | 12 | public function update() 13 | { 14 | $Setting = App::make('Setting'); 15 | 16 | foreach ($Setting::currentSettings() as $key=>$setting) { 17 | if (!Input::exists($key) || Input::get($key) === $setting['value']) continue; 18 | $setting = $Setting::find($key); 19 | if (!$setting) { 20 | $setting = new $Setting; 21 | $setting->key = $key; 22 | } 23 | $setting->value = Input::get($key); 24 | $setting->save(); 25 | } 26 | return Redirect::to(admin_uri('settings'))->with('success', 'Settings updated.'); 27 | } 28 | 29 | } -------------------------------------------------------------------------------- /src/controllers/admin/AdminMenuItemController.php: -------------------------------------------------------------------------------- 1 | with('success', ' 16 |

Link created.

17 | '); 18 | } 19 | 20 | public function edit($id) 21 | { 22 | $Menu = App::make('Menu'); 23 | $menus = $Menu::all(); 24 | 25 | $menu_list = array(''=>'None'); 26 | foreach ($menus as $menu) { 27 | $menu_list[$menu->id] = $menu->name; 28 | } 29 | $this->data['menu_list'] = $menu_list; 30 | 31 | return parent::edit($id); 32 | } 33 | } -------------------------------------------------------------------------------- /src/views/admin/pages/module.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 5 | 8 | 9 |

Module

10 |

11 | 12 |

13 | 16 |
-------------------------------------------------------------------------------- /src/views/admin/menus/items/add-or-edit.blade.php: -------------------------------------------------------------------------------- 1 | @extends('core::admin.template') 2 | 3 | @section('title', 'Edit Menu Item') 4 | 5 | @section('content') 6 |

Edit Menu Item

7 |
8 |
9 |
10 | {{ Form::model($item) }} 11 | 12 | 13 | 14 | 17 | 22 | 23 | 24 |
15 | {{ Form::label('child_menu_id', 'Child Menu') }} 16 | 18 |
19 | {{ Form::select('child_menu_id', $menu_list, null, array('class' => 'form-control', 'autocomplete'=>'off')) }} 20 |
21 |
25 |
26 | 27 |
28 | {{ Form::close() }} 29 |
30 |
31 | @stop -------------------------------------------------------------------------------- /src/migrations/2014_06_02_231541_create_changes_table.php: -------------------------------------------------------------------------------- 1 | engine = 'InnoDB'; 17 | 18 | $table->increments('id'); 19 | $table->integer('user_id')->unsigned(); 20 | $table->string('fmodel'); 21 | $table->integer('fid')->unsigned(); 22 | $table->text('changes'); 23 | $table->timestamp('created_at'); 24 | 25 | $table->foreign('user_id')->references('id')->on('users'); 26 | }); 27 | } 28 | 29 | /** 30 | * Reverse the migrations. 31 | * 32 | * @return void 33 | */ 34 | public function down() 35 | { 36 | Schema::drop('changes'); 37 | } 38 | 39 | } -------------------------------------------------------------------------------- /src/migrations/2014_06_03_160140_create_menus_table.php: -------------------------------------------------------------------------------- 1 | engine = 'InnoDB'; 17 | 18 | $table->increments('id'); 19 | $table->string('name'); 20 | $table->timestamps(); // Adds `created_at` and `updated_at` columns 21 | }); 22 | 23 | // Create the main menu 24 | $Menu = App::make('Menu'); 25 | $menu = new $Menu; 26 | $menu->skipEvents = true; 27 | $menu->name = 'Main'; 28 | $menu->save(); 29 | } 30 | 31 | /** 32 | * Reverse the migrations. 33 | * 34 | * @return void 35 | */ 36 | public function down() 37 | { 38 | Schema::drop('menus'); 39 | } 40 | 41 | } -------------------------------------------------------------------------------- /public/js/kcfinder/js/020.jquery.rightClick.js: -------------------------------------------------------------------------------- 1 | /** This file is part of KCFinder project 2 | * 3 | * @desc Right Click jQuery Plugin 4 | * @package KCFinder 5 | * @version 3.12 6 | * @author Pavel Tzonkov 7 | * @copyright 2010-2014 KCFinder Project 8 | * @license http://opensource.org/licenses/GPL-3.0 GPLv3 9 | * @license http://opensource.org/licenses/LGPL-3.0 LGPLv3 10 | * @link http://kcfinder.sunhater.com 11 | */ 12 | 13 | (function($) { 14 | $.fn.rightClick = function(func) { 15 | var events = "contextmenu rightclick"; 16 | $(this).each(function() { 17 | $(this).unbind(events).bind(events, function(e) { 18 | e.preventDefault(); 19 | $.clearSelection(); 20 | if ($.isFunction(func)) 21 | func(this, e); 22 | }); 23 | }); 24 | return $(this); 25 | }; 26 | })(jQuery); -------------------------------------------------------------------------------- /public/js/kcfinder/core/types/type_img.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2010-2014 KCFinder Project 10 | * @license http://opensource.org/licenses/GPL-3.0 GPLv3 11 | * @license http://opensource.org/licenses/LGPL-3.0 LGPLv3 12 | * @link http://kcfinder.sunhater.com 13 | */ 14 | 15 | namespace kcfinder; 16 | 17 | class type_img { 18 | 19 | public function checkFile($file, array $config) { 20 | 21 | $driver = isset($config['imageDriversPriority']) 22 | ? image::getDriver(explode(" ", $config['imageDriversPriority'])) : "gd"; 23 | 24 | $img = image::factory($driver, $file); 25 | 26 | if ($img->initError) 27 | return "Unknown image format/encoding."; 28 | 29 | return true; 30 | } 31 | } 32 | 33 | ?> -------------------------------------------------------------------------------- /src/models/Link.php: -------------------------------------------------------------------------------- 1 | 'required', 19 | 'url' => 'required' 20 | ); 21 | } 22 | 23 | /////////////////////////////////////////////// 24 | // Menu Linkable // 25 | /////////////////////////////////////////////// 26 | public function link() 27 | { 28 | return $this->url; 29 | } 30 | public function link_edit() 31 | { 32 | return admin_url('links/edit/' . $this->id); 33 | } 34 | public function search($terms) 35 | { 36 | return static::where(function($query) use ($terms) { 37 | foreach ($terms as $term) { 38 | $query->orWhere('name', 'like', $term); 39 | $query->orWhere('url', 'like', $term); 40 | } 41 | })->get(); 42 | } 43 | } -------------------------------------------------------------------------------- /src/views/emails/template.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 20 | 21 |
12 | 13 | 14 | 17 | 18 |
15 | @yield('content') 16 |
19 |
22 | 23 | -------------------------------------------------------------------------------- /public/js/ckeditor/plugins/a11yhelp/dialogs/lang/_translationstatus.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 2 | For licensing, see LICENSE.md or http://ckeditor.com/license 3 | 4 | cs.js Found: 30 Missing: 0 5 | cy.js Found: 30 Missing: 0 6 | da.js Found: 12 Missing: 18 7 | de.js Found: 30 Missing: 0 8 | el.js Found: 25 Missing: 5 9 | eo.js Found: 30 Missing: 0 10 | fa.js Found: 30 Missing: 0 11 | fi.js Found: 30 Missing: 0 12 | fr.js Found: 30 Missing: 0 13 | gu.js Found: 12 Missing: 18 14 | he.js Found: 30 Missing: 0 15 | it.js Found: 30 Missing: 0 16 | mk.js Found: 5 Missing: 25 17 | nb.js Found: 30 Missing: 0 18 | nl.js Found: 30 Missing: 0 19 | no.js Found: 30 Missing: 0 20 | pt-br.js Found: 30 Missing: 0 21 | ro.js Found: 6 Missing: 24 22 | tr.js Found: 30 Missing: 0 23 | ug.js Found: 27 Missing: 3 24 | vi.js Found: 6 Missing: 24 25 | zh-cn.js Found: 30 Missing: 0 26 | -------------------------------------------------------------------------------- /src/filters.php: -------------------------------------------------------------------------------- 1 | withErrors('You must be signed out to view that page.'); 5 | }); 6 | 7 | Route::filter('auth', function () { 8 | if (Auth::guest()) return Redirect::guest(admin_uri())->withErrors('You must be signed in to view that page.'); 9 | }); 10 | 11 | Route::filter('admin', function () { 12 | if (Auth::guest() || !Auth::user()->is_admin()) return Redirect::guest(admin_uri())->withErrors('You must be signed in as an administrator to view that page.'); 13 | }); 14 | 15 | Route::filter('superadmin', function () { 16 | if (Auth::guest() || !Auth::user()->is_superadmin()) { 17 | return Redirect::to(admin_uri())->withErrors('You must be signed in as a super administrator to view that page.'); 18 | } 19 | }); 20 | 21 | Route::filter('nonadmin', function () { 22 | if (Auth::check() && Auth::user()->is_admin()) return Redirect::to(admin_uri())->withErrors('Only non-administrators can view that page.'); 23 | }); -------------------------------------------------------------------------------- /public/js/jquery/fancybox/helpers/jquery.fancybox-thumbs.css: -------------------------------------------------------------------------------- 1 | #fancybox-thumbs { 2 | position: fixed; 3 | left: 0; 4 | width: 100%; 5 | overflow: hidden; 6 | z-index: 8050; 7 | } 8 | 9 | #fancybox-thumbs.bottom { 10 | bottom: 2px; 11 | } 12 | 13 | #fancybox-thumbs.top { 14 | top: 2px; 15 | } 16 | 17 | #fancybox-thumbs ul { 18 | position: relative; 19 | list-style: none; 20 | margin: 0; 21 | padding: 0; 22 | } 23 | 24 | #fancybox-thumbs ul li { 25 | float: left; 26 | padding: 1px; 27 | opacity: 0.5; 28 | } 29 | 30 | #fancybox-thumbs ul li.active { 31 | opacity: 0.75; 32 | padding: 0; 33 | border: 1px solid #fff; 34 | } 35 | 36 | #fancybox-thumbs ul li:hover { 37 | opacity: 1; 38 | } 39 | 40 | #fancybox-thumbs ul li a { 41 | display: block; 42 | position: relative; 43 | overflow: hidden; 44 | border: 1px solid #222; 45 | background: #111; 46 | outline: none; 47 | } 48 | 49 | #fancybox-thumbs ul li img { 50 | display: block; 51 | position: relative; 52 | border: 0; 53 | padding: 0; 54 | max-width: none; 55 | } -------------------------------------------------------------------------------- /src/views/admin/header.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 30 |
-------------------------------------------------------------------------------- /public/js/ckeditor/plugins/wsc/README.md: -------------------------------------------------------------------------------- 1 | CKEditor WebSpellChecker Plugin 2 | =============================== 3 | 4 | This plugin brings Web Spell Checker (WSC) into CKEditor. 5 | 6 | WSC is "installation-less", using the web-services of [WebSpellChecker.net](http://www.webspellchecker.net/). It's an out of the box solution. 7 | 8 | Installation 9 | ------------ 10 | 11 | 1. Clone/copy this repository contents in a new "plugins/wsc" folder in your CKEditor installation. 12 | 2. Enable the "wsc" plugin in the CKEditor configuration file (config.js): 13 | 14 | config.extraPlugins = 'wsc'; 15 | 16 | That's all. WSC will appear on the editor toolbar and will be ready to use. 17 | 18 | License 19 | ------- 20 | 21 | Licensed under the terms of any of the following licenses at your choice: [GPL](http://www.gnu.org/licenses/gpl.html), [LGPL](http://www.gnu.org/licenses/lgpl.html) and [MPL](http://www.mozilla.org/MPL/MPL-1.1.html). 22 | 23 | See LICENSE.md for more information. 24 | 25 | Developed in cooperation with [WebSpellChecker.net](http://www.webspellchecker.net/). 26 | -------------------------------------------------------------------------------- /public/js/ckeditor/plugins/scayt/README.md: -------------------------------------------------------------------------------- 1 | CKEditor SCAYT Plugin 2 | ===================== 3 | 4 | This plugin brings Spell Check As You Type (SCAYT) into up to CKEditor 4+. 5 | 6 | SCAYT is a "installation-less", using the web-services of [WebSpellChecker.net](http://www.webspellchecker.net/). It's an out of the box solution. 7 | 8 | Installation 9 | ------------ 10 | 11 | 1. Clone/copy this repository contents in a new "plugins/scayt" folder in your CKEditor installation. 12 | 2. Enable the "scayt" plugin in the CKEditor configuration file (config.js): 13 | 14 | config.extraPlugins = 'scayt'; 15 | 16 | That's all. SCAYT will appear on the editor toolbar and will be ready to use. 17 | 18 | License 19 | ------- 20 | 21 | Licensed under the terms of any of the following licenses at your choice: [GPL](http://www.gnu.org/licenses/gpl.html), [LGPL](http://www.gnu.org/licenses/lgpl.html) and [MPL](http://www.mozilla.org/MPL/MPL-1.1.html). 22 | 23 | See LICENSE.md for more information. 24 | 25 | Developed in cooperation with [WebSpellChecker.net](http://www.webspellchecker.net/). 26 | -------------------------------------------------------------------------------- /src/views/admin/signin.blade.php: -------------------------------------------------------------------------------- 1 | @extends('core::admin.template') 2 | 3 | @section('title', 'Sign In') 4 | 5 | @section('content') 6 |
7 |
8 | {{ Form::open(array('role'=>'form')) }} 9 |

Sign In

10 |
11 | {{ Form::label('loguser', 'Username or Email', array('class'=>'sr-only')) }} 12 | {{ Form::text('loguser', null, array('class'=>'form-control', 'placeholder'=>'Username or Email', 'autofocus')) }} 13 |
14 |
15 | {{ Form::label('logpass', 'Password', array('class'=>'sr-only')) }} 16 | {{ Form::password('logpass', array('class'=>'form-control', 'placeholder'=>'Password')) }} 17 |
18 |
19 | 23 |
24 |

25 | 26 |

27 | {{ Form::close() }} 28 |
29 |
30 | @stop -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 Jacob Martin 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /src/migrations/2014_06_02_230608_create_pages_modules_table.php: -------------------------------------------------------------------------------- 1 | engine = 'InnoDB'; 17 | 18 | $table->increments('id'); 19 | $table->integer('page_id')->unsigned(); 20 | $table->integer('number')->unsigned(); 21 | $table->string('name'); 22 | $table->text('html'); 23 | $table->text('plaintext'); 24 | $table->timestamps(); // Adds `created_at` and `updated_at` columns 25 | 26 | $table->foreign('page_id')->references('id')->on('pages')->onDelete('cascade'); 27 | }); 28 | 29 | if (ToolBelt::mysql_greater('5.6.4')) { 30 | DB::statement('ALTER TABLE `pages_modules` ADD FULLTEXT search(`name`, `plaintext`)'); 31 | } 32 | } 33 | 34 | /** 35 | * Reverse the migrations. 36 | * 37 | * @return void 38 | */ 39 | public function down() 40 | { 41 | Schema::drop('pages_modules'); 42 | } 43 | 44 | } -------------------------------------------------------------------------------- /public/js/kcfinder/core/autoload.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2010-2014 KCFinder Project 10 | * @license http://opensource.org/licenses/GPL-3.0 GPLv3 11 | * @license http://opensource.org/licenses/LGPL-3.0 LGPLv3 12 | * @link http://kcfinder.sunhater.com 13 | */ 14 | 15 | spl_autoload_register(function($path) { 16 | $path = explode("\\", $path); 17 | 18 | if (count($path) == 1) 19 | return; 20 | 21 | list($ns, $class) = $path; 22 | 23 | if ($ns == "kcfinder") { 24 | 25 | if ($class == "uploader") 26 | require "core/class/uploader.php"; 27 | elseif ($class == "browser") 28 | require "core/class/browser.php"; 29 | elseif ($class == "minifier") 30 | require "core/class/minifier.php"; 31 | 32 | elseif (file_exists("core/types/$class.php")) 33 | require "core/types/$class.php"; 34 | elseif (file_exists("lib/class_$class.php")) 35 | require "lib/class_$class.php"; 36 | elseif (file_exists("lib/helper_$class.php")) 37 | require "lib/helper_$class.php"; 38 | } 39 | }); 40 | 41 | ?> -------------------------------------------------------------------------------- /public/js/kcfinder/js_localize.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2010-2014 KCFinder Project 10 | * @license http://opensource.org/licenses/GPL-3.0 GPLv3 11 | * @license http://opensource.org/licenses/LGPL-3.0 LGPLv3 12 | * @link http://kcfinder.sunhater.com 13 | */ 14 | 15 | namespace kcfinder; 16 | require "core/autoload.php"; 17 | 18 | if (!isset($_GET['lng']) || ($_GET['lng'] == 'en') || 19 | ($_GET['lng'] != basename($_GET['lng'])) || 20 | !is_file("lang/" . $_GET['lng'] . ".php") 21 | ) { 22 | header("Content-Type: text/javascript"); 23 | die; 24 | } 25 | 26 | $file = "lang/" . $_GET['lng'] . ".php"; 27 | $mtime = @filemtime($file); 28 | 29 | if ($mtime) 30 | httpCache::checkMTime($mtime, "Content-Type: text/javascript"); 31 | 32 | require $file; 33 | header("Content-Type: text/javascript"); 34 | 35 | echo "_.labels={"; 36 | 37 | $i = 0; 38 | foreach ($lang as $english => $native) { 39 | if (substr($english, 0, 1) != "_") { 40 | echo "'" . text::jsValue($english) . "':\"" . text::jsValue($native) . "\""; 41 | if (++$i < count($lang)) 42 | echo ","; 43 | } 44 | } 45 | 46 | echo "}"; 47 | 48 | ?> 49 | -------------------------------------------------------------------------------- /src/commands/AngelUpdate.php: -------------------------------------------------------------------------------- 1 | exec('composer update --prefer-dist'); 60 | $this->exec('php artisan angel:assets'); 61 | } 62 | 63 | private function exec($command) 64 | { 65 | $this->info('Executing: ' . $command); 66 | echo shell_exec($command); 67 | } 68 | 69 | } 70 | -------------------------------------------------------------------------------- /src/views/admin/menus/add-or-edit.blade.php: -------------------------------------------------------------------------------- 1 | @extends('core::admin.template') 2 | 3 | @section('title', ucfirst($action).' Menu') 4 | 5 | @section('content') 6 |

{{ ucfirst($action) }} Menu

7 | @if ($action == 'edit') 8 | {{ Form::open(array('role'=>'form', 9 | 'url'=>admin_uri('menus/delete/'.$menu->id), 10 | 'class'=>'deleteForm', 11 | 'data-confirm'=>'Delete this menu forever?')) }} 12 | 13 | {{ Form::close() }} 14 | @endif 15 |
16 |
17 | @if ($action == 'edit') 18 | {{ Form::model($menu, array('role'=>'form')) }} 19 | @elseif ($action == 'add') 20 | {{ Form::open(array('role'=>'form')) }} 21 | @endif 22 | 23 | 24 | 25 | 29 | 34 | 35 | 36 |
26 | * 27 | {{ Form::label('name', 'Name') }} 28 | 30 |
31 | {{ Form::text('name', null, array('class'=>'form-control', 'placeholder'=>'Name', 'required')) }} 32 |
33 |
37 |
38 | 39 |
40 | {{ Form::close() }} 41 |
42 |
43 | @stop -------------------------------------------------------------------------------- /src/migrations/2014_06_03_160217_create_menus_items_table.php: -------------------------------------------------------------------------------- 1 | engine = 'InnoDB'; 17 | 18 | $table->increments('id'); 19 | $table->integer('order')->unsigned(); 20 | $table->integer('menu_id')->unsigned(); 21 | $table->integer('child_menu_id')->unsigned()->nullable(); 22 | $table->string('fmodel'); 23 | $table->integer('fid')->unsigned(); 24 | $table->timestamps(); // Adds `created_at` and `updated_at` columns 25 | 26 | $table->foreign('menu_id')->references('id')->on('menus')->onDelete('cascade'); 27 | $table->foreign('child_menu_id')->references('id')->on('menus'); 28 | }); 29 | 30 | $MenuItem = App::make('MenuItem'); 31 | $menuItem = new $MenuItem; 32 | $menuItem->skipEvents = true; 33 | $menuItem->menu_id = 1; 34 | $menuItem->order = 0; 35 | $menuItem->fmodel = 'Page'; 36 | $menuItem->fid = 1; 37 | $menuItem->save(); 38 | } 39 | 40 | /** 41 | * Reverse the migrations. 42 | * 43 | * @return void 44 | */ 45 | public function down() 46 | { 47 | Schema::drop('menus_items'); 48 | } 49 | 50 | } -------------------------------------------------------------------------------- /src/migrations/2014_05_30_210037_create_users_table.php: -------------------------------------------------------------------------------- 1 | engine = 'InnoDB'; 17 | 18 | $table->increments('id'); 19 | $table->string('type'); 20 | $table->string('email'); 21 | $table->string('username'); 22 | $table->string('first_name'); 23 | $table->string('last_name'); 24 | $table->string('password'); 25 | $table->string('remember_token')->nullable(); 26 | $table->timestamps(); // Adds `created_at` and `updated_at` columns 27 | 28 | $table->unique('email'); 29 | $table->unique('username'); 30 | }); 31 | 32 | // Create the admin 33 | $user = new User; 34 | $user->skipEvents = true; 35 | $user->type = 'superadmin'; 36 | $user->username = 'avadmin'; 37 | $user->first_name = 'Angel'; 38 | $user->last_name = 'Vision'; 39 | $user->email = 'nobody@angelvisiontech.com'; 40 | $user->password = Hash::make('password'); 41 | $user->save(); 42 | } 43 | 44 | /** 45 | * Reverse the migrations. 46 | * 47 | * @return void 48 | */ 49 | public function down() 50 | { 51 | Schema::drop('users'); 52 | } 53 | 54 | } 55 | -------------------------------------------------------------------------------- /src/views/admin/template.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Admin | @yield('title') 8 | 9 | @if ($settings['theme']['value'] == 'default') 10 | {{ HTML::style('packages/angel/core/bootstrap/bootstrap.min.css') }} 11 | @elseif ($settings['theme']['value'] == 'slate') 12 | {{ HTML::style('packages/angel/core/bootstrap/bootstrap-slate.min.css') }} 13 | {{ HTML::style('packages/angel/core/bootstrap/bootstrap-glyphicons.css') }} 14 | @elseif ($settings['theme']['value'] == 'darkly') 15 | {{ HTML::style('packages/angel/core/bootstrap/bootstrap-darkly.min.css') }} 16 | {{ HTML::style('packages/angel/core/bootstrap/bootstrap-glyphicons.css') }} 17 | @endif 18 | {{ HTML::style('packages/angel/core/master.css') }} 19 | @yield('css') 20 | 21 | 22 |
23 | @include('core::admin.header') 24 | @include('core::admin.alerts') 25 | @yield('content') 26 |
27 | {{ HTML::script('packages/angel/core/js/jquery/jquery.min.js') }} 28 | {{ HTML::script('packages/angel/core/bootstrap/bootstrap.min.js') }} 29 | 35 | {{ HTML::script('packages/angel/core/master.js') }} 36 | @yield('js') 37 | 38 | -------------------------------------------------------------------------------- /public/js/ckeditor/README.md: -------------------------------------------------------------------------------- 1 | CKEditor 4 2 | ========== 3 | 4 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 5 | http://ckeditor.com - See LICENSE.md for license information. 6 | 7 | CKEditor is a text editor to be used inside web pages. It's not a replacement 8 | for desktop text editors like Word or OpenOffice, but a component to be used as 9 | part of web applications and websites. 10 | 11 | ## Documentation 12 | 13 | The full editor documentation is available online at the following address: 14 | http://docs.ckeditor.com 15 | 16 | ## Installation 17 | 18 | Installing CKEditor is an easy task. Just follow these simple steps: 19 | 20 | 1. **Download** the latest version from the CKEditor website: 21 | http://ckeditor.com. You should have already completed this step, but be 22 | sure you have the very latest version. 23 | 2. **Extract** (decompress) the downloaded file into the root of your website. 24 | 25 | **Note:** CKEditor is by default installed in the `ckeditor` folder. You can 26 | place the files in whichever you want though. 27 | 28 | ## Checking Your Installation 29 | 30 | The editor comes with a few sample pages that can be used to verify that 31 | installation proceeded properly. Take a look at the `samples` directory. 32 | 33 | To test your installation, just call the following page at your website: 34 | 35 | http:////samples/index.html 36 | 37 | For example: 38 | 39 | http://www.example.com/ckeditor/samples/index.html 40 | -------------------------------------------------------------------------------- /src/controllers/UserController.php: -------------------------------------------------------------------------------- 1 | data); 10 | } 11 | 12 | public function signout() 13 | { 14 | if (Auth::guest()) return Redirect::to(admin_uri()); 15 | Auth::logout(); 16 | return Redirect::to(admin_uri())->with('success', 'You have been signed out.'); 17 | } 18 | 19 | public function attempt_signin() 20 | { 21 | Auth::logout(); 22 | 23 | $rules = array( 24 | 'loguser' => 'required', 25 | 'logpass' => 'required' 26 | ); 27 | 28 | $validator = Validator::make(Input::all(), $rules); 29 | 30 | if ($validator->fails()) { 31 | return Redirect::to(admin_uri())->withInput()->withErrors($validator); 32 | } 33 | 34 | // Users can use either their username or their email to login, so 35 | // we'll have to do 2 checks. 36 | $usernameCheck = array( 37 | 'username' => Input::get('loguser'), 38 | 'password' => Input::get('logpass') 39 | ); 40 | $emailCheck = array( 41 | 'email' => Input::get('loguser'), 42 | 'password' => Input::get('logpass') 43 | ); 44 | 45 | if (Auth::attempt($usernameCheck, Input::get('remember')) || 46 | Auth::attempt($emailCheck, Input::get('remember'))) { 47 | return Redirect::intended(admin_uri()); 48 | } 49 | 50 | return Redirect::to(admin_uri())->withInput()->withErrors('Login attempt failed.'); 51 | } 52 | 53 | } -------------------------------------------------------------------------------- /src/models/LinkableModel.php: -------------------------------------------------------------------------------- 1 | where('fmodel', short_name($model)) 17 | ->where('fid', $model->id) 18 | ->delete(); 19 | }); 20 | } 21 | 22 | /////////////////////////////////////////////// 23 | // Menu Linkable // 24 | /////////////////////////////////////////////// 25 | /** 26 | * URL of where to view this model in the front-end. 27 | * 28 | * @return string - The URL. 29 | */ 30 | abstract public function link(); 31 | 32 | /** 33 | * URL of where to edit this model in the admin panel. 34 | * 35 | * @return string - The URL. 36 | */ 37 | abstract public function link_edit(); 38 | 39 | /** 40 | * Fetch all models that match any of a set of search terms. 41 | * 42 | * @param array $terms - An array of search terms, already formatted 43 | * like this: array('%apple%', '%orange%') 44 | * @return \Illuminate\Database\Eloquent\Collection - A collection of models; the search results. 45 | */ 46 | abstract public function search($terms); 47 | } -------------------------------------------------------------------------------- /public/js/ckeditor/plugins/wsc/dialogs/wsc.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | html, body 7 | { 8 | background-color: transparent; 9 | margin: 0px; 10 | padding: 0px; 11 | } 12 | 13 | body 14 | { 15 | padding: 10px; 16 | } 17 | 18 | body, td, input, select, textarea 19 | { 20 | font-size: 11px; 21 | font-family: 'Microsoft Sans Serif' , Arial, Helvetica, Verdana; 22 | } 23 | 24 | .midtext 25 | { 26 | padding:0px; 27 | margin:10px; 28 | } 29 | 30 | .midtext p 31 | { 32 | padding:0px; 33 | margin:10px; 34 | } 35 | 36 | .Button 37 | { 38 | border: #737357 1px solid; 39 | color: #3b3b1f; 40 | background-color: #c7c78f; 41 | } 42 | 43 | .PopupTabArea 44 | { 45 | color: #737357; 46 | background-color: #e3e3c7; 47 | } 48 | 49 | .PopupTitleBorder 50 | { 51 | border-bottom: #d5d59d 1px solid; 52 | } 53 | .PopupTabEmptyArea 54 | { 55 | padding-left: 10px; 56 | border-bottom: #d5d59d 1px solid; 57 | } 58 | 59 | .PopupTab, .PopupTabSelected 60 | { 61 | border-right: #d5d59d 1px solid; 62 | border-top: #d5d59d 1px solid; 63 | border-left: #d5d59d 1px solid; 64 | padding: 3px 5px 3px 5px; 65 | color: #737357; 66 | } 67 | 68 | .PopupTab 69 | { 70 | margin-top: 1px; 71 | border-bottom: #d5d59d 1px solid; 72 | cursor: pointer; 73 | } 74 | 75 | .PopupTabSelected 76 | { 77 | font-weight: bold; 78 | cursor: default; 79 | padding-top: 4px; 80 | border-bottom: #f1f1e3 1px solid; 81 | background-color: #f1f1e3; 82 | } 83 | -------------------------------------------------------------------------------- /public/js/ckeditor/plugins/wsc/LICENSE.md: -------------------------------------------------------------------------------- 1 | Software License Agreement 2 | ========================== 3 | 4 | **CKEditor WSC Plugin** 5 | Copyright © 2012, [CKSource](http://cksource.com) - Frederico Knabben. All rights reserved. 6 | 7 | Licensed under the terms of any of the following licenses at your choice: 8 | 9 | * GNU General Public License Version 2 or later (the "GPL"): 10 | http://www.gnu.org/licenses/gpl.html 11 | 12 | * GNU Lesser General Public License Version 2.1 or later (the "LGPL"): 13 | http://www.gnu.org/licenses/lgpl.html 14 | 15 | * Mozilla Public License Version 1.1 or later (the "MPL"): 16 | http://www.mozilla.org/MPL/MPL-1.1.html 17 | 18 | You are not required to, but if you want to explicitly declare the license you have chosen to be bound to when using, reproducing, modifying and distributing this software, just include a text file titled "legal.txt" in your version of this software, indicating your license choice. 19 | 20 | Sources of Intellectual Property Included in this plugin 21 | -------------------------------------------------------- 22 | 23 | Where not otherwise indicated, all plugin content is authored by CKSource engineers and consists of CKSource-owned intellectual property. In some specific instances, the plugin will incorporate work done by developers outside of CKSource with their express permission. 24 | 25 | Trademarks 26 | ---------- 27 | 28 | CKEditor is a trademark of CKSource - Frederico Knabben. All other brand and product names are trademarks, registered trademarks or service marks of their respective holders. 29 | -------------------------------------------------------------------------------- /public/js/ckeditor/plugins/scayt/LICENSE.md: -------------------------------------------------------------------------------- 1 | Software License Agreement 2 | ========================== 3 | 4 | **CKEditor SCAYT Plugin** 5 | Copyright © 2012, [CKSource](http://cksource.com) - Frederico Knabben. All rights reserved. 6 | 7 | Licensed under the terms of any of the following licenses at your choice: 8 | 9 | * GNU General Public License Version 2 or later (the "GPL"): 10 | http://www.gnu.org/licenses/gpl.html 11 | 12 | * GNU Lesser General Public License Version 2.1 or later (the "LGPL"): 13 | http://www.gnu.org/licenses/lgpl.html 14 | 15 | * Mozilla Public License Version 1.1 or later (the "MPL"): 16 | http://www.mozilla.org/MPL/MPL-1.1.html 17 | 18 | You are not required to, but if you want to explicitly declare the license you have chosen to be bound to when using, reproducing, modifying and distributing this software, just include a text file titled "legal.txt" in your version of this software, indicating your license choice. 19 | 20 | Sources of Intellectual Property Included in this plugin 21 | -------------------------------------------------------- 22 | 23 | Where not otherwise indicated, all plugin content is authored by CKSource engineers and consists of CKSource-owned intellectual property. In some specific instances, the plugin will incorporate work done by developers outside of CKSource with their express permission. 24 | 25 | Trademarks 26 | ---------- 27 | 28 | CKEditor is a trademark of CKSource - Frederico Knabben. All other brand and product names are trademarks, registered trademarks or service marks of their respective holders. 29 | -------------------------------------------------------------------------------- /public/js/ckeditor/plugins/scayt/dialogs/toolbar.css: -------------------------------------------------------------------------------- 1 | a 2 | { 3 | text-decoration:none; 4 | padding: 2px 4px 4px 6px; 5 | display : block; 6 | border-width: 1px; 7 | border-style: solid; 8 | margin : 0px; 9 | } 10 | 11 | a.cke_scayt_toogle:hover, 12 | a.cke_scayt_toogle:focus, 13 | a.cke_scayt_toogle:active 14 | { 15 | border-color: #316ac5; 16 | background-color: #dff1ff; 17 | color : #000; 18 | cursor: pointer; 19 | margin : 0px; 20 | } 21 | a.cke_scayt_toogle { 22 | color : #316ac5; 23 | border-color: #fff; 24 | } 25 | .scayt_enabled a.cke_scayt_item { 26 | color : #316ac5; 27 | border-color: #fff; 28 | margin : 0px; 29 | } 30 | .scayt_disabled a.cke_scayt_item { 31 | color : gray; 32 | border-color : #fff; 33 | } 34 | .scayt_enabled a.cke_scayt_item:hover, 35 | .scayt_enabled a.cke_scayt_item:focus, 36 | .scayt_enabled a.cke_scayt_item:active 37 | { 38 | border-color: #316ac5; 39 | background-color: #dff1ff; 40 | color : #000; 41 | cursor: pointer; 42 | } 43 | .scayt_disabled a.cke_scayt_item:hover, 44 | .scayt_disabled a.cke_scayt_item:focus, 45 | .scayt_disabled a.cke_scayt_item:active 46 | { 47 | border-color: gray; 48 | background-color: #dff1ff; 49 | color : gray; 50 | cursor: no-drop; 51 | } 52 | .cke_scayt_set_on, .cke_scayt_set_off 53 | { 54 | display: none; 55 | } 56 | .scayt_enabled .cke_scayt_set_on 57 | { 58 | display: none; 59 | } 60 | .scayt_disabled .cke_scayt_set_on 61 | { 62 | display: inline; 63 | } 64 | .scayt_disabled .cke_scayt_set_off 65 | { 66 | display: none; 67 | } 68 | .scayt_enabled .cke_scayt_set_off 69 | { 70 | display: inline; 71 | } 72 | -------------------------------------------------------------------------------- /public/js/kcfinder/lib/helper_text.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2010-2014 KCFinder Project 10 | * @license http://opensource.org/licenses/GPL-3.0 GPLv3 11 | * @license http://opensource.org/licenses/LGPL-3.0 LGPLv3 12 | * @link http://kcfinder.sunhater.com 13 | */ 14 | 15 | namespace kcfinder; 16 | 17 | class text { 18 | 19 | /** Replace repeated white spaces to single space 20 | * @param string $string 21 | * @return string */ 22 | 23 | static function clearWhitespaces($string) { 24 | return trim(preg_replace('/\s+/s', " ", $string)); 25 | } 26 | 27 | /** Normalize the string for HTML attribute value 28 | * @param string $string 29 | * @return string */ 30 | 31 | static function htmlValue($string) { 32 | return 33 | str_replace('"', """, 34 | str_replace("'", ''', 35 | str_replace('<', '<', 36 | str_replace('&', "&", 37 | $string)))); 38 | } 39 | 40 | /** Normalize the string for JavaScript string value 41 | * @param string $string 42 | * @return string */ 43 | 44 | static function jsValue($string) { 45 | return 46 | preg_replace('/\r?\n/', "\\n", 47 | str_replace('"', "\\\"", 48 | str_replace("'", "\\'", 49 | str_replace("\\", "\\\\", 50 | $string)))); 51 | } 52 | 53 | } 54 | 55 | ?> -------------------------------------------------------------------------------- /public/js/ckeditor/plugins/about/dialogs/about.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.dialog.add("about",function(a){var a=a.lang.about,b=CKEDITOR.plugins.get("about").path+"dialogs/"+(CKEDITOR.env.hidpi?"hidpi/":"")+"logo_ckeditor.png";return{title:CKEDITOR.env.ie?a.dlgTitle:a.title,minWidth:390,minHeight:230,contents:[{id:"tab1",label:"",title:"",expand:!0,padding:0,elements:[{type:"html",html:'

CKEditor '+CKEDITOR.version+" (revision "+CKEDITOR.revision+')
http://ckeditor.com

'+a.help.replace("$1",''+ 7 | a.userGuide+"")+"

"+a.moreInfo+'
http://ckeditor.com/about/license

'+a.copy.replace("$1",'CKSource - Frederico Knabben')+"

"}]}],buttons:[CKEDITOR.dialog.cancelButton]}}); -------------------------------------------------------------------------------- /public/js/kcfinder/core/types/type_mime.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2010-2014 KCFinder Project 10 | * @license http://opensource.org/licenses/GPL-3.0 GPLv3 11 | * @license http://opensource.org/licenses/LGPL-3.0 LGPLv3 12 | * @link http://kcfinder.sunhater.com 13 | */ 14 | 15 | namespace kcfinder; 16 | 17 | class type_mime { 18 | 19 | public function checkFile($file, array $config) { 20 | if (!class_exists("finfo")) 21 | return "Fileinfo PECL extension is missing."; 22 | 23 | if (!isset($config['params'])) 24 | return "Undefined MIME types."; 25 | 26 | $finfo = strlen($config['mime_magic']) 27 | ? new \finfo(FILEINFO_MIME, $config['mime_magic']) 28 | : new \finfo(FILEINFO_MIME); 29 | if (!$finfo) 30 | return "Opening fileinfo database failed."; 31 | 32 | $type = $finfo->file($file); 33 | $type = substr($type, 0, strrpos($type, ";")); 34 | 35 | $mimes = $config['params']; 36 | if (substr($mimes, 0, 1) == "!") { 37 | $mimes = trim(substr($mimes, 1)); 38 | return in_array($type , explode(" ", $mimes)) 39 | ? "You can't upload such files." 40 | : true; 41 | } 42 | 43 | return !in_array($type , explode(" ", $mimes)) 44 | ? "You can't upload such files." 45 | : true; 46 | } 47 | } 48 | 49 | ?> -------------------------------------------------------------------------------- /public/js/ckeditor/plugins/link/dialogs/anchor.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.dialog.add("anchor",function(c){function d(a,b){return a.createFakeElement(a.document.createElement("a",{attributes:b}),"cke_anchor","anchor")}return{title:c.lang.link.anchor.title,minWidth:300,minHeight:60,onOk:function(){var a=CKEDITOR.tools.trim(this.getValueOf("info","txtName")),a={id:a,name:a,"data-cke-saved-name":a};if(this._.selectedElement)this._.selectedElement.data("cke-realelement")?(a=d(c,a),a.replace(this._.selectedElement),CKEDITOR.env.ie&&c.getSelection().selectElement(a)): 6 | this._.selectedElement.setAttributes(a);else{var b=c.getSelection(),b=b&&b.getRanges()[0];b.collapsed?(a=d(c,a),b.insertNode(a)):(CKEDITOR.env.ie&&9>CKEDITOR.env.version&&(a["class"]="cke_anchor"),a=new CKEDITOR.style({element:"a",attributes:a}),a.type=CKEDITOR.STYLE_INLINE,c.applyStyle(a))}},onHide:function(){delete this._.selectedElement},onShow:function(){var a=c.getSelection(),b=a.getSelectedElement(),d=b&&b.data("cke-realelement"),e=d?CKEDITOR.plugins.link.tryRestoreFakeAnchor(c,b):CKEDITOR.plugins.link.getSelectedLink(c); 7 | e&&(this._.selectedElement=e,this.setValueOf("info","txtName",e.data("cke-saved-name")||""),!d&&a.selectElement(e),b&&(this._.selectedElement=b));this.getContentElement("info","txtName").focus()},contents:[{id:"info",label:c.lang.link.anchor.title,accessKey:"I",elements:[{type:"text",id:"txtName",label:c.lang.link.anchor.name,required:!0,validate:function(){return!this.getValue()?(alert(c.lang.link.anchor.errorName),!1):!0}}]}]}}); -------------------------------------------------------------------------------- /src/views/admin/menus/items/index.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | fillItems(); ?> 12 | @foreach ($menu->menuItems as $menuItem) 13 | 14 | 30 | 33 | 39 | 44 | 45 | @endforeach 46 | 47 |
TypeEditChild Menu
15 | 18 | @if ($menuItem->fmodel != 'Modal') 19 | 20 | 21 | 22 | @endif 23 | 24 | 25 | 26 | 29 | 31 | {{ $menuItem->fmodel }} 32 | 34 | {{ Form::hidden(null, $menuItem->order, array('class'=>'orderInput')) }} 35 | 36 | {{ $menuItem->model->name }} 37 | 38 | 40 | @if ($menuItem->childMenu) 41 | {{ $menuItem->childMenu->name }} 42 | @endif 43 |
-------------------------------------------------------------------------------- /src/views/template.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | @yield('meta') 7 | 8 | {{ $settings['title']['value'] }} | @yield('title') 9 | 10 | {{ HTML::style('packages/angel/core/js/jquery/fancybox/jquery.fancybox.css') }} 11 | {{ HTML::style('packages/angel/core/bootstrap/bootstrap.min.css') }} 12 | 28 | @yield('css') 29 | 30 | 31 |
32 | @include('core::header') 33 | @include('core::alerts') 34 | @yield('content') 35 |
36 | {{ HTML::script('packages/angel/core/js/jquery/jquery.min.js') }} 37 | {{ HTML::script('packages/angel/core/js/jquery/fancybox/jquery.fancybox.pack.js') }} 38 | {{ HTML::script('packages/angel/core/bootstrap/bootstrap.min.js') }} 39 | 51 | @yield('js') 52 | 53 | -------------------------------------------------------------------------------- /src/Angel/Core/ToolBelt.php: -------------------------------------------------------------------------------- 1 | '; 13 | print_r($var); 14 | echo ''; 15 | } 16 | 17 | /** 18 | * Echo out all queries that have been executed thus far. 19 | */ 20 | static function print_queries() 21 | { 22 | static::debug(DB::getQueryLog()); 23 | } 24 | 25 | /** 26 | * Echo out the session. 27 | */ 28 | static function print_session() 29 | { 30 | static::debug(Session::all()); 31 | } 32 | 33 | /** 34 | * Convert dollars and cents to a number of pennies for Stripe usage. 35 | * i.e.: $1044.22 -> 104422 36 | * 37 | * @param float $dollars 38 | * @return int - The number of pennies. 39 | */ 40 | static function pennies($dollars) 41 | { 42 | return (int) str_replace('.', '', number_format((float) $dollars, 2, '.', '')); 43 | } 44 | 45 | /** 46 | * Get the MySQL version of the server. 47 | * 48 | * @return string - i.e.: '5.5.12' 49 | */ 50 | static function mysql_version() 51 | { 52 | $version = DB::select('SELECT VERSION() AS `version`'); 53 | $version = explode('-', $version[0]->version); 54 | $version = $version[0]; 55 | return $version; 56 | } 57 | 58 | /** 59 | * Test if the MySQL version is greater than or equal to a given version number. 60 | * 61 | * @param string $than - The version number that we're comparing to, i.e. '5.5.12' 62 | * @return boolean 63 | */ 64 | static function mysql_greater($than) 65 | { 66 | return version_compare(static::mysql_version(), $than, '>='); 67 | } 68 | 69 | } -------------------------------------------------------------------------------- /src/Angel/Core/Helpers.php: -------------------------------------------------------------------------------- 1 | getShortName(); 18 | } 19 | 20 | /** 21 | * Handle the creation of the slug and verifying that it is unique. 22 | * Slugs are used for URLs generally, like: http://yoursite.com/products/large-green-ball 23 | * 24 | * @param string $model - The model object. 25 | * @param string $slugSeed - The column with which to seed the slug. 26 | * @return string $unique_slug - The unique slug. 27 | */ 28 | function slug($model, $slugSeed) { 29 | $slug = sluggify($model->$slugSeed); 30 | $unique_slug = $slug; 31 | $i = 1; 32 | 33 | do { 34 | $not_unique = $model->where('slug', $unique_slug); 35 | if ($model->id) $not_unique = $not_unique->where('id', '<>', $model->id); 36 | $not_unique = $not_unique->count(); 37 | if ($not_unique) $unique_slug = $slug . '-' . $i++; 38 | } while ($not_unique); 39 | 40 | return $unique_slug; 41 | } 42 | 43 | /** 44 | * Turn a string into a slug. 45 | * i.e.: 'Large Green Ball' -> 'large-green-ball' 46 | * 47 | * @param string $name - The string to sluggify. 48 | * @return string $slug - The sluggified string. 49 | */ 50 | function sluggify($name) { 51 | $slug = strtolower($name); 52 | $slug = strip_tags($slug); 53 | $slug = stripslashes($slug); 54 | 55 | $slug = preg_replace('/[^a-z0-9]+/', '-', $slug); 56 | $slug = trim($slug, '-'); 57 | 58 | return $slug; 59 | } -------------------------------------------------------------------------------- /src/views/admin/links/index.blade.php: -------------------------------------------------------------------------------- 1 | @extends('core::admin.template') 2 | 3 | @section('title', 'Links') 4 | 5 | @section('content') 6 |
7 |
8 |

Links

9 | 10 | 11 | Add 12 | 13 |
14 |
15 | {{ Form::open(array('role'=>'form', 'method'=>'get')) }} 16 |
17 | 18 | 19 |
20 |
21 | 22 |
23 | {{ Form::close() }} 24 |
25 |
26 |
27 | {{ $links }} 28 |
29 |
30 |
31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | @foreach($link_models as $link) 42 | 43 | 48 | 49 | 50 | 51 | 52 | @endforeach 53 | 54 |
IDNameURL
44 | 45 | 46 | 47 | {{ $link->id }}{{ $link->name }}{{ $link->link() }}
55 |
56 |
57 |
58 | {{ $links }} 59 |
60 | @stop -------------------------------------------------------------------------------- /public/js/kcfinder/integration/BolmerCMS.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright 2010-2014 KCFinder Project 10 | * @license http://opensource.org/licenses/GPL-3.0 GPLv3 11 | * @license http://opensource.org/licenses/LGPL-3.0 LGPLv3 12 | * @link http://kcfinder.sunhater.com 13 | */ 14 | class BolmerCMS{ 15 | protected static $authenticated = false; 16 | static function checkAuth() { 17 | $current_cwd = getcwd(); 18 | if ( ! self::$authenticated) { 19 | define('BOLMER_API_MODE', true); 20 | define('IN_MANAGER_MODE', true); 21 | $init = realpath(dirname(dirname(dirname(dirname(dirname(dirname(__FILE__))))))."/index.php"); 22 | include_once($init); 23 | $type = getService('user', true)->getLoginUserType(); 24 | if($type=='manager'){ 25 | self::$authenticated = true; 26 | if (!isset($_SESSION['KCFINDER'])) { 27 | $_SESSION['KCFINDER'] = array(); 28 | } 29 | if(!isset($_SESSION['KCFINDER']['disabled'])) { 30 | $_SESSION['KCFINDER']['disabled'] = false; 31 | } 32 | $_SESSION['KCFINDER']['_check4htaccess'] = false; 33 | $_SESSION['KCFINDER']['uploadURL'] = '/assets/'; 34 | $_SESSION['KCFINDER']['uploadDir'] = BOLMER_BASE_PATH.'assets/'; 35 | $_SESSION['KCFINDER']['theme'] = 'default'; 36 | } 37 | } 38 | 39 | chdir($current_cwd); 40 | return self::$authenticated; 41 | } 42 | } 43 | \kcfinder\cms\BolmerCMS::checkAuth(); -------------------------------------------------------------------------------- /src/commands/AngelAssets.php: -------------------------------------------------------------------------------- 1 | error('The vendor/angel directory does not exist.'); 60 | return; 61 | } 62 | $this->info('Publishing Angel package assets...'); 63 | chdir(base_path()); 64 | foreach (glob(base_path('vendor/angel/*')) as $dir) { 65 | if (!is_dir($dir)) { 66 | $this->error('Not a directory: ' . $dir); 67 | continue; 68 | } 69 | preg_match('/vendor\/(.+)/', $dir, $matches); 70 | $package = $matches[1]; 71 | $this->exec('php artisan asset:publish ' . $package); 72 | } 73 | $this->info('...all Angel package assets have been published.'); 74 | } 75 | 76 | private function exec($command) 77 | { 78 | $this->info('Executing: ' . $command); 79 | echo shell_exec($command); 80 | } 81 | 82 | } 83 | -------------------------------------------------------------------------------- /src/views/admin/users/index.blade.php: -------------------------------------------------------------------------------- 1 | @extends('core::admin.template') 2 | 3 | @section('title', 'Users') 4 | 5 | @section('content') 6 | {{ Form::open(array('role'=>'form', 'method'=>'get')) }} 7 |
8 |
9 |

Users

10 | 11 | 12 | Add 13 | 14 |
15 |
16 |
17 | 18 | 19 |
20 |
21 | 22 |
23 |
24 |
25 | {{ Form::close() }} 26 |
27 | {{ $links }} 28 |
29 |
30 |
31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | @foreach($users as $user) 45 | 46 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | @endforeach 59 | 60 |
IDTypeEmailUsernameFirst NameLast Name
47 | 48 | 49 | 50 | {{ $user->id }}{{ $user->type }}{{ $user->email }}{{ $user->username }}{{ $user->first_name }}{{ $user->last_name }}
61 |
62 |
63 |
64 | {{ $links }} 65 |
66 | @stop -------------------------------------------------------------------------------- /src/views/admin/links/add-or-edit.blade.php: -------------------------------------------------------------------------------- 1 | @extends('core::admin.template') 2 | 3 | @section('title', ucfirst($action).' Link') 4 | 5 | @section('js') 6 | {{ HTML::script('packages/angel/core/js/ckeditor/ckeditor.js') }} 7 | @stop 8 | 9 | @section('content') 10 |

{{ ucfirst($action) }} Link

11 | @if ($action == 'edit') 12 | {{ Form::open(array('role'=>'form', 13 | 'url'=>admin_uri('links/delete/'.$link->id), 14 | 'class'=>'deleteForm', 15 | 'data-confirm'=>'Delete this link forever? This action cannot be undone!')) }} 16 | 17 | {{ Form::close() }} 18 | @endif 19 | 20 | @if ($action == 'edit') 21 | {{ Form::model($link, array('role'=>'form')) }} 22 | @elseif ($action == 'add') 23 | {{ Form::open(array('role'=>'form')) }} 24 | @endif 25 | 26 | @if (isset($menu_id)) 27 | {{ Form::hidden('menu_id', $menu_id) }} 28 | @endif 29 | 30 |
31 |
32 | 33 | 34 | 35 | 39 | 42 | 43 | 44 | 48 | 51 | 52 | 53 |
36 | * 37 | {{ Form::label('name', 'Name') }} 38 | 40 | {{ Form::text('name', null, array('class'=>'form-control', 'placeholder'=>'Name', 'required')) }} 41 |
45 | * 46 | {{ Form::label('url', 'URL') }} 47 | 49 | {{ Form::text('url', null, array('class'=>'form-control', 'placeholder'=>'URL', 'required')) }} 50 |
54 |
{{-- Left Column --}} 55 |
{{-- Row --}} 56 |
57 | 58 |
59 | {{ Form::close() }} 60 | @stop -------------------------------------------------------------------------------- /public/js/kcfinder/cache/base.css: -------------------------------------------------------------------------------- 1 | html,body{overflow:hidden}body,form,th,td{margin:0;padding:0}a{cursor:pointer}*{font-family:Tahoma,Verdana,Arial,sans-serif;font-size:11px}table{border-collapse:collapse}#left{float:left;display:block;width:25%}#right{float:left;display:block;width:75%}#settings{display:none;padding:0;float:left;width:100%}#settings>div{float:left}#folders{padding:5px;overflow:auto}#toolbar{padding:5px}#files{padding:5px;overflow:auto}#status{padding:5px;float:left;overflow:hidden}#fileinfo{float:left}#clipboard div{width:16px;height:16px}.folders{margin-left:16px}div.file{overflow-x:hidden;float:left;text-align:center;cursor:default;white-space:nowrap}div.file .thumb{background:no-repeat center center}#files table{width:100%}tr.file{cursor:default}tr.file>td{white-space:nowrap}tr.file>td.name{background-repeat:no-repeat;background-position:left center;padding-left:20px;width:100%}tr.file>td.time,tr.file>td.size{text-align:right}#toolbar{cursor:default;white-space:nowrap}#toolbar a{padding-left:20px;text-decoration:none;background:no-repeat left center}#toolbar a:hover,a[href="#upload"].uploadHover{color:#000}#upload{position:absolute;overflow:hidden;opacity:0;filter:alpha(opacity=0)}#upload input,#upload input::-webkit-file-upload-button{cursor:pointer}span.brace{padding-left:11px;cursor:default}span.brace.opened,span.brace.closed{cursor:pointer}#menu,#clipboard{position:absolute;display:none;z-index:101;cursor:default}#menu .box,#alert{max-width:350px}#clipboard{z-index:99}#loading{display:none;float:right}.menu{background:#888;white-space:nowrap}.menu a{display:block}.menu .list{max-height:0;overflow-y:auto;overflow-x:hidden;white-space:nowrap}#uploadResponse,.file .access,.file .hasThumb{display:none}#resizer{position:absolute;z-index:98;top:0;background:#000;opacity:0;filter:alpha(opacity=0)}body.mobile{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none}body.firefox #files>div{overflow:auto;margin-bottom:5px} -------------------------------------------------------------------------------- /public/js/ckeditor/plugins/wsc/dialogs/ciframe.html: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 10 | 64 | 65 |

66 | 67 | -------------------------------------------------------------------------------- /src/models/MenuItem.php: -------------------------------------------------------------------------------- 1 | menu_id) { 22 | $errors[] = 'The child menu cannot be the same as the parent menu. A recursive loop would occur.'; 23 | } 24 | if (static::where('child_menu_id', $this->menu_id)->count()) { 25 | $errors[] = 'A child menu cannot have a child menu nested within it.'; 26 | } 27 | } 28 | 29 | return $errors; 30 | } 31 | 32 | /////////////////////////////////////////////// 33 | // Events // 34 | /////////////////////////////////////////////// 35 | public static function boot() 36 | { 37 | parent::boot(); 38 | 39 | static::saving(function($menuItem) { 40 | if ($menuItem->skipEvents) return; 41 | 42 | if (Input::exists('child_menu_id') && !Input::get('child_menu_id')) { 43 | $menuItem->child_menu_id = null; 44 | } 45 | }); 46 | static::creating(function($menuItem) { 47 | if ($menuItem->skipEvents) return; 48 | 49 | $menuItem->order = static::where('menu_id', Input::get('menu_id'))->count(); 50 | $menuItem->menu_id = Input::get('menu_id'); 51 | $menuItem->fmodel = Input::get('fmodel'); 52 | $menuItem->fid = Input::get('fid'); 53 | }); 54 | } 55 | 56 | /////////////////////////////////////////////// 57 | // Relationships // 58 | /////////////////////////////////////////////// 59 | public function menu() 60 | { 61 | return $this->belongsTo(App::make('Menu')); 62 | } 63 | public function childMenu() 64 | { 65 | return $this->belongsTo(App::make('Menu'), 'child_menu_id'); 66 | } 67 | 68 | } -------------------------------------------------------------------------------- /src/models/Change.php: -------------------------------------------------------------------------------- 1 | user_id = Auth::user()->id; 13 | $change->fmodel = short_name($model); 14 | $change->fid = $model->id; 15 | $change->changes = json_encode($changes); 16 | $change->save(); 17 | } 18 | 19 | protected function log_relation_name($object) 20 | { 21 | $name = short_name($object) . ' ID#' . $object->id; 22 | if (isset($object->name) && $object->name) $name .= ' Name: ' . $object->name; 23 | return $name; 24 | } 25 | 26 | public function log_relation_change($object, $old_array, $columns, &$changes) 27 | { 28 | $name = $this->log_relation_name($object); 29 | if (!count($old_array)) { 30 | $changes['Created new ' . $name] = array(); 31 | return; 32 | } 33 | foreach ($columns as $column) { 34 | if ($object->$column == $old_array[$column]) continue; 35 | $changes['Changed ' . $name . ' Column: ' . $column] = array( 36 | 'old' => $old_array[$column], 37 | 'new' => $object->$column 38 | ); 39 | } 40 | } 41 | 42 | public function log_relation_deletion($object, &$changes) 43 | { 44 | $name = $this->log_relation_name($object); 45 | $changes['Deleted ' . $name] = array(); 46 | } 47 | 48 | /////////////////////////////////////////////// 49 | // Relationships // 50 | /////////////////////////////////////////////// 51 | public function user() 52 | { 53 | return $this->belongsTo('User')->withTrashed(); 54 | } 55 | 56 | /////////////////////////////////////////////// 57 | // Mutators // 58 | /////////////////////////////////////////////// 59 | public function setUpdatedAt($value) 60 | { 61 | // Override - do nothing. (We don't need this column, but we're still using the built-in timestamp 62 | // for created_at.) 63 | } 64 | } -------------------------------------------------------------------------------- /public/js/kcfinder/tpl/tpl_javascript.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | opener['name'] == "tinymce"): 8 | ?> 9 | 10 | config['theme']}/js.php")): 14 | ?> 15 | 16 | 19 | 38 | -------------------------------------------------------------------------------- /src/commands/DatabaseRestore.php: -------------------------------------------------------------------------------- 1 | info('Restoring MySQL database...'); 63 | $host = Config::get('database.connections.mysql.host'); 64 | $database = Config::get('database.connections.mysql.database'); 65 | $username = Config::get('database.connections.mysql.username'); 66 | $password = Config::get('database.connections.mysql.password'); 67 | $file = ($this->argument('file')) ? $this->argument('file') : $database . '.sql'; 68 | chdir(base_path()); 69 | $this->exec('mysql -h ' . $host . ' -u ' . $username . ' -p\'' . $password . '\' ' . $database . ' < ' . $file); 70 | $this->info('...finished. Database restored!'); 71 | } 72 | 73 | private function exec($command) 74 | { 75 | $this->info('Executing: ' . $command); 76 | echo shell_exec($command); 77 | } 78 | 79 | } 80 | -------------------------------------------------------------------------------- /src/commands/DatabaseBackup.php: -------------------------------------------------------------------------------- 1 | info('Backing up MySQL database...'); 63 | $host = Config::get('database.connections.mysql.host'); 64 | $database = Config::get('database.connections.mysql.database'); 65 | $username = Config::get('database.connections.mysql.username'); 66 | $password = Config::get('database.connections.mysql.password'); 67 | $file = ($this->argument('file')) ? $this->argument('file') : $database . '.sql'; 68 | chdir(base_path()); 69 | $this->exec('mysqldump -h ' . $host . ' -u ' . $username . ' -p\'' . $password . '\' ' . $database . ' > ' . $file); 70 | $this->info('...finished. Dump placed in ' . base_path() . '/' . $file); 71 | } 72 | 73 | private function exec($command) 74 | { 75 | $this->info('Executing: ' . $command); 76 | echo shell_exec($command); 77 | } 78 | } 79 | -------------------------------------------------------------------------------- /public/js/kcfinder/README.md: -------------------------------------------------------------------------------- 1 | # KCFinder web file manager 2 | http://kcfinder.sunhater.com 3 | Pavel Tzonkov (sunhater@sunhater.com) 4 | 5 | ## Overview 6 | KCFinder is free open-source replacement of CKFinder web file manager. It can be integrated into FCKeditor, CKEditor, and TinyMCE WYSIWYG web editors (or your custom web applications) to upload and manage images, flash movies, and other files that can be embedded into an editor's generated HTML content. 7 | 8 | ## Licenses 9 | * GNU General Public License, version 3 10 | * GNU Lesser General Public License, version 3 11 | 12 | ## Features 13 | * Ajax engine with JSON responses 14 | * Multiple files upload 15 | * Upload files using HTML5 drag and drop from local file manager 16 | * Download multiple files or a folder as single ZIP file 17 | * Select multiple files with the Ctrl/Command key 18 | * Clipboard for copying, moving and downloading multiple files 19 | * Easy to integrate and configure in web applications 20 | * Option to select and return several files. For custom applications only 21 | * Resize uploaded images. Configurable maximum image resolution 22 | * PNG watermark support 23 | * Configurable thumbnail resolution 24 | * Automaticaly rotate and/or flip uploaded images depending on the orientation info EXIF tag if it exist 25 | * Multiple themes support 26 | * Multilanguage system 27 | * Preview images in full size 28 | 29 | ##Compatibility 30 | * KCFinder is officialy tested on Apache 2 web server only, but probably it will work on other web servers. 31 | * PHP 5.3 or better is required. Safe mode should be off. 32 | * At least one of these PHP extensions is required: GD, ImageMagick or GraphicsMagick. 33 | * To work with client-side HTTP cache, the PHP must be installed as Apache module. 34 | * KCFinder supports MIME type recognition for the uploaded files. If you plan to use this feature, you should to load Fileinfo PHP extension. 35 | * PHP ZIP extension should be loaded in order to have an option to download multiple files and directories as single ZIP file. 36 | * Automatic rotating and flipping images requires PHP EXIF extension. 37 | --------------------------------------------------------------------------------