├── .gitattributes ├── .htaccess ├── application ├── .htaccess ├── cache │ ├── .htaccess │ └── index.html ├── config │ ├── autoload.php │ ├── config.php │ ├── constants.php │ ├── database.php │ ├── doctypes.php │ ├── foreign_chars.php │ ├── hooks.php │ ├── index.html │ ├── migration.php │ ├── mimes.php │ ├── profiler.php │ ├── routes.php │ ├── smileys.php │ └── user_agents.php ├── controllers │ ├── account.php │ ├── admin │ │ ├── account.php │ │ ├── category.php │ │ ├── currency.php │ │ ├── dashboard.php │ │ ├── fileadmin.php │ │ ├── module.php │ │ ├── option.php │ │ ├── order.php │ │ ├── product.php │ │ ├── product_option.php │ │ └── settings.php │ ├── basket.php │ ├── cart.php │ ├── category.php │ ├── currency.php │ ├── home.php │ ├── index.html │ ├── language.php │ ├── order.php │ ├── page.php │ ├── payment │ │ ├── banktransfer.php │ │ └── paypal.php │ └── product.php ├── core │ ├── MY_Controller.php │ └── index.html ├── errors │ ├── error_404.php │ ├── error_db.php │ ├── error_general.php │ ├── error_php.php │ └── index.html ├── helpers │ ├── currency_helper.php │ ├── index.html │ └── language_helper.php ├── hooks │ ├── index.html │ └── site_config.php ├── index.html ├── language │ ├── english │ │ ├── cart_lang.php │ │ ├── home_lang.php │ │ ├── index.html │ │ └── order │ │ │ ├── cargo_lang.php │ │ │ ├── detail_lang.php │ │ │ └── payment_lang.php │ ├── index.html │ └── turkish │ │ ├── cart_lang.php │ │ ├── home_lang.php │ │ ├── index.html │ │ └── order │ │ ├── cargo_lang.php │ │ ├── detail_lang.php │ │ └── payment_lang.php ├── libraries │ ├── Paypal_ec.php │ ├── currency_library.php │ └── index.html ├── logs │ └── index.html ├── models │ ├── admin │ │ ├── account │ │ │ └── login.php │ │ ├── category_model.php │ │ ├── currency_model.php │ │ ├── dashboard_model.php │ │ ├── language_model.php │ │ ├── module_model.php │ │ ├── option_model.php │ │ ├── order_model.php │ │ ├── product_model.php │ │ ├── product_option_model.php │ │ └── settings_model.php │ ├── cargo_model.php │ ├── categories_model.php │ ├── categorys.php │ ├── currency_model.php │ ├── index.html │ ├── menu.php │ ├── menu_model.php │ ├── order_model.php │ ├── pages.php │ ├── pages_model.php │ ├── payment.php │ ├── payment │ │ └── paypal │ │ │ ├── paypal_express.php │ │ │ ├── paypalfunctions.php │ │ │ └── test.php │ ├── payment_model.php │ ├── products.php │ └── products_model.php ├── third_party │ └── index.html └── views │ ├── admin │ ├── account │ │ └── login.php │ ├── category │ │ ├── add.php │ │ ├── detail.php │ │ └── list.php │ ├── currency │ │ ├── add.php │ │ ├── detail.php │ │ └── list.php │ ├── dashboard.php │ ├── fileadmin │ │ └── upload.php │ ├── footer.php │ ├── header.php │ ├── module │ │ ├── detail.php │ │ └── list.php │ ├── option │ │ ├── add.php │ │ ├── add_new_value.php │ │ ├── detail.php │ │ └── list.php │ ├── order.php │ ├── order │ │ ├── detail.php │ │ └── list.php │ ├── product │ │ ├── add.php │ │ ├── detail.php │ │ └── list.php │ ├── product_option │ │ ├── add.php │ │ ├── detail.php │ │ └── list.php │ └── settings │ │ └── detail.php │ ├── basket.php │ ├── cart.php │ ├── category.php │ ├── footer.php │ ├── header.php │ ├── home.php │ ├── index.html │ ├── login.php │ ├── order │ ├── cargo.php │ ├── complete.php │ ├── confirm.php │ ├── detail.php │ ├── payment.php │ └── total.php │ ├── page.php │ ├── payment │ ├── banktransfer.php │ └── paypal.php │ └── product.php ├── cgi-bin └── test │ └── test.cgi ├── composer.json ├── css ├── bootstrap-combobox.css ├── bootstrap.css ├── bootstrap.min.css ├── jquery.smartmenus.bootstrap.css ├── plugins │ └── morris.css ├── sb-admin.css ├── shop-homepage.css ├── sm-blue │ ├── css-gradients-fallback │ │ ├── current-item-bg.png │ │ ├── main-item-hover-bg.png │ │ ├── main-menu-bg.png │ │ ├── sub-item-hover-bg.png │ │ └── vertical-main-item-bg.png │ └── sm-blue.css └── sm-core-css.css ├── fonts ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.svg ├── glyphicons-halflings-regular.ttf └── glyphicons-halflings-regular.woff ├── index.php ├── jquery-ui-1.11.2.custom ├── external │ └── jquery │ │ └── jquery.js ├── images │ ├── Thumbs.db │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ ├── ui-bg_flat_10_000000_40x100.png │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ ├── ui-bg_glass_65_ffffff_1x400.png │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ ├── ui-icons_222222_256x240.png │ ├── ui-icons_228ef1_256x240.png │ ├── ui-icons_ef8c08_256x240.png │ ├── ui-icons_ffd27a_256x240.png │ └── ui-icons_ffffff_256x240.png ├── index.html ├── jquery-ui.css ├── jquery-ui.js ├── jquery-ui.min.css ├── jquery-ui.min.js ├── jquery-ui.structure.css ├── jquery-ui.structure.min.css ├── jquery-ui.theme.css └── jquery-ui.theme.min.css ├── js ├── ajaxfileupload.js ├── autosaveform.js ├── bootstrap-combobox.js ├── bootstrap-notify.js ├── bootstrap.js ├── bootstrap.min.js ├── form.js ├── jquery-1.11.0.js ├── jquery-1.5.2.min.js ├── jquery.friendurl.js ├── jquery.kaydet.js ├── jquery.smartmenus.bootstrap.js ├── jquery.smartmenus.js ├── plugins │ ├── flot │ │ ├── excanvas.min.js │ │ ├── flot-data.js │ │ ├── jquery.flot.js │ │ ├── jquery.flot.pie.js │ │ ├── jquery.flot.resize.js │ │ └── jquery.flot.tooltip.min.js │ └── morris │ │ └── raphael.min.js ├── scriptbreaker-multiple-accordion-1.js └── sisyphus.js ├── kcfinder ├── .gitignore ├── README.md ├── adapters │ ├── jquery-example.html │ ├── jquery-min.js │ └── jquery.js ├── browse.php ├── cache │ ├── .htaccess │ ├── base.css │ ├── base.js │ ├── theme_dark.css │ ├── theme_dark.js │ ├── theme_default.css │ └── theme_default.js ├── cad │ └── .htaccess ├── composer.json ├── conf │ ├── .htaccess │ ├── config.php │ └── upload.htaccess ├── core │ ├── .htaccess │ ├── autoload.php │ ├── bootstrap.php │ ├── class │ │ ├── browser.php │ │ ├── minifier.php │ │ ├── session.php │ │ └── uploader.php │ └── types │ │ ├── type_img.php │ │ └── type_mime.php ├── css │ ├── 000.base.css │ ├── 001.transForm.css │ ├── 999.agent.css │ └── index.php ├── doc │ ├── .htaccess │ ├── Changelog.md │ ├── LICENSE.GPL │ └── LICENSE.LGPL ├── favicon.ico ├── index.php ├── integration │ ├── .htaccess │ ├── BolmerCMS.php │ └── drupal.php ├── js │ ├── 000._jquery.js │ ├── 002._jqueryui.js │ ├── 006.jquery.transForm.js │ ├── 010.jquery.fixes.js │ ├── 020.jquery.rightClick.js │ ├── 021.jquery.taphold.js │ ├── 022.jquery.shDropUpload.js │ ├── 029.jquery.agent.js │ ├── 030.jquery.helper.js │ ├── 031.jquery.md5.js │ ├── 040.object.js │ ├── 041.dialogs.js │ ├── 050.init.js │ ├── 060.toolbar.js │ ├── 070.settings.js │ ├── 080.files.js │ ├── 090.folders.js │ ├── 091.menus.js │ ├── 091.viewImage.js │ ├── 100.clipboard.js │ ├── 110.dropUpload.js │ ├── 120.misc.js │ └── index.php ├── js_localize.php ├── lang │ ├── .htaccess │ ├── af.php │ ├── bg.php │ ├── ca.php │ ├── cs.php │ ├── da.php │ ├── de.php │ ├── el.php │ ├── en.php │ ├── es.php │ ├── et.php │ ├── fa.php │ ├── fi.php │ ├── fr.php │ ├── he.php │ ├── hu.php │ ├── id.php │ ├── it.php │ ├── ja.php │ ├── lt.php │ ├── lv.php │ ├── nl.php │ ├── no.php │ ├── pl.php │ ├── pt-br.php │ ├── pt.php │ ├── ro.php │ ├── ru.php │ ├── sk.php │ ├── sv.php │ ├── tr.php │ ├── uk.php │ ├── vi.php │ └── zh-cn.php ├── lib │ ├── .htaccess │ ├── class_fastImage.php │ ├── class_image.php │ ├── class_image_gd.php │ ├── class_image_gmagick.php │ ├── class_image_imagick.php │ ├── class_zipFolder.php │ ├── helper_dir.php │ ├── helper_file.php │ ├── helper_httpCache.php │ ├── helper_path.php │ ├── helper_phpGet.php │ └── helper_text.php ├── themes │ ├── dark │ │ ├── 01.ui.css │ │ ├── 02.transForm.css │ │ ├── 03.misc.css │ │ ├── README │ │ ├── css.php │ │ ├── img │ │ │ ├── bg_transparent.png │ │ │ ├── files │ │ │ │ ├── big │ │ │ │ │ ├── ..png │ │ │ │ │ ├── .image.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 │ │ │ │ │ ├── gz.png │ │ │ │ │ ├── htm.png │ │ │ │ │ ├── html.png │ │ │ │ │ ├── ini.png │ │ │ │ │ ├── iso.png │ │ │ │ │ ├── jar.png │ │ │ │ │ ├── java.png │ │ │ │ │ ├── jpeg.png │ │ │ │ │ ├── jpg.png │ │ │ │ │ ├── js.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 │ │ │ │ │ ├── pl.png │ │ │ │ │ ├── pm.png │ │ │ │ │ ├── png.png │ │ │ │ │ ├── ppt.png │ │ │ │ │ ├── pptx.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 │ │ │ │ │ ├── tiff.png │ │ │ │ │ ├── torrent.png │ │ │ │ │ ├── ttf.png │ │ │ │ │ ├── txt.png │ │ │ │ │ ├── wav.png │ │ │ │ │ ├── wma.png │ │ │ │ │ ├── xls.png │ │ │ │ │ ├── xlsx.png │ │ │ │ │ └── zip.png │ │ │ │ └── small │ │ │ │ │ ├── ..png │ │ │ │ │ ├── .image.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 │ │ │ │ │ ├── gz.png │ │ │ │ │ ├── htm.png │ │ │ │ │ ├── html.png │ │ │ │ │ ├── ini.png │ │ │ │ │ ├── iso.png │ │ │ │ │ ├── jar.png │ │ │ │ │ ├── java.png │ │ │ │ │ ├── jpeg.png │ │ │ │ │ ├── jpg.png │ │ │ │ │ ├── js.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 │ │ │ │ │ ├── pl.png │ │ │ │ │ ├── pm.png │ │ │ │ │ ├── png.png │ │ │ │ │ ├── ppt.png │ │ │ │ │ ├── pptx.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 │ │ │ │ │ ├── tiff.png │ │ │ │ │ ├── torrent.png │ │ │ │ │ ├── ttf.png │ │ │ │ │ ├── txt.png │ │ │ │ │ ├── wav.png │ │ │ │ │ ├── wma.png │ │ │ │ │ ├── xls.png │ │ │ │ │ ├── xlsx.png │ │ │ │ │ └── zip.png │ │ │ ├── icons │ │ │ │ ├── about.png │ │ │ │ ├── clipboard-add.png │ │ │ │ ├── clipboard-clear.png │ │ │ │ ├── clipboard.png │ │ │ │ ├── copy.png │ │ │ │ ├── delete.png │ │ │ │ ├── download.png │ │ │ │ ├── folder-new.png │ │ │ │ ├── maximize.png │ │ │ │ ├── move.png │ │ │ │ ├── refresh.png │ │ │ │ ├── rename.png │ │ │ │ ├── select.png │ │ │ │ ├── settings.png │ │ │ │ ├── upload.png │ │ │ │ └── view.png │ │ │ ├── kcf_logo.png │ │ │ ├── loading.gif │ │ │ ├── tree │ │ │ │ ├── denied.png │ │ │ │ ├── folder.png │ │ │ │ ├── minus.png │ │ │ │ └── plus.png │ │ │ ├── ui-icons_black.png │ │ │ ├── ui-icons_grey.png │ │ │ └── ui-icons_white.png │ │ ├── init.js │ │ └── js.php │ └── default │ │ ├── 01.ui.css │ │ ├── 02.transForm.css │ │ ├── 03.misc.css │ │ ├── README │ │ ├── css.php │ │ ├── img │ │ ├── bg_transparent.png │ │ ├── files │ │ │ ├── big │ │ │ │ ├── ..png │ │ │ │ ├── .image.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 │ │ │ │ ├── gz.png │ │ │ │ ├── htm.png │ │ │ │ ├── html.png │ │ │ │ ├── ini.png │ │ │ │ ├── iso.png │ │ │ │ ├── jar.png │ │ │ │ ├── java.png │ │ │ │ ├── jpeg.png │ │ │ │ ├── jpg.png │ │ │ │ ├── js.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 │ │ │ │ ├── pl.png │ │ │ │ ├── pm.png │ │ │ │ ├── png.png │ │ │ │ ├── ppt.png │ │ │ │ ├── pptx.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 │ │ │ │ ├── tiff.png │ │ │ │ ├── torrent.png │ │ │ │ ├── ttf.png │ │ │ │ ├── txt.png │ │ │ │ ├── wav.png │ │ │ │ ├── wma.png │ │ │ │ ├── xls.png │ │ │ │ ├── xlsx.png │ │ │ │ └── zip.png │ │ │ └── small │ │ │ │ ├── ..png │ │ │ │ ├── .image.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 │ │ │ │ ├── gz.png │ │ │ │ ├── htm.png │ │ │ │ ├── html.png │ │ │ │ ├── ini.png │ │ │ │ ├── iso.png │ │ │ │ ├── jar.png │ │ │ │ ├── java.png │ │ │ │ ├── jpeg.png │ │ │ │ ├── jpg.png │ │ │ │ ├── js.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 │ │ │ │ ├── pl.png │ │ │ │ ├── pm.png │ │ │ │ ├── png.png │ │ │ │ ├── ppt.png │ │ │ │ ├── pptx.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 │ │ │ │ ├── tiff.png │ │ │ │ ├── torrent.png │ │ │ │ ├── ttf.png │ │ │ │ ├── txt.png │ │ │ │ ├── wav.png │ │ │ │ ├── wma.png │ │ │ │ ├── xls.png │ │ │ │ ├── xlsx.png │ │ │ │ └── zip.png │ │ ├── icons │ │ │ ├── about.png │ │ │ ├── clipboard-add.png │ │ │ ├── clipboard-clear.png │ │ │ ├── clipboard.png │ │ │ ├── copy.png │ │ │ ├── delete.png │ │ │ ├── download.png │ │ │ ├── folder-new.png │ │ │ ├── maximize.png │ │ │ ├── move.png │ │ │ ├── refresh.png │ │ │ ├── rename.png │ │ │ ├── select.png │ │ │ ├── settings.png │ │ │ ├── upload.png │ │ │ └── view.png │ │ ├── kcf_logo.png │ │ ├── loading.gif │ │ ├── tree │ │ │ ├── denied.png │ │ │ ├── folder.png │ │ │ ├── minus.png │ │ │ └── plus.png │ │ ├── ui-icons_black.png │ │ ├── ui-icons_blue.png │ │ └── ui-icons_white.png │ │ ├── init.js │ │ └── js.php ├── tpl │ ├── .htaccess │ ├── tpl_browser.php │ ├── tpl_css.php │ └── tpl_javascript.php └── upload.php ├── kocart.sql ├── license.txt ├── readme.md ├── system ├── .htaccess ├── core │ ├── Benchmark.php │ ├── CodeIgniter.php │ ├── Common.php │ ├── Config.php │ ├── Controller.php │ ├── Exceptions.php │ ├── Hooks.php │ ├── Input.php │ ├── Lang.php │ ├── Loader.php │ ├── Model.php │ ├── Output.php │ ├── Router.php │ ├── Security.php │ ├── URI.php │ ├── Utf8.php │ └── index.html ├── database │ ├── DB.php │ ├── DB_active_rec.php │ ├── DB_cache.php │ ├── DB_driver.php │ ├── DB_forge.php │ ├── DB_result.php │ ├── DB_utility.php │ ├── drivers │ │ ├── cubrid │ │ │ ├── cubrid_driver.php │ │ │ ├── cubrid_forge.php │ │ │ ├── cubrid_result.php │ │ │ ├── cubrid_utility.php │ │ │ └── index.html │ │ ├── index.html │ │ ├── mssql │ │ │ ├── index.html │ │ │ ├── mssql_driver.php │ │ │ ├── mssql_forge.php │ │ │ ├── mssql_result.php │ │ │ └── mssql_utility.php │ │ ├── mysql │ │ │ ├── index.html │ │ │ ├── mysql_driver.php │ │ │ ├── mysql_forge.php │ │ │ ├── mysql_result.php │ │ │ └── mysql_utility.php │ │ ├── mysqli │ │ │ ├── index.html │ │ │ ├── mysqli_driver.php │ │ │ ├── mysqli_forge.php │ │ │ ├── mysqli_result.php │ │ │ └── mysqli_utility.php │ │ ├── oci8 │ │ │ ├── index.html │ │ │ ├── oci8_driver.php │ │ │ ├── oci8_forge.php │ │ │ ├── oci8_result.php │ │ │ └── oci8_utility.php │ │ ├── odbc │ │ │ ├── index.html │ │ │ ├── odbc_driver.php │ │ │ ├── odbc_forge.php │ │ │ ├── odbc_result.php │ │ │ └── odbc_utility.php │ │ ├── pdo │ │ │ ├── index.html │ │ │ ├── pdo_driver.php │ │ │ ├── pdo_forge.php │ │ │ ├── pdo_result.php │ │ │ └── pdo_utility.php │ │ ├── postgre │ │ │ ├── index.html │ │ │ ├── postgre_driver.php │ │ │ ├── postgre_forge.php │ │ │ ├── postgre_result.php │ │ │ └── postgre_utility.php │ │ ├── sqlite │ │ │ ├── index.html │ │ │ ├── sqlite_driver.php │ │ │ ├── sqlite_forge.php │ │ │ ├── sqlite_result.php │ │ │ └── sqlite_utility.php │ │ └── sqlsrv │ │ │ ├── index.html │ │ │ ├── sqlsrv_driver.php │ │ │ ├── sqlsrv_forge.php │ │ │ ├── sqlsrv_result.php │ │ │ └── sqlsrv_utility.php │ └── index.html ├── fonts │ ├── index.html │ └── texb.ttf ├── helpers │ ├── array_helper.php │ ├── captcha_helper.php │ ├── cookie_helper.php │ ├── date_helper.php │ ├── directory_helper.php │ ├── download_helper.php │ ├── email_helper.php │ ├── file_helper.php │ ├── form_helper.php │ ├── html_helper.php │ ├── index.html │ ├── inflector_helper.php │ ├── language_helper.php │ ├── number_helper.php │ ├── path_helper.php │ ├── security_helper.php │ ├── smiley_helper.php │ ├── string_helper.php │ ├── text_helper.php │ ├── typography_helper.php │ ├── url_helper.php │ └── xml_helper.php ├── index.html ├── language │ ├── english │ │ ├── calendar_lang.php │ │ ├── date_lang.php │ │ ├── db_lang.php │ │ ├── email_lang.php │ │ ├── form_validation_lang.php │ │ ├── ftp_lang.php │ │ ├── imglib_lang.php │ │ ├── index.html │ │ ├── migration_lang.php │ │ ├── number_lang.php │ │ ├── profiler_lang.php │ │ ├── unit_test_lang.php │ │ └── upload_lang.php │ └── index.html └── libraries │ ├── Cache │ ├── Cache.php │ ├── drivers │ │ ├── Cache_apc.php │ │ ├── Cache_dummy.php │ │ ├── Cache_file.php │ │ ├── Cache_memcached.php │ │ └── index.html │ └── index.html │ ├── Calendar.php │ ├── Cart.php │ ├── Driver.php │ ├── Email.php │ ├── Encrypt.php │ ├── Form_validation.php │ ├── Ftp.php │ ├── Image_lib.php │ ├── Javascript.php │ ├── Log.php │ ├── Migration.php │ ├── Pagination.php │ ├── Parser.php │ ├── Profiler.php │ ├── Session.php │ ├── Sha1.php │ ├── Table.php │ ├── Trackback.php │ ├── Typography.php │ ├── Unit_test.php │ ├── Upload.php │ ├── User_agent.php │ ├── Xmlrpc.php │ ├── Xmlrpcs.php │ ├── Zip.php │ ├── index.html │ └── javascript │ ├── Jquery.php │ └── index.html ├── upload ├── .htaccess ├── .thumbs │ └── files │ │ ├── banners │ │ └── reklam.png │ │ └── images │ │ ├── 20270206_r1.png │ │ ├── Samsung-ATIV-Tab-Product-Image-5.jpg │ │ ├── cache_500_1__i_8494672_HCD.jpg │ │ ├── logo.png │ │ ├── model01Detail.png │ │ └── test.jpg └── files │ ├── banners │ └── reklam.png │ └── images │ ├── 20270206_r1.png │ ├── Samsung-ATIV-Tab-Product-Image-5.jpg │ ├── cache_500_1__i_8494672_HCD.jpg │ ├── logo.png │ ├── model01Detail.png │ └── test.jpg └── user_guide ├── changelog.html ├── database ├── active_record.html ├── caching.html ├── call_function.html ├── configuration.html ├── connecting.html ├── examples.html ├── fields.html ├── forge.html ├── helpers.html ├── index.html ├── queries.html ├── results.html ├── table_data.html ├── transactions.html └── utilities.html ├── doc_style ├── index.html └── template.html ├── general ├── alternative_php.html ├── ancillary_classes.html ├── autoloader.html ├── caching.html ├── cli.html ├── common_functions.html ├── controllers.html ├── core_classes.html ├── creating_drivers.html ├── creating_libraries.html ├── credits.html ├── drivers.html ├── environments.html ├── errors.html ├── helpers.html ├── hooks.html ├── libraries.html ├── managing_apps.html ├── models.html ├── profiling.html ├── quick_reference.html ├── requirements.html ├── reserved_names.html ├── routing.html ├── security.html ├── styleguide.html ├── urls.html └── views.html ├── helpers ├── array_helper.html ├── captcha_helper.html ├── cookie_helper.html ├── date_helper.html ├── directory_helper.html ├── download_helper.html ├── email_helper.html ├── file_helper.html ├── form_helper.html ├── html_helper.html ├── inflector_helper.html ├── language_helper.html ├── number_helper.html ├── path_helper.html ├── security_helper.html ├── smiley_helper.html ├── string_helper.html ├── text_helper.html ├── typography_helper.html ├── url_helper.html └── xml_helper.html ├── images ├── appflowchart.gif ├── arrow.gif ├── ci_logo.jpg ├── ci_logo_flame.jpg ├── ci_quick_ref.png ├── codeigniter_1.7.1_helper_reference.pdf ├── codeigniter_1.7.1_helper_reference.png ├── codeigniter_1.7.1_library_reference.pdf ├── codeigniter_1.7.1_library_reference.png ├── file.gif ├── folder.gif ├── nav_bg_darker.jpg ├── nav_separator_darker.jpg ├── nav_toggle_darker.jpg ├── reactor-bullet.png ├── smile.gif └── transparent.gif ├── index.html ├── installation ├── downloads.html ├── index.html ├── troubleshooting.html ├── upgrade_120.html ├── upgrade_130.html ├── upgrade_131.html ├── upgrade_132.html ├── upgrade_133.html ├── upgrade_140.html ├── upgrade_141.html ├── upgrade_150.html ├── upgrade_152.html ├── upgrade_153.html ├── upgrade_154.html ├── upgrade_160.html ├── upgrade_161.html ├── upgrade_162.html ├── upgrade_163.html ├── upgrade_170.html ├── upgrade_171.html ├── upgrade_172.html ├── upgrade_200.html ├── upgrade_201.html ├── upgrade_202.html ├── upgrade_203.html ├── upgrade_210.html ├── upgrade_211.html ├── upgrade_212.html ├── upgrade_213.html ├── upgrade_214.html ├── upgrade_220.html ├── upgrade_b11.html └── upgrading.html ├── libraries ├── benchmark.html ├── caching.html ├── calendar.html ├── cart.html ├── config.html ├── email.html ├── encryption.html ├── file_uploading.html ├── form_validation.html ├── ftp.html ├── image_lib.html ├── input.html ├── javascript.html ├── language.html ├── loader.html ├── migration.html ├── output.html ├── pagination.html ├── parser.html ├── security.html ├── sessions.html ├── table.html ├── trackback.html ├── typography.html ├── unit_testing.html ├── uri.html ├── user_agent.html ├── xmlrpc.html └── zip.html ├── license.html ├── nav ├── hacks.txt ├── moo.fx.js ├── nav.js ├── prototype.lite.js └── user_guide_menu.js ├── overview ├── appflow.html ├── at_a_glance.html ├── cheatsheets.html ├── features.html ├── getting_started.html ├── goals.html ├── index.html └── mvc.html ├── toc.html ├── tutorial ├── conclusion.html ├── create_news_items.html ├── hard_coded_pages.html ├── index.html ├── news_section.html └── static_pages.html └── userguide.css /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | *.sln merge=union 7 | *.csproj merge=union 8 | *.vbproj merge=union 9 | *.fsproj merge=union 10 | *.dbproj merge=union 11 | 12 | # Standard to msysgit 13 | *.doc diff=astextplain 14 | *.DOC diff=astextplain 15 | *.docx diff=astextplain 16 | *.DOCX diff=astextplain 17 | *.dot diff=astextplain 18 | *.DOT diff=astextplain 19 | *.pdf diff=astextplain 20 | *.PDF diff=astextplain 21 | *.rtf diff=astextplain 22 | *.RTF diff=astextplain 23 | -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- 1 | 2 | RewriteEngine on 3 | RewriteBase / 4 | RewriteCond %{REQUEST_FILENAME} !-f 5 | RewriteCond %{REQUEST_FILENAME} !-d 6 | RewriteRule ^(.*)$ index.php?/$1 [L] -------------------------------------------------------------------------------- /application/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /application/cache/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /application/cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/config/doctypes.php: -------------------------------------------------------------------------------- 1 | '', 5 | 'xhtml1-strict' => '', 6 | 'xhtml1-trans' => '', 7 | 'xhtml1-frame' => '', 8 | 'html5' => '', 9 | 'html4-strict' => '', 10 | 'html4-trans' => '', 11 | 'html4-frame' => '' 12 | ); 13 | 14 | /* End of file doctypes.php */ 15 | /* Location: ./application/config/doctypes.php */ -------------------------------------------------------------------------------- /application/config/hooks.php: -------------------------------------------------------------------------------- 1 | '', 15 | 'function' => 'load_config', 16 | 'filename' => 'site_config.php', 17 | 'filepath' => 'hooks' 18 | ); 19 | 20 | /* End of file hooks.php */ 21 | /* Location: ./application/config/hooks.php */ -------------------------------------------------------------------------------- /application/config/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/config/migration.php: -------------------------------------------------------------------------------- 1 | migration->latest() this is the version that schema will 21 | | be upgraded / downgraded to. 22 | | 23 | */ 24 | $config['migration_version'] = 0; 25 | 26 | 27 | /* 28 | |-------------------------------------------------------------------------- 29 | | Migrations Path 30 | |-------------------------------------------------------------------------- 31 | | 32 | | Path to your migrations folder. 33 | | Typically, it will be within your application path. 34 | | Also, writing permission is required within the migrations path. 35 | | 36 | */ 37 | $config['migration_path'] = APPPATH . 'migrations/'; 38 | 39 | 40 | /* End of file migration.php */ 41 | /* Location: ./application/config/migration.php */ -------------------------------------------------------------------------------- /application/config/profiler.php: -------------------------------------------------------------------------------- 1 | data['categories'] = $this->categories_model->get_cats(); 14 | 15 | $this->load->view('login', $this->data); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /application/controllers/admin/account.php: -------------------------------------------------------------------------------- 1 | browser.php $_SESSION['validated'] creating. 10 | // account_model have $_SESSION['validated'] created. 11 | 12 | } 13 | 14 | public function login() 15 | { 16 | $this->load->view('admin/account/login'); 17 | 18 | } 19 | 20 | public function check(){ 21 | 22 | 23 | $email = $this->input->post("email"); 24 | $this->load->model('admin/account/login'); 25 | 26 | $result = $this->login->validate(); 27 | 28 | if(!$result){ 29 | $this->load->view('admin/account/login'); 30 | }else{ 31 | $this->session->set_flashdata('action_message', 'Hosgeldiniz, Welcome, أهلاً وسهلاً, Bienvenida, Benvenuto, Bienvenue '); 32 | $this->session->set_flashdata('action_message_type', 'success'); 33 | redirect('admin/dashboard'); 34 | } 35 | 36 | 37 | } 38 | 39 | public function logout(){ 40 | $this->session->sess_destroy(); 41 | session_start(); 42 | session_destroy(); 43 | 44 | redirect('admin/account/login'); 45 | 46 | } 47 | 48 | } 49 | 50 | /* End of file welcome.php */ 51 | /* Location: ./application/controllers/welcome.php */ -------------------------------------------------------------------------------- /application/controllers/admin/dashboard.php: -------------------------------------------------------------------------------- 1 | session->userdata('validated')){ 11 | redirect('admin/account/login'); 12 | } 13 | 14 | } 15 | 16 | 17 | public function index(){ 18 | 19 | 20 | $this->load->model('admin/dashboard_model'); 21 | 22 | $data["total_order"] = $this->dashboard_model->orders_count(); 23 | $data["orders"] = $this->dashboard_model->orders(); 24 | 25 | 26 | $this->load->view('admin/dashboard', $data); 27 | 28 | 29 | 30 | } 31 | 32 | } 33 | 34 | /* End of file welcome.php */ 35 | /* Location: ./application/controllers/welcome.php */ -------------------------------------------------------------------------------- /application/controllers/currency.php: -------------------------------------------------------------------------------- 1 | load->model('currency_model'); 10 | $id = $this->security->xss_clean($this->uri->segment(3)); 11 | 12 | $is_valid = $this->currency_model->id_is_valid($id); 13 | 14 | if ($id != "" & $is_valid == true) { 15 | $this->session->set_userdata('currency', $id); 16 | } 17 | 18 | redirect($_SERVER['HTTP_REFERER']); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /application/controllers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | <<<<<<< HEAD 11 | 12 | ======= 13 | 14 | >>>>>>> d26a8dc6c5436e22cd011e58157e26a07feea355 15 | -------------------------------------------------------------------------------- /application/controllers/language.php: -------------------------------------------------------------------------------- 1 | security->xss_clean($this->uri->segment(3)); 10 | 11 | if ($id == "tr") { 12 | $this->session->set_userdata('lang', '1'); 13 | $this->session->set_userdata('lang_file', 'turkish'); 14 | } 15 | if ($id == "en") { 16 | $this->session->set_userdata('lang', '2'); 17 | $this->session->set_userdata('lang_file', 'english'); 18 | } 19 | 20 | redirect($_SERVER['HTTP_REFERER']); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /application/controllers/page.php: -------------------------------------------------------------------------------- 1 | load->model('pages_model'); 10 | 11 | //Products... 12 | $this->data['page_details'] = $this->pages_model->pages_detail($this->uri->segment(2)); 13 | $this->data['slider_products'] = $this->products_model->slider_products(); 14 | 15 | //Menu... 16 | $this->data['categories'] = $this->categories_model->get_cats(); 17 | 18 | $this->load->view('page', $this->data); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /application/controllers/payment/banktransfer.php: -------------------------------------------------------------------------------- 1 | load->view('payment/banktransfer'); 18 | } 19 | 20 | } 21 | 22 | -------------------------------------------------------------------------------- /application/core/MY_Controller.php: -------------------------------------------------------------------------------- 1 | setLang(); 15 | 16 | /** Actual currency info from Database 17 | * from library/currency_library.php 18 | * Variables: id, name, currency, code, symbol, standart 19 | * example: $this->data['currency_currency']; 20 | */ 21 | $currency_info = $this->currency_library->currency('currency'); 22 | $this->data['currency_currency'] = $currency_info[0]->currency; 23 | $this->data['currency_symbol'] = $currency_info[0]->symbol; 24 | 25 | /** Actual cart total infos from Shopping Cart Class 26 | * from codeigniter library base 27 | * Variables: $this->cart->total(), $this->cart->total_items(), 28 | * example: $this->cart->total() 29 | */ 30 | $this->data['cart_total'] = $this->cart->format_number(($this->cart->total()) * $this->data['currency_currency']); 31 | } 32 | 33 | public function setLang() 34 | { 35 | $this->lang->load('home', $this->session->userdata('lang_file')); 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /application/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/errors/error_404.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 404 Page Not Found 5 | 55 | 56 | 57 |
58 |

59 | 60 |
61 | 62 | -------------------------------------------------------------------------------- /application/errors/error_db.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Database Error 5 | 55 | 56 | 57 |
58 |

59 | 60 |
61 | 62 | -------------------------------------------------------------------------------- /application/errors/error_general.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Error 5 | 55 | 56 | 57 |
58 |

59 | 60 |
61 | 62 | -------------------------------------------------------------------------------- /application/errors/error_php.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |

A PHP Error was encountered

4 | 5 |

Severity:

6 |

Message:

7 |

Filename:

8 |

Line Number:

9 | 10 |
-------------------------------------------------------------------------------- /application/errors/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/helpers/currency_helper.php: -------------------------------------------------------------------------------- 1 | load->database(); 9 | $CI->load->library('session'); 10 | $CI->load->model('admin/settings_model'); 11 | 12 | if($CI->session->userdata('currency') == ""){ 13 | 14 | $CI->session->set_userdata('currency', $CI->settings_model->get_default_currency_id(1)); 15 | } 16 | ?> -------------------------------------------------------------------------------- /application/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/helpers/language_helper.php: -------------------------------------------------------------------------------- 1 | load->database(); 9 | $CI->load->library('session'); 10 | $CI->load->model('admin/settings_model'); 11 | 12 | if($CI->session->userdata('lang') == ""){ 13 | $CI->session->set_userdata('lang', $CI->settings_model->get_default_language_id(1)); 14 | $CI->session->set_userdata('lang_file', $CI->settings_model->get_default_language_filename(1)); 15 | 16 | } 17 | 18 | ?> -------------------------------------------------------------------------------- /application/hooks/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/hooks/site_config.php: -------------------------------------------------------------------------------- 1 | db->get('settings'); 7 | foreach($query->result() as $site_config) 8 | { 9 | $CI->config->set_item('title', $site_config->title); 10 | $CI->config->set_item('description', $site_config->description); 11 | $CI->config->set_item('meta_tags', $site_config->meta_tags); 12 | $CI->config->set_item('name', $site_config->name); 13 | $CI->config->set_item('owner', $site_config->owner); 14 | $CI->config->set_item('address', $site_config->address); 15 | $CI->config->set_item('email', $site_config->email); 16 | $CI->config->set_item('telefon', $site_config->telefon); 17 | $CI->config->set_item('logo', $site_config->logo); 18 | } 19 | } 20 | ?> -------------------------------------------------------------------------------- /application/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/language/english/cart_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/language/english/order/cargo_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/language/turkish/cart_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/language/turkish/order/cargo_lang.php: -------------------------------------------------------------------------------- 1 | CI = & get_instance(); 10 | $this->CI->load->library('session'); 11 | $query = $this->CI->db->query('SELECT * FROM currency WHERE id = '.$this->CI->session->userdata('currency').''); 12 | return $query->result(); 13 | 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /application/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/logs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/models/admin/account/login.php: -------------------------------------------------------------------------------- 1 | security->xss_clean($this->input->post('email')); 13 | $password = $this->security->xss_clean($this->input->post('password')); 14 | 15 | // Prep the query 16 | $this->db->where('email', $username); 17 | $this->db->where('password', $password); 18 | 19 | // Run the query 20 | $query = $this->db->get('admin'); 21 | // Let's check if there are any results 22 | if($query->num_rows == 1) 23 | { 24 | // If there is a user, then create session data 25 | $row = $query->row(); 26 | $data = array( 27 | 'id' => $row->id, 28 | 'email' => $row->email, 29 | 'name' => $row->name, 30 | 'validated' => true 31 | ); 32 | $this->session->set_userdata($data); 33 | $_SESSION['validated']= true; 34 | 35 | return true; 36 | } 37 | // If the previous process did not validate 38 | // then return false. 39 | return false; 40 | } 41 | } 42 | ?> -------------------------------------------------------------------------------- /application/models/admin/dashboard_model.php: -------------------------------------------------------------------------------- 1 | db->where('status', 1); 11 | return $this->db->count_all("order"); 12 | } 13 | function orders() 14 | { 15 | $query = $this->db->order_by('order_id')->get('order'); 16 | return $query->result(); 17 | 18 | } 19 | 20 | } -------------------------------------------------------------------------------- /application/models/admin/language_model.php: -------------------------------------------------------------------------------- 1 | db->where('status', 1); 11 | return $this->db->count_all("order"); 12 | } 13 | function languages(){ 14 | $query = $this->db->order_by('default', 'desc')->get('language'); 15 | return $query->result(); 16 | } 17 | 18 | function get_language($language_id){ 19 | $query = $this->db->query("SELECT * FROM language WHERE id = '".$language_id."'"); 20 | return $query->row('language_name'); 21 | } 22 | } -------------------------------------------------------------------------------- /application/models/cargo_model.php: -------------------------------------------------------------------------------- 1 | db->query('SELECT * FROM cargo WHERE status = "1" ORDER BY id ASC'); 13 | return $query->result(); 14 | } 15 | public function cargo_detail($id) 16 | { 17 | $query = $this->db->query('SELECT * FROM cargo WHERE id = "'.$id.'"'); 18 | return $query->result(); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /application/models/categorys.php: -------------------------------------------------------------------------------- 1 | db->query('SELECT category.id, category.link, category_description.category_name 13 | FROM category INNER JOIN category_description 14 | ON category.id=category_description.category_id 15 | WHERE category_description.language_id = '.$this->session->userdata('lang').' 16 | ORDER BY category.rank'); 17 | return $query->result(); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /application/models/currency_model.php: -------------------------------------------------------------------------------- 1 | db->where('id', $id); 13 | $query = $this->db->get("currency"); 14 | if ($query->num_rows() > 0) { 15 | return true; 16 | } 17 | 18 | return false; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /application/models/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/models/menu.php: -------------------------------------------------------------------------------- 1 | db->query('SELECT menu.id, menu.link, menu_description.menu_name 13 | FROM menu INNER JOIN menu_description 14 | ON menu.id=menu_description.menu_id 15 | WHERE menu_description.language_id = '.$this->session->userdata('lang').' 16 | ORDER BY menu.rank'); 17 | return $query->result(); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /application/models/order_model.php: -------------------------------------------------------------------------------- 1 | db->insert('order', $data); 13 | $order_id = $this->db->insert_id(); 14 | 15 | foreach ($products as $product) { 16 | $order_product = array( 17 | 'order_id' => $order_id, 18 | 'product_id' => $product['id'], 19 | 'count' => $product['qty'], 20 | 'options' => implode(',', $product['options']) 21 | ); 22 | 23 | $this->db->insert('order_detail', $order_product); 24 | } 25 | return $order_id; 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /application/models/pages.php: -------------------------------------------------------------------------------- 1 | db->query('SELECT page.*, page_description.* 14 | FROM page INNER JOIN page_description 15 | ON page.id=page_description.page_id 16 | WHERE page_description.language_id = '.$this->session->userdata('lang').' AND page.id = '.$id.''); 17 | return $query->result(); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /application/models/pages_model.php: -------------------------------------------------------------------------------- 1 | db->query('SELECT page.*, page_description.* 14 | FROM page INNER JOIN page_description 15 | ON page.id=page_description.page_id 16 | WHERE page_description.language_id = '.$this->session->userdata('lang').' AND page.id = '.$id.''); 17 | return $query->result(); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /application/models/payment.php: -------------------------------------------------------------------------------- 1 | db->query('SELECT * FROM extension ORDER BY id'); 13 | return $query->result(); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /application/models/payment/paypal/paypalfunctions.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/models/payment_model.php: -------------------------------------------------------------------------------- 1 | db->query('SELECT * FROM extension ORDER BY id'); 13 | return $query->result(); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /application/third_party/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/views/admin/category/list.php: -------------------------------------------------------------------------------- 1 | load->view('admin/header'); ?> 2 |
3 | 4 |
5 |

6 | Dashboard // Category List 7 |

8 |

Add New

9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 27 | 28 | 29 | 30 | 31 |
NameRankAction
category_name; ?>rank; ?> 25 | 26 |
32 |

33 |
34 | 35 | 36 |
37 | 38 | 39 | 40 | 41 | load->view('admin/footer'); ?> -------------------------------------------------------------------------------- /application/views/admin/footer.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /application/views/admin/module/list.php: -------------------------------------------------------------------------------- 1 | load->view('admin/header'); ?> 2 |
3 | 4 |
5 |

6 | Dashboard // Module List 7 |

8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 |
Module IDNameDetailsAction
id; ?>name; ?>details; ?>
32 |

33 |
34 | 35 | 36 |
37 | 38 | 39 | 40 | 41 | load->view('admin/footer'); ?> -------------------------------------------------------------------------------- /application/views/admin/order.php: -------------------------------------------------------------------------------- 1 | load->view('admin/header'); ?> 2 |
3 | 4 |
5 |

6 | Dashboard Orders List 7 |

8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 |
Order IDNameTotalAction
order_id; ?>customer_id; ?>total; ?>
32 |

33 |
34 | 35 | 36 |
37 | 38 | 39 | 40 | 41 | load->view('admin/footer'); ?> -------------------------------------------------------------------------------- /application/views/admin/order/list.php: -------------------------------------------------------------------------------- 1 | load->view('admin/header'); ?> 2 |
3 | 4 |
5 |

6 | Dashboard // Orders List 7 |

8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 |
Order IDNameTotalAction
order_id; ?>customer_id == 0){ ?> Visitor customer_id; ?> total; ?>
32 |

33 |
34 | 35 | 36 |
37 | 38 | 39 | 40 | 41 | load->view('admin/footer'); ?> -------------------------------------------------------------------------------- /application/views/login.php: -------------------------------------------------------------------------------- 1 | load->view('header'); ?> 2 | 3 |
4 | 5 |
6 | 7 |
8 |
9 | 10 |
11 |
12 | 13 |
14 | 15 | 16 | 17 | 18 |
19 | 20 |
21 | 22 |
23 | 24 | load->view('footer'); ?> 25 | -------------------------------------------------------------------------------- /application/views/order/cargo.php: -------------------------------------------------------------------------------- 1 | load->view('header'); ?> 2 |
3 |
4 | session->flashdata('error') != ""){ ?> 5 | 6 |

session->flashdata('error'); ?>

7 | 8 | 9 | 10 | 11 | 12 |
13 | 16 |
17 | 18 | 19 | 20 |

21 | 22 | 23 |
24 | 25 |
26 | load->view('footer'); ?> -------------------------------------------------------------------------------- /application/views/order/confirm.php: -------------------------------------------------------------------------------- 1 | load->view('header'); ?> 2 | 3 |
4 | 5 |
6 | 7 |
8 |

Order Completed

9 |

Order ID

10 | 11 |
12 | 13 |
14 | 15 |
16 | 17 | load->view('footer'); ?> 18 | -------------------------------------------------------------------------------- /application/views/order/payment.php: -------------------------------------------------------------------------------- 1 | load->view('header'); ?> 2 |
3 |
4 | session->flashdata('error') != ""){ ?> 5 | 6 |

session->flashdata('error'); ?>

7 | 8 | 9 | 10 | 11 | 16 |
17 |
18 |

19 | 20 | 21 |
22 | 23 |
24 | load->view('footer'); ?> 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /application/views/payment/banktransfer.php: -------------------------------------------------------------------------------- 1 | Bank Account Name : BLABLA LTD.
2 | IBAN : TR88 0006 2001 0970 0006 6664 76
3 | 4 | -------------------------------------------------------------------------------- /application/views/payment/paypal.php: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 |
6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | cart->contents() as $items): ?> 19 | 20 | 21 | 22 | 23 | 24 | 25 | cart->format_number($items['price']); ?> 26 | 27 | 28 | 29 | 30 | 31 | 32 | cart->format_number($this->cart->total()); ?> 33 | 34 | 35 |
-------------------------------------------------------------------------------- /cgi-bin/test/test.cgi: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl 2 | 3 | print < 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | HTML 17 | 18 | my $class; 19 | 20 | foreach (sort keys %ENV) { 21 | next unless /^HTTP_|^REQUEST_/; 22 | $class = ($class ne 'normal')? 'normal': 'alt'; 23 | print < 25 | HTML 26 | } 27 | 28 | print < 30 | 31 | 32 | HTML 33 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ko/kocart", 3 | "description": "Simple Shopping System", 4 | "license": "MIT", 5 | "authors": [ 6 | { 7 | "name": "Koray Zorluoglu", 8 | "email": "korayzorluoglu1@hotmail.com" 9 | } 10 | ], 11 | "minimum-stability": "dev", 12 | "require": {} 13 | } 14 | -------------------------------------------------------------------------------- /css/bootstrap-combobox.css: -------------------------------------------------------------------------------- 1 | .form-search .combobox-container, 2 | .form-inline .combobox-container { 3 | display: inline-block; 4 | margin-bottom: 0; 5 | vertical-align: top; 6 | } 7 | .form-search .combobox-container .input-group-addon, 8 | .form-inline .combobox-container .input-group-addon { 9 | width: auto; 10 | } 11 | .combobox-selected .caret { 12 | display: none; 13 | } 14 | /* :not doesn't work in IE8 */ 15 | .combobox-container:not(.combobox-selected) .glyphicon-remove { 16 | display: none; 17 | } 18 | .typeahead-long { 19 | max-height: 300px; 20 | overflow-y: auto; 21 | } 22 | .control-group.error .combobox-container .add-on { 23 | color: #B94A48; 24 | border-color: #B94A48; 25 | } 26 | .control-group.error .combobox-container .caret { 27 | border-top-color: #B94A48; 28 | } 29 | .control-group.warning .combobox-container .add-on { 30 | color: #C09853; 31 | border-color: #C09853; 32 | } 33 | .control-group.warning .combobox-container .caret { 34 | border-top-color: #C09853; 35 | } 36 | .control-group.success .combobox-container .add-on { 37 | color: #468847; 38 | border-color: #468847; 39 | } 40 | .control-group.success .combobox-container .caret { 41 | border-top-color: #468847; 42 | } 43 | -------------------------------------------------------------------------------- /css/plugins/morris.css: -------------------------------------------------------------------------------- 1 | .morris-hover{position:absolute;z-index:1000}.morris-hover.morris-default-style{border-radius:10px;padding:6px;color:#666;background:rgba(255,255,255,0.8);border:solid 2px rgba(230,230,230,0.8);font-family:sans-serif;font-size:12px;text-align:center}.morris-hover.morris-default-style .morris-hover-row-label{font-weight:bold;margin:0.25em 0} 2 | .morris-hover.morris-default-style .morris-hover-point{white-space:nowrap;margin:0.1em 0} 3 | -------------------------------------------------------------------------------- /css/sm-blue/css-gradients-fallback/current-item-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/css/sm-blue/css-gradients-fallback/current-item-bg.png -------------------------------------------------------------------------------- /css/sm-blue/css-gradients-fallback/main-item-hover-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/css/sm-blue/css-gradients-fallback/main-item-hover-bg.png -------------------------------------------------------------------------------- /css/sm-blue/css-gradients-fallback/main-menu-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/css/sm-blue/css-gradients-fallback/main-menu-bg.png -------------------------------------------------------------------------------- /css/sm-blue/css-gradients-fallback/sub-item-hover-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/css/sm-blue/css-gradients-fallback/sub-item-hover-bg.png -------------------------------------------------------------------------------- /css/sm-blue/css-gradients-fallback/vertical-main-item-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/css/sm-blue/css-gradients-fallback/vertical-main-item-bg.png -------------------------------------------------------------------------------- /css/sm-core-css.css: -------------------------------------------------------------------------------- 1 | /* SmartMenus Core CSS (it's not recommended editing this) 2 | ===============================================================*/ 3 | 4 | .sm,.sm ul,.sm li{display:block;list-style:none;padding:0;margin:0;line-height:normal;direction:ltr;} 5 | ul.sm ul{position:absolute;top:-999999px;width:100px;} 6 | ul.sm li{position:relative;float:left;} 7 | ul.sm a{position:relative;display:block;white-space:nowrap;} 8 | ul.sm a.disabled{cursor:default;} 9 | .sm-rtl,.sm-rtl ul,.sm-rtl li{direction:rtl;} 10 | ul.sm-rtl li{float:right;} 11 | ul.sm ul li,ul.sm-vertical li{float:none;} 12 | ul.sm ul a,ul.sm-vertical a{white-space:normal;} 13 | ul.sm ul.sm-nowrap>li>a{white-space:nowrap;} 14 | ul.sm:after{content:"\00a0";display:block;height:0;font:0/0 serif;clear:both;visibility:hidden;overflow:hidden;} 15 | ul.sm,ul.sm *,ul.sm *:before,ul.sm *:after{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;} 16 | ul.sm{-webkit-tap-highlight-color:rgba(0,0,0,0);} -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /jquery-ui-1.11.2.custom/images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/jquery-ui-1.11.2.custom/images/Thumbs.db -------------------------------------------------------------------------------- /jquery-ui-1.11.2.custom/images/ui-bg_diagonals-thick_18_b81900_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/jquery-ui-1.11.2.custom/images/ui-bg_diagonals-thick_18_b81900_40x40.png -------------------------------------------------------------------------------- /jquery-ui-1.11.2.custom/images/ui-bg_diagonals-thick_20_666666_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/jquery-ui-1.11.2.custom/images/ui-bg_diagonals-thick_20_666666_40x40.png -------------------------------------------------------------------------------- /jquery-ui-1.11.2.custom/images/ui-bg_flat_10_000000_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/jquery-ui-1.11.2.custom/images/ui-bg_flat_10_000000_40x100.png -------------------------------------------------------------------------------- /jquery-ui-1.11.2.custom/images/ui-bg_glass_100_f6f6f6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/jquery-ui-1.11.2.custom/images/ui-bg_glass_100_f6f6f6_1x400.png -------------------------------------------------------------------------------- /jquery-ui-1.11.2.custom/images/ui-bg_glass_100_fdf5ce_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/jquery-ui-1.11.2.custom/images/ui-bg_glass_100_fdf5ce_1x400.png -------------------------------------------------------------------------------- /jquery-ui-1.11.2.custom/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/jquery-ui-1.11.2.custom/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /jquery-ui-1.11.2.custom/images/ui-bg_gloss-wave_35_f6a828_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/jquery-ui-1.11.2.custom/images/ui-bg_gloss-wave_35_f6a828_500x100.png -------------------------------------------------------------------------------- /jquery-ui-1.11.2.custom/images/ui-bg_highlight-soft_100_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/jquery-ui-1.11.2.custom/images/ui-bg_highlight-soft_100_eeeeee_1x100.png -------------------------------------------------------------------------------- /jquery-ui-1.11.2.custom/images/ui-bg_highlight-soft_75_ffe45c_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/jquery-ui-1.11.2.custom/images/ui-bg_highlight-soft_75_ffe45c_1x100.png -------------------------------------------------------------------------------- /jquery-ui-1.11.2.custom/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/jquery-ui-1.11.2.custom/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /jquery-ui-1.11.2.custom/images/ui-icons_228ef1_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/jquery-ui-1.11.2.custom/images/ui-icons_228ef1_256x240.png -------------------------------------------------------------------------------- /jquery-ui-1.11.2.custom/images/ui-icons_ef8c08_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/jquery-ui-1.11.2.custom/images/ui-icons_ef8c08_256x240.png -------------------------------------------------------------------------------- /jquery-ui-1.11.2.custom/images/ui-icons_ffd27a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/jquery-ui-1.11.2.custom/images/ui-icons_ffd27a_256x240.png -------------------------------------------------------------------------------- /jquery-ui-1.11.2.custom/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/jquery-ui-1.11.2.custom/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /js/jquery.kaydet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/js/jquery.kaydet.js -------------------------------------------------------------------------------- /kcfinder/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | upload/* 3 | [Tt]humbs.db 4 | *.DS_Store 5 | -------------------------------------------------------------------------------- /kcfinder/adapters/jquery-example.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | KCFinder jQuery Adapter Example 4 | 5 | 6 | 17 | 32 | 33 | 34 |
35 | 36 | -------------------------------------------------------------------------------- /kcfinder/adapters/jquery-min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery adapter for KCFinder 2 | * http://kcfinder.sunhater.com 3 | * Pavel Tzonkov 4 | */ 5 | (function(b){var a="browse.php";b.fn.kcfinder=function(d){var c,f,e=b(this).get(0),h={url:a,lang:"",theme:"",type:"",dir:"",callback:false,callbackMultiple:false},j=b(""),g=["lang","theme","type","dir"];b.extend(true,h,d);c=h.url;c+=(c.indexOf("?")===-1)?"?":"&";for(f in g){f=g[f];if(h[f].length){c+=f+"="+encodeURIComponent(h[f])+"&"}}c=c.substr(0,c.length-1);j.css({margin:0,padding:0,width:b(e).innerWidth(),height:b(e).innerHeight(),border:"none"}).attr({src:c});b(e).html(j);if(b.isFunction(h.callback)||b.isFunction(h.callbackMultiple)){if(!window.KCFinder){window.KCFinder={}}if(b.isFunction(h.callback)){window.KCFinder.callBack=h.callback}else{if(window.KCFinder&&window.KCFinder.callback){delete window.KCFinder.callback}}if(b.isFunction(h.callbackMultiple)){window.KCFinder.callBackMultiple=h.callbackMultiple}else{if(window.KCFinder&&window.KCFinder.callbackMultiple){delete window.KCFinder.callbackMultiple}}}else{if(window.KCFinder){delete window.KCFinder}}}})(jQuery); -------------------------------------------------------------------------------- /kcfinder/browse.php: -------------------------------------------------------------------------------- 1 | 10 | * @copyright 2010-2014 KCFinder Project 11 | * @license http://opensource.org/licenses/GPL-3.0 GPLv3 12 | * @license http://opensource.org/licenses/LGPL-3.0 LGPLv3 13 | * @link http://kcfinder.sunhater.com 14 | */ 15 | if (!isset($_SESSION['validated'])){ 16 | die(); 17 | } 18 | require "core/bootstrap.php"; 19 | 20 | $browser = "kcfinder\\browser"; // To execute core/bootstrap.php on older 21 | 22 | $browser = new $browser(); // PHP versions (even PHP 4) 23 | $browser->action(); 24 | -------------------------------------------------------------------------------- /kcfinder/cache/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Order allow,deny 3 | Deny from all 4 | 5 | -------------------------------------------------------------------------------- /kcfinder/cache/theme_dark.js: -------------------------------------------------------------------------------- 1 | $.each(["loading.gif","ui-icons_black.png","ui-icons_grey.png","ui-icons_white.png"],function(b,a){new Image().src="themes/dark/img/"+a}); -------------------------------------------------------------------------------- /kcfinder/cache/theme_default.js: -------------------------------------------------------------------------------- 1 | // Preload some images 2 | $.each([ 3 | "loading.gif", 4 | "ui-icons_black.png", 5 | "ui-icons_blue.png", 6 | "ui-icons_white.png" 7 | ], function(i, img) { 8 | new Image().src = "themes/default/img/" + img; 9 | }); 10 | -------------------------------------------------------------------------------- /kcfinder/cad/.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 | -------------------------------------------------------------------------------- /kcfinder/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "sunhater/kcfinder", 3 | "description": "KCFinder web file manager", 4 | "version": "3.20-test2", 5 | "type": "library", 6 | "keywords": [ 7 | "kcfinder", 8 | "finder", 9 | "file", 10 | "manager", 11 | "explorer", 12 | "file manager", 13 | "file explorer" 14 | ], 15 | "homepage": "http://kcfinder.sunhater.com", 16 | "time": "2014-08-24", 17 | "license": [ 18 | "GPL-3.0+", 19 | "LGPL-3.0+" 20 | ], 21 | "authors": [ 22 | { 23 | "name": "Pavel Tzonkov", 24 | "email": "sunhater@sunhater.com", 25 | "homepage": "http://sunhater.com", 26 | "role": "Developer" 27 | } 28 | ], 29 | "support": { 30 | "email": "sunhater@sunhater.com", 31 | "issues": "https://github.com/sunhater/kcfinder/issues", 32 | "source": "https://github.com/sunhater/kcfinder" 33 | }, 34 | "require": { 35 | "php": ">=5.3.0", 36 | "ext-gd": "*" 37 | }, 38 | "suggest": { 39 | "ext-fileinfo": "*", 40 | "ext-exif": "*", 41 | "ext-curl": "*", 42 | "ext-http": "*", 43 | "ext-sockets": "*", 44 | "ext-imagick": "*", 45 | "ext-gmagick": "*", 46 | "ext-zip": "*" 47 | } 48 | } -------------------------------------------------------------------------------- /kcfinder/conf/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Order allow,deny 3 | Deny from all 4 | 5 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /kcfinder/core/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Order allow,deny 3 | Deny from all 4 | 5 | -------------------------------------------------------------------------------- /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 | if (in_array($class, array("uploader", "browser", "minifier", "session"))) 25 | require "core/class/$class.php"; 26 | elseif (file_exists("core/types/$class.php")) 27 | require "core/types/$class.php"; 28 | elseif (file_exists("lib/class_$class.php")) 29 | require "lib/class_$class.php"; 30 | elseif (file_exists("lib/helper_$class.php")) 31 | require "lib/helper_$class.php"; 32 | } 33 | }); 34 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | } -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /kcfinder/doc/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Order allow,deny 3 | Deny from all 4 | 5 | -------------------------------------------------------------------------------- /kcfinder/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/favicon.ico -------------------------------------------------------------------------------- /kcfinder/index.php: -------------------------------------------------------------------------------- 1 | 2 | Order allow,deny 3 | Deny from all 4 | 5 | -------------------------------------------------------------------------------- /kcfinder/js/010.jquery.fixes.js: -------------------------------------------------------------------------------- 1 | /** This file is part of KCFinder project 2 | * 3 | * @desc My jQuery UI fixes 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 | 15 | $.fn.oldMenu = $.fn.menu; 16 | $.fn.menu = function(p1, p2, p3) { 17 | var ret = $(this).oldMenu(p1, p2, p3); 18 | $(this).each(function() { 19 | if (!$(this).hasClass('sh-menu')) { 20 | $(this).addClass('sh-menu') 21 | .children().first().addClass('ui-menu-item-first'); 22 | $(this).children().last().addClass('ui-menu-item-last'); 23 | $(this).find('.ui-menu').addClass('sh-menu').each(function() { 24 | $(this).children().first().addClass('ui-menu-item-first'); 25 | $(this).children().last().addClass('ui-menu-item-last'); 26 | }); 27 | } 28 | }); 29 | return ret; 30 | }; 31 | 32 | })(jQuery); -------------------------------------------------------------------------------- /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 | $.globalBlur(); 19 | e.preventDefault(); 20 | $.clearSelection(); 21 | if ($.isFunction(func)) 22 | func(this, e); 23 | }); 24 | }); 25 | return $(this); 26 | }; 27 | })(jQuery); -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /kcfinder/lang/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Order allow,deny 3 | Deny from all 4 | 5 | -------------------------------------------------------------------------------- /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 | '_lang' => "English", 17 | '_native' => "English", 18 | '_locale' => "en_US.UTF-8", 19 | '_charset' => "utf-8", 20 | 21 | // Date time formats. See http://www.php.net/manual/en/function.strftime.php 22 | '_dateTimeFull' => "%A, %B %e, %Y %I:%M %p", 23 | '_dateTimeMid' => "%a %b %e %Y %I:%M %p", 24 | '_dateTimeSmall' => "%m/%d/%Y %I:%M %p", 25 | ); 26 | -------------------------------------------------------------------------------- /kcfinder/lib/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Order allow,deny 3 | Deny from all 4 | 5 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /kcfinder/themes/dark/css.php: -------------------------------------------------------------------------------- 1 | minify("cache/theme_$theme.css"); 11 | -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/bg_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/bg_transparent.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/..png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/..png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/.image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/.image.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/avi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/avi.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/bat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/bat.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/bmp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/bmp.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/bz2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/bz2.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/ccd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/ccd.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/cgi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/cgi.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/com.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/com.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/csh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/csh.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/cue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/cue.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/deb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/deb.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/dll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/dll.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/doc.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/docx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/docx.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/exe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/exe.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/fla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/fla.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/flv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/flv.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/fon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/fon.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/gif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/gif.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/gz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/gz.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/htm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/htm.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/html.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/ini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/ini.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/iso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/iso.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/jar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/jar.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/java.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/jpeg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/jpeg.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/jpg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/jpg.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/js.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/mds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/mds.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/mdx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/mdx.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/mid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/mid.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/midi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/midi.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/mkv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/mkv.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/mov.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/mov.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/mp3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/mp3.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/mp4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/mp4.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/mpeg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/mpeg.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/mpg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/mpg.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/nfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/nfo.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/nrg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/nrg.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/ogg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/ogg.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/pdf.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/php.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/php.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/phps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/phps.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/pl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/pl.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/pm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/pm.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/png.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/ppt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/ppt.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/pptx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/pptx.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/psd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/psd.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/qt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/qt.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/rar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/rar.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/rpm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/rpm.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/rtf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/rtf.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/sh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/sh.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/sql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/sql.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/srt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/srt.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/sub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/sub.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/swf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/swf.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/tgz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/tgz.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/tif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/tif.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/tiff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/tiff.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/torrent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/torrent.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/ttf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/ttf.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/txt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/txt.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/wav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/wav.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/wma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/wma.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/xls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/xls.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/xlsx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/xlsx.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/big/zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/big/zip.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/..png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/..png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/.image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/.image.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/avi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/avi.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/bat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/bat.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/bmp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/bmp.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/bz2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/bz2.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/ccd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/ccd.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/cgi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/cgi.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/com.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/com.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/csh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/csh.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/cue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/cue.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/deb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/deb.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/dll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/dll.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/doc.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/docx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/docx.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/exe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/exe.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/fla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/fla.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/flv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/flv.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/fon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/fon.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/gif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/gif.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/gz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/gz.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/htm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/htm.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/html.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/ini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/ini.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/iso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/iso.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/jar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/jar.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/java.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/jpeg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/jpeg.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/jpg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/jpg.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/js.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/mds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/mds.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/mdx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/mdx.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/mid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/mid.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/midi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/midi.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/mkv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/mkv.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/mov.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/mov.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/mp3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/mp3.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/mp4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/mp4.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/mpeg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/mpeg.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/mpg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/mpg.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/nfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/nfo.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/nrg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/nrg.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/ogg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/ogg.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/pdf.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/php.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/php.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/phps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/phps.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/pl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/pl.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/pm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/pm.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/png.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/ppt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/ppt.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/pptx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/pptx.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/psd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/psd.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/qt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/qt.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/rar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/rar.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/rpm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/rpm.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/rtf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/rtf.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/sh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/sh.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/sql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/sql.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/srt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/srt.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/sub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/sub.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/swf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/swf.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/tgz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/tgz.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/tif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/tif.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/tiff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/tiff.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/torrent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/torrent.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/ttf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/ttf.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/txt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/txt.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/wav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/wav.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/wma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/wma.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/xls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/xls.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/xlsx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/xlsx.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/files/small/zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/files/small/zip.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/icons/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/icons/about.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/icons/clipboard-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/icons/clipboard-add.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/icons/clipboard-clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/icons/clipboard-clear.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/icons/clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/icons/clipboard.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/icons/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/icons/copy.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/icons/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/icons/delete.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/icons/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/icons/download.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/icons/folder-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/icons/folder-new.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/icons/maximize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/icons/maximize.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/icons/move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/icons/move.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/icons/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/icons/refresh.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/icons/rename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/icons/rename.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/icons/select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/icons/select.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/icons/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/icons/settings.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/icons/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/icons/upload.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/icons/view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/icons/view.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/kcf_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/kcf_logo.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/loading.gif -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/tree/denied.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/tree/denied.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/tree/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/tree/folder.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/tree/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/tree/minus.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/tree/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/tree/plus.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/ui-icons_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/ui-icons_black.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/ui-icons_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/ui-icons_grey.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/img/ui-icons_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/dark/img/ui-icons_white.png -------------------------------------------------------------------------------- /kcfinder/themes/dark/init.js: -------------------------------------------------------------------------------- 1 | // Preload some images 2 | $.each([ 3 | "loading.gif", 4 | "ui-icons_black.png", 5 | "ui-icons_grey.png", 6 | "ui-icons_white.png" 7 | ], function(i, img) { 8 | new Image().src = "themes/dark/img/" + img; 9 | }); 10 | -------------------------------------------------------------------------------- /kcfinder/themes/dark/js.php: -------------------------------------------------------------------------------- 1 | minify("cache/theme_$theme.js"); 11 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /kcfinder/themes/default/css.php: -------------------------------------------------------------------------------- 1 | minify("cache/theme_$theme.css"); 11 | -------------------------------------------------------------------------------- /kcfinder/themes/default/img/bg_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/bg_transparent.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/..png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/..png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/.image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/.image.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/avi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/avi.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/bat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/bat.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/bmp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/bmp.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/bz2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/bz2.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/ccd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/ccd.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/cgi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/cgi.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/com.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/com.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/csh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/csh.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/cue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/cue.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/deb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/deb.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/dll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/dll.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/doc.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/docx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/docx.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/exe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/exe.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/fla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/fla.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/flv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/flv.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/fon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/fon.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/gif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/gif.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/gz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/gz.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/htm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/htm.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/html.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/ini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/ini.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/iso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/iso.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/jar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/jar.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/java.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/jpeg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/jpeg.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/jpg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/jpg.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/js.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/mds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/mds.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/mdx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/mdx.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/mid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/mid.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/midi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/midi.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/mkv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/mkv.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/mov.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/mov.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/mp3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/mp3.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/mp4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/mp4.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/mpeg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/mpeg.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/mpg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/mpg.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/nfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/nfo.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/nrg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/nrg.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/ogg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/ogg.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/pdf.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/php.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/php.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/phps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/phps.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/pl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/pl.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/pm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/pm.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/png.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/ppt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/ppt.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/pptx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/pptx.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/psd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/psd.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/qt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/qt.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/rar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/rar.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/rpm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/rpm.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/rtf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/rtf.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/sh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/sh.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/sql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/sql.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/srt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/srt.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/sub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/sub.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/swf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/swf.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/tgz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/tgz.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/tif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/tif.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/tiff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/tiff.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/torrent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/torrent.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/ttf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/ttf.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/txt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/txt.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/wav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/wav.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/wma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/wma.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/xls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/xls.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/xlsx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/xlsx.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/big/zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/big/zip.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/..png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/..png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/.image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/.image.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/avi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/avi.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/bat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/bat.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/bmp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/bmp.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/bz2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/bz2.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/ccd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/ccd.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/cgi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/cgi.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/com.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/com.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/csh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/csh.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/cue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/cue.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/deb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/deb.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/dll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/dll.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/doc.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/docx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/docx.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/exe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/exe.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/fla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/fla.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/flv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/flv.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/fon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/fon.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/gif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/gif.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/gz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/gz.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/htm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/htm.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/html.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/ini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/ini.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/iso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/iso.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/jar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/jar.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/java.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/jpeg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/jpeg.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/jpg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/jpg.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/js.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/mds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/mds.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/mdx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/mdx.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/mid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/mid.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/midi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/midi.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/mkv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/mkv.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/mov.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/mov.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/mp3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/mp3.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/mp4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/mp4.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/mpeg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/mpeg.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/mpg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/mpg.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/nfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/nfo.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/nrg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/nrg.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/ogg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/ogg.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/pdf.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/php.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/php.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/phps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/phps.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/pl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/pl.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/pm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/pm.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/png.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/ppt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/ppt.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/pptx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/pptx.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/psd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/psd.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/qt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/qt.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/rar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/rar.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/rpm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/rpm.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/rtf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/rtf.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/sh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/sh.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/sql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/sql.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/srt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/srt.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/sub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/sub.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/swf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/swf.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/tgz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/tgz.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/tif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/tif.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/tiff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/tiff.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/torrent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/torrent.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/ttf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/ttf.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/txt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/txt.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/wav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/wav.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/wma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/wma.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/xls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/xls.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/xlsx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/xlsx.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/files/small/zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/files/small/zip.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/icons/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/icons/about.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/icons/clipboard-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/icons/clipboard-add.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/icons/clipboard-clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/icons/clipboard-clear.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/icons/clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/icons/clipboard.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/icons/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/icons/copy.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/icons/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/icons/delete.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/icons/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/icons/download.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/icons/folder-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/icons/folder-new.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/icons/maximize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/icons/maximize.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/icons/move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/icons/move.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/icons/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/icons/refresh.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/icons/rename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/icons/rename.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/icons/select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/icons/select.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/icons/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/icons/settings.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/icons/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/icons/upload.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/icons/view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/icons/view.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/kcf_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/kcf_logo.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/loading.gif -------------------------------------------------------------------------------- /kcfinder/themes/default/img/tree/denied.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/tree/denied.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/tree/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/tree/folder.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/tree/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/tree/minus.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/tree/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/tree/plus.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/ui-icons_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/ui-icons_black.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/ui-icons_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/ui-icons_blue.png -------------------------------------------------------------------------------- /kcfinder/themes/default/img/ui-icons_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/kcfinder/themes/default/img/ui-icons_white.png -------------------------------------------------------------------------------- /kcfinder/themes/default/init.js: -------------------------------------------------------------------------------- 1 | // Preload some images 2 | $.each([ 3 | "loading.gif", 4 | "ui-icons_black.png", 5 | "ui-icons_blue.png", 6 | "ui-icons_white.png" 7 | ], function(i, img) { 8 | new Image().src = "themes/default/img/" + img; 9 | }); 10 | -------------------------------------------------------------------------------- /kcfinder/themes/default/js.php: -------------------------------------------------------------------------------- 1 | minify("cache/theme_$theme.js"); 11 | -------------------------------------------------------------------------------- /kcfinder/tpl/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Order allow,deny 3 | Deny from all 4 | -------------------------------------------------------------------------------- /kcfinder/tpl/tpl_css.php: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | KoCART 2 | ============================ 3 | Codeigniter Based Open Source E-Commerce System 4 | 5 | #### Installation 6 | 1. Change Urls and Encryption Key with your domain information. 7 | 8 | Config/config.php 9 | ``` 10 | $config['base_url'] = 'http://yourdomain.com/'; 11 | $config['admin_url'] = 'http://yourdomain.com/admin/'; 12 | $config['encryption_key'] = 'KoKoKoCart!'; 13 | ``` 14 | 2. Change database information with your information. 15 | ``` 16 | $db['default']['hostname'] = 'localhost'; 17 | $db['default']['username'] = 'username'; 18 | $db['default']['password'] = 'password'; 19 | $db['default']['database'] = 'database'; 20 | $db['default']['dbdriver'] = 'mysqli'; 21 | ``` 22 | 23 | ##### Note 24 | Admin Panel : http://www.yourdomain.com/admin/dashboard 25 | Admin Username : demo 26 | Admin Password : demo 27 | 28 | ##### Note 29 | Admin Panel Template : http://startbootstrap.com/template-overviews/sb-admin/ 30 | Homepage Template : http://startbootstrap.com/template-overviews/shop-homepage/ 31 | 32 | Requirements 33 | ------------- 34 | * PHP, MySQL 35 | 36 | 37 | Plugins/Frameworks 38 | ------------- 39 | 1. KCFinder 40 | 2. jQuery UI 41 | 42 | Roadway 43 | ------------- 44 | 45 | 1. Inovice Print, Show, Send Operations 46 | 2. Account Page(Orders, Account Detail, ..) 47 | 48 | Maybe Later 49 | ------------------------- 50 | 1. Payment Methods. 51 | 2. Shipping Methods. 52 | -------------------------------------------------------------------------------- /system/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /system/core/Model.php: -------------------------------------------------------------------------------- 1 | $key; 52 | } 53 | } 54 | // END Model Class 55 | 56 | /* End of file Model.php */ 57 | /* Location: ./system/core/Model.php */ -------------------------------------------------------------------------------- /system/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/cubrid/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/mssql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/mysql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/mysqli/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/oci8/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/odbc/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/pdo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/postgre/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/sqlite/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/fonts/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/fonts/texb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/system/fonts/texb.ttf -------------------------------------------------------------------------------- /system/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/language/english/ftp_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/language/english/migration_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/libraries/Cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/libraries/javascript/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /upload/.thumbs/files/banners/reklam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/upload/.thumbs/files/banners/reklam.png -------------------------------------------------------------------------------- /upload/.thumbs/files/images/20270206_r1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/upload/.thumbs/files/images/20270206_r1.png -------------------------------------------------------------------------------- /upload/.thumbs/files/images/Samsung-ATIV-Tab-Product-Image-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/upload/.thumbs/files/images/Samsung-ATIV-Tab-Product-Image-5.jpg -------------------------------------------------------------------------------- /upload/.thumbs/files/images/cache_500_1__i_8494672_HCD.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/upload/.thumbs/files/images/cache_500_1__i_8494672_HCD.jpg -------------------------------------------------------------------------------- /upload/.thumbs/files/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/upload/.thumbs/files/images/logo.png -------------------------------------------------------------------------------- /upload/.thumbs/files/images/model01Detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/upload/.thumbs/files/images/model01Detail.png -------------------------------------------------------------------------------- /upload/.thumbs/files/images/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/upload/.thumbs/files/images/test.jpg -------------------------------------------------------------------------------- /upload/files/banners/reklam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/upload/files/banners/reklam.png -------------------------------------------------------------------------------- /upload/files/images/20270206_r1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/upload/files/images/20270206_r1.png -------------------------------------------------------------------------------- /upload/files/images/Samsung-ATIV-Tab-Product-Image-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/upload/files/images/Samsung-ATIV-Tab-Product-Image-5.jpg -------------------------------------------------------------------------------- /upload/files/images/cache_500_1__i_8494672_HCD.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/upload/files/images/cache_500_1__i_8494672_HCD.jpg -------------------------------------------------------------------------------- /upload/files/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/upload/files/images/logo.png -------------------------------------------------------------------------------- /upload/files/images/model01Detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/upload/files/images/model01Detail.png -------------------------------------------------------------------------------- /upload/files/images/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/upload/files/images/test.jpg -------------------------------------------------------------------------------- /user_guide/images/appflowchart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/user_guide/images/appflowchart.gif -------------------------------------------------------------------------------- /user_guide/images/arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/user_guide/images/arrow.gif -------------------------------------------------------------------------------- /user_guide/images/ci_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/user_guide/images/ci_logo.jpg -------------------------------------------------------------------------------- /user_guide/images/ci_logo_flame.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/user_guide/images/ci_logo_flame.jpg -------------------------------------------------------------------------------- /user_guide/images/ci_quick_ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/user_guide/images/ci_quick_ref.png -------------------------------------------------------------------------------- /user_guide/images/codeigniter_1.7.1_helper_reference.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/user_guide/images/codeigniter_1.7.1_helper_reference.pdf -------------------------------------------------------------------------------- /user_guide/images/codeigniter_1.7.1_helper_reference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/user_guide/images/codeigniter_1.7.1_helper_reference.png -------------------------------------------------------------------------------- /user_guide/images/codeigniter_1.7.1_library_reference.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/user_guide/images/codeigniter_1.7.1_library_reference.pdf -------------------------------------------------------------------------------- /user_guide/images/codeigniter_1.7.1_library_reference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/user_guide/images/codeigniter_1.7.1_library_reference.png -------------------------------------------------------------------------------- /user_guide/images/file.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/user_guide/images/file.gif -------------------------------------------------------------------------------- /user_guide/images/folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/user_guide/images/folder.gif -------------------------------------------------------------------------------- /user_guide/images/nav_bg_darker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/user_guide/images/nav_bg_darker.jpg -------------------------------------------------------------------------------- /user_guide/images/nav_separator_darker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/user_guide/images/nav_separator_darker.jpg -------------------------------------------------------------------------------- /user_guide/images/nav_toggle_darker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/user_guide/images/nav_toggle_darker.jpg -------------------------------------------------------------------------------- /user_guide/images/reactor-bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/user_guide/images/reactor-bullet.png -------------------------------------------------------------------------------- /user_guide/images/smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/user_guide/images/smile.gif -------------------------------------------------------------------------------- /user_guide/images/transparent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzorluoglu/koCART/c07454329a5399c2afb5693c55563070674e5945/user_guide/images/transparent.gif -------------------------------------------------------------------------------- /user_guide/nav/hacks.txt: -------------------------------------------------------------------------------- 1 | I did the following hack in moo.fx.js: 2 | 3 | At line 79 in the toggle: function() function, I added: 4 | 5 | document.getElementById('nav').style.display = 'block'; 6 | 7 | -- Rick Ellis 8 | 9 | 10 | Also removed fx.Opacity and fx.Height from moo.fx.js -- Pascal -------------------------------------------------------------------------------- /user_guide/nav/user_guide_menu.js: -------------------------------------------------------------------------------- 1 | window.onload = function() { 2 | myHeight = new fx.Height('nav', {duration: 400}); 3 | myHeight.hide(); 4 | } --------------------------------------------------------------------------------
NameValue
$_$ENV{$_}