├── .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 |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 |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 |Directory access is forbidden.
8 | 9 | 10 | <<<<<<< HEAD 11 | 12 | ======= 13 |