├── .buildpath
├── .gitignore
├── .htaccess
├── .project
├── LICENSE
├── README.md
├── application
├── .htaccess
├── cache
│ ├── .htaccess
│ └── index.html
├── config
│ ├── autoload.php
│ ├── config.php
│ ├── constants.php
│ ├── database.php
│ ├── doctypes.php
│ ├── foreign_chars.php
│ ├── hooks.php
│ ├── index.html
│ ├── memcached.php
│ ├── migration.php
│ ├── mimes.php
│ ├── profiler.php
│ ├── routes.php
│ ├── smileys.php
│ └── user_agents.php
├── controllers
│ ├── Article.php
│ ├── Cart.php
│ ├── Home.php
│ ├── Info.php
│ ├── Order.php
│ ├── Page.php
│ ├── Product.php
│ ├── Upload.php
│ ├── User.php
│ ├── Welcome.php
│ ├── admin
│ │ ├── Category.php
│ │ ├── Dashboard.php
│ │ ├── Order.php
│ │ ├── Page.php
│ │ ├── Product.php
│ │ ├── Resize.php
│ │ └── User.php
│ ├── index.html
│ └── shop
│ │ ├── Category.php
│ │ └── Product.php
├── core
│ ├── MY_Controller.php
│ ├── MY_Loader.php
│ └── index.html
├── helpers
│ ├── index.html
│ └── shop_helper.php
├── hooks
│ └── index.html
├── index.html
├── language
│ ├── english
│ │ └── index.html
│ └── index.html
├── libraries
│ ├── Firephp.php
│ ├── Paginationlib.php
│ ├── REST_Ongkir.php
│ ├── Simpleimage.php
│ ├── Uploadhandler.php
│ └── index.html
├── logs
│ └── index.html
├── models
│ ├── Mcart.php
│ ├── Mcategory.php
│ ├── Mcategory_article.php
│ ├── Mcustomer.php
│ ├── Mhome.php
│ ├── Minfo.php
│ ├── Mmenu.php
│ ├── Morder.php
│ ├── Mpage.php
│ ├── Mpasar.php
│ ├── Mproduct.php
│ ├── Muser.php
│ ├── admin
│ │ └── Mdashboard.php
│ └── index.html
├── third_party
│ └── index.html
└── views
│ ├── admin
│ ├── admin_template
│ │ ├── admin_footer.php
│ │ ├── admin_header.php
│ │ └── admin_sidebar.php
│ ├── blank.php
│ ├── category.php
│ ├── category_list.php
│ ├── dashboard.php
│ ├── dashboard2.php
│ ├── info.php
│ ├── list_info.php
│ ├── list_page_admin.php
│ ├── order.php
│ ├── order_details.php
│ ├── page_admin.php
│ ├── product.php
│ ├── product_list.php
│ ├── product_success.php
│ ├── user.php
│ └── user_list.php
│ ├── errors
│ ├── cli
│ │ ├── error_404.php
│ │ ├── error_db.php
│ │ ├── error_exception.php
│ │ ├── error_general.php
│ │ ├── error_php.php
│ │ └── index.html
│ ├── html
│ │ ├── error_404.php
│ │ ├── error_db.php
│ │ ├── error_exception.php
│ │ ├── error_general.php
│ │ ├── error_php.php
│ │ └── index.html
│ └── index.html
│ ├── home.php
│ ├── index.html
│ ├── shop
│ ├── address.php
│ ├── basket_list.php
│ ├── blank.php
│ ├── cart_list.php
│ ├── categories.php
│ ├── category.php
│ ├── jne.php
│ ├── jne_track.php
│ ├── list_page.php
│ ├── login.php
│ ├── page
│ │ ├── about.php
│ │ ├── article.php
│ │ ├── collaboration.php
│ │ ├── contact.php
│ │ ├── create-account.php
│ │ ├── login.php
│ │ ├── page.php
│ │ ├── promo.php
│ │ └── stockist.php
│ ├── product.php
│ ├── product0.php
│ ├── product_detail.php
│ ├── products.php
│ ├── register.php
│ ├── shop_template
│ │ ├── index.html
│ │ ├── shop_footer.php
│ │ └── shop_header.php
│ └── template
│ │ ├── b002.php
│ │ ├── b002_detail.php
│ │ ├── b002_new.php
│ │ ├── b021.php
│ │ ├── product_old.php
│ │ └── test.php
│ ├── upload
│ ├── delete_success.php
│ └── upload_success.php
│ └── welcome_message.php
├── assets
├── .gitignore
├── css
│ ├── AdminLTE.css
│ ├── AdminLTE.min.css
│ ├── accordion.css
│ ├── adminlte.css
│ ├── blue.css
│ ├── bootstrap-theme.css
│ ├── bootstrap-theme.css.map
│ ├── bootstrap-theme.min.css
│ ├── bootstrap.css
│ ├── bootstrap.css.map
│ ├── bootstrap.min.css
│ ├── bootstrap3-wysihtml5.min.css
│ ├── campaign.css
│ ├── carousel.css
│ ├── custom.css
│ ├── datepicker3.css
│ ├── daterangepicker-bs3.css
│ ├── flexslider.css
│ ├── font-awesome.css
│ ├── font-awesome.min.css
│ ├── idangerous.swiper.css
│ ├── ionicons.min.css
│ ├── jquery-jvectormap-1.2.2.css
│ ├── jquery-ui.css
│ ├── jquery-ui.min.css
│ ├── jquery.fileupload-ui.css
│ ├── jquery.fileupload.css
│ ├── jquery.ui.widget.js
│ ├── memenu.css
│ ├── menu.css
│ ├── morris.css
│ ├── navbar-fixed-top.css
│ ├── normalize.css
│ ├── skeleton.css
│ ├── skins
│ │ ├── _all-skins.css
│ │ ├── _all-skins.min.css
│ │ ├── skin-black-light.css
│ │ ├── skin-black-light.min.css
│ │ ├── skin-black.css
│ │ ├── skin-black.min.css
│ │ ├── skin-blue-light.css
│ │ ├── skin-blue-light.min.css
│ │ ├── skin-blue.css
│ │ ├── skin-blue.min.css
│ │ ├── skin-green-light.css
│ │ ├── skin-green-light.min.css
│ │ ├── skin-green.css
│ │ ├── skin-green.min.css
│ │ ├── skin-purple-light.css
│ │ ├── skin-purple-light.min.css
│ │ ├── skin-purple.css
│ │ ├── skin-purple.min.css
│ │ ├── skin-red-light.css
│ │ ├── skin-red-light.min.css
│ │ ├── skin-red.css
│ │ ├── skin-red.min.css
│ │ ├── skin-yellow-light.css
│ │ ├── skin-yellow-light.min.css
│ │ ├── skin-yellow.css
│ │ └── skin-yellow.min.css
│ ├── slide.css
│ ├── style.css
│ └── tab.css
├── db
│ ├── alter.sql
│ └── gogreen.sql
├── fonts
│ ├── FontAwesome.otf
│ ├── fontawesome-webfont.eot
│ ├── fontawesome-webfont.svg
│ ├── fontawesome-webfont.ttf
│ ├── fontawesome-webfont.woff
│ ├── fontawesome-webfont.woff2
│ ├── fontawesome.otf
│ ├── glyphicons-halflings-regular.eot
│ ├── glyphicons-halflings-regular.svg
│ ├── glyphicons-halflings-regular.ttf
│ ├── glyphicons-halflings-regular.woff
│ ├── glyphicons-halflings-regular.woff2
│ ├── ionicons.eot
│ ├── ionicons.svg
│ ├── ionicons.ttf
│ └── ionicons.woff
├── img
│ ├── Thumbs.db
│ ├── banner.jpg
│ ├── cart2-2.png
│ ├── cart2.png
│ ├── close.png
│ ├── close_1.png
│ ├── co.png
│ ├── f1.jpg
│ ├── f2.jpg
│ ├── f3.jpg
│ ├── h1.png
│ ├── img-sprite1.png
│ ├── n1.jpg
│ ├── n2.jpg
│ ├── n3.jpg
│ ├── n4.jpg
│ ├── n5.jpg
│ ├── n6.jpg
│ ├── n7.jpg
│ ├── n8.jpg
│ ├── pa.png
│ ├── pi10.jpg
│ ├── pi2.jpg
│ ├── pi3.jpg
│ ├── pi4.jpg
│ ├── pi5.jpg
│ ├── pi6.jpg
│ ├── pi7.jpg
│ ├── pi8.jpg
│ ├── pi9.jpg
│ ├── product.jpg
│ ├── product1.jpg
│ ├── product2.jpg
│ ├── quotes.png
│ ├── s1.jpg
│ ├── s12.jpeg
│ ├── s2.jpg
│ ├── s3.jpeg
│ ├── si.jpg
│ ├── si1.jpeg
│ ├── si2.jpeg
│ ├── si3.jpeg
│ ├── to-top1.png
│ ├── user2-160x160.jpg
│ ├── user3-128x128.jpg
│ ├── user4-128x128.jpg
│ ├── user5-128x128.jpg
│ ├── user6-128x128.jpg
│ ├── user7-128x128.jpg
│ ├── user8-128x128.jpg
│ ├── xbanner.jpg
│ ├── xpi2.jpg
│ ├── xpi3.jpg
│ └── xpi4.jpg
├── js
│ ├── Chart.min.js
│ ├── app.js
│ ├── app.min.js
│ ├── bootstrap-datepicker.js
│ ├── bootstrap.js
│ ├── bootstrap.min.js
│ ├── bootstrap3-wysihtml5.all.min.js
│ ├── canvas-to-blob.min.js
│ ├── chart.min.js
│ ├── customize.min.js
│ ├── dashboard.js
│ ├── dashboard2.js
│ ├── daterangepicker.js
│ ├── demo.js
│ ├── docs.min.js
│ ├── easing.js
│ ├── easyResponsiveTabs.js
│ ├── fastclick.min.js
│ ├── html5shiv.min.js
│ ├── idangerous.swiper.min.js
│ ├── ie-emulation-modes-warning.js
│ ├── ie10-viewport-bug-workaround.js
│ ├── ie8-responsive-file-warning.js
│ ├── jackston.js
│ ├── jquery-1.11.3.min.js
│ ├── jquery-2.1.4.min.js
│ ├── jquery-jvectormap-1.2.2.css
│ ├── jquery-jvectormap-1.2.2.min.js
│ ├── jquery-jvectormap-world-mill-en.js
│ ├── jquery-ui.min.js
│ ├── jquery.blockUI.js
│ ├── jquery.easydropdown.js
│ ├── jquery.fileupload-angular.js
│ ├── jquery.fileupload-audio.js
│ ├── jquery.fileupload-image.js
│ ├── jquery.fileupload-jquery-ui.js
│ ├── jquery.fileupload-process.js
│ ├── jquery.fileupload-ui.js
│ ├── jquery.fileupload-validate.js
│ ├── jquery.fileupload-video.js
│ ├── jquery.fileupload.js
│ ├── jquery.flexslider.js
│ ├── jquery.iframe-transport.js
│ ├── jquery.knob.js
│ ├── jquery.min.js
│ ├── jquery.price_format.2.0.min.js
│ ├── jquery.slimscroll.min.js
│ ├── jquery.sparkline.min.js
│ ├── jquery.ui.widget.js
│ ├── jquery.wipetouch.js
│ ├── load-image.all.min.js
│ ├── main.js
│ ├── memenu.js
│ ├── modernizr.custom.js
│ ├── moment.min.js
│ ├── morris.min.js
│ ├── move-top.js
│ ├── mustache.min.js
│ ├── npm.js
│ ├── pages
│ │ ├── dashboard.js
│ │ └── dashboard2.js
│ ├── product.js
│ ├── raphael-min.js
│ ├── raw-files.min.js
│ ├── respond.min.js
│ ├── responsiveslides.min.js
│ ├── shop.js
│ ├── simpleCart.min.js
│ ├── simplecart.min.js
│ ├── src
│ │ ├── application.js
│ │ └── customizer.js
│ ├── upload.js
│ └── vendor
│ │ ├── Blob.js
│ │ ├── FileSaver.js
│ │ ├── ZeroClipboard.min.js
│ │ ├── anchor.js
│ │ ├── autoprefixer.js
│ │ ├── blob.js
│ │ ├── filesaver.js
│ │ ├── holder.min.js
│ │ ├── jquery.min.js
│ │ ├── jszip.min.js
│ │ ├── less.min.js
│ │ ├── uglify.min.js
│ │ └── zeroclipboard.min.js
└── php
│ ├── index.php
│ └── resize.php
├── composer.json
├── contributing.md
├── index.php
├── license.txt
├── readme.rst
├── shop-access_log
├── shop-error_log
├── system
├── .htaccess
├── core
│ ├── Benchmark.php
│ ├── CodeIgniter.php
│ ├── Common.php
│ ├── Config.php
│ ├── Controller.php
│ ├── Exceptions.php
│ ├── Hooks.php
│ ├── Input.php
│ ├── Lang.php
│ ├── Loader.php
│ ├── Log.php
│ ├── Model.php
│ ├── Output.php
│ ├── Router.php
│ ├── Security.php
│ ├── URI.php
│ ├── Utf8.php
│ ├── compat
│ │ ├── hash.php
│ │ ├── index.html
│ │ ├── mbstring.php
│ │ ├── password.php
│ │ └── standard.php
│ └── index.html
├── database
│ ├── DB.php
│ ├── DB_cache.php
│ ├── DB_driver.php
│ ├── DB_forge.php
│ ├── DB_query_builder.php
│ ├── DB_result.php
│ ├── DB_utility.php
│ ├── drivers
│ │ ├── cubrid
│ │ │ ├── cubrid_driver.php
│ │ │ ├── cubrid_forge.php
│ │ │ ├── cubrid_result.php
│ │ │ ├── cubrid_utility.php
│ │ │ └── index.html
│ │ ├── ibase
│ │ │ ├── ibase_driver.php
│ │ │ ├── ibase_forge.php
│ │ │ ├── ibase_result.php
│ │ │ ├── ibase_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
│ │ │ └── subdrivers
│ │ │ │ ├── index.html
│ │ │ │ ├── pdo_4d_driver.php
│ │ │ │ ├── pdo_4d_forge.php
│ │ │ │ ├── pdo_cubrid_driver.php
│ │ │ │ ├── pdo_cubrid_forge.php
│ │ │ │ ├── pdo_dblib_driver.php
│ │ │ │ ├── pdo_dblib_forge.php
│ │ │ │ ├── pdo_firebird_driver.php
│ │ │ │ ├── pdo_firebird_forge.php
│ │ │ │ ├── pdo_ibm_driver.php
│ │ │ │ ├── pdo_ibm_forge.php
│ │ │ │ ├── pdo_informix_driver.php
│ │ │ │ ├── pdo_informix_forge.php
│ │ │ │ ├── pdo_mysql_driver.php
│ │ │ │ ├── pdo_mysql_forge.php
│ │ │ │ ├── pdo_oci_driver.php
│ │ │ │ ├── pdo_oci_forge.php
│ │ │ │ ├── pdo_odbc_driver.php
│ │ │ │ ├── pdo_odbc_forge.php
│ │ │ │ ├── pdo_pgsql_driver.php
│ │ │ │ ├── pdo_pgsql_forge.php
│ │ │ │ ├── pdo_sqlite_driver.php
│ │ │ │ ├── pdo_sqlite_forge.php
│ │ │ │ ├── pdo_sqlsrv_driver.php
│ │ │ │ └── pdo_sqlsrv_forge.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
│ │ ├── sqlite3
│ │ │ ├── index.html
│ │ │ ├── sqlite3_driver.php
│ │ │ ├── sqlite3_forge.php
│ │ │ ├── sqlite3_result.php
│ │ │ └── sqlite3_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
│ │ ├── pagination_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
│ │ ├── Cache_redis.php
│ │ ├── Cache_wincache.php
│ │ └── index.html
│ └── index.html
│ ├── Calendar.php
│ ├── Cart.php
│ ├── Driver.php
│ ├── Email.php
│ ├── Encrypt.php
│ ├── Encryption.php
│ ├── Form_validation.php
│ ├── Ftp.php
│ ├── Image_lib.php
│ ├── Javascript.php
│ ├── Javascript
│ ├── Jquery.php
│ └── index.html
│ ├── Migration.php
│ ├── Pagination.php
│ ├── Parser.php
│ ├── Profiler.php
│ ├── Session
│ ├── Session.php
│ ├── SessionHandlerInterface.php
│ ├── Session_driver.php
│ ├── drivers
│ │ ├── Session_database_driver.php
│ │ ├── Session_files_driver.php
│ │ ├── Session_memcached_driver.php
│ │ ├── Session_redis_driver.php
│ │ └── index.html
│ └── index.html
│ ├── Table.php
│ ├── Trackback.php
│ ├── Typography.php
│ ├── Unit_test.php
│ ├── Upload.php
│ ├── User_agent.php
│ ├── Xmlrpc.php
│ ├── Xmlrpcs.php
│ ├── Zip.php
│ └── index.html
└── test.php
/.buildpath:
--------------------------------------------------------------------------------
1 |
2 |
Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/config/doctypes.php: -------------------------------------------------------------------------------- 1 | '', 6 | 'xhtml1-strict' => '', 7 | 'xhtml1-trans' => '', 8 | 'xhtml1-frame' => '', 9 | 'xhtml-basic11' => '', 10 | 'html5' => '', 11 | 'html4-strict' => '', 12 | 'html4-trans' => '', 13 | 'html4-frame' => '', 14 | 'mathml1' => '', 15 | 'mathml2' => '', 16 | 'svg10' => '', 17 | 'svg11' => '', 18 | 'svg11-basic' => '', 19 | 'svg11-tiny' => '', 20 | 'xhtml-math-svg-xh' => '', 21 | 'xhtml-math-svg-sh' => '', 22 | 'xhtml-rdfa-1' => '', 23 | 'xhtml-rdfa-2' => '' 24 | ); 25 | -------------------------------------------------------------------------------- /application/config/foreign_chars.php: -------------------------------------------------------------------------------- 1 | 'ae', 14 | '/ö|œ/' => 'oe', 15 | '/ü/' => 'ue', 16 | '/Ä/' => 'Ae', 17 | '/Ü/' => 'Ue', 18 | '/Ö/' => 'Oe', 19 | '/À|Á|Â|Ã|Ä|Å|Ǻ|Ā|Ă|Ą|Ǎ|Α|Ά|Ả|Ạ|Ầ|Ẫ|Ẩ|Ậ|Ằ|Ắ|Ẵ|Ẳ|Ặ|А/' => 'A', 20 | '/à|á|â|ã|å|ǻ|ā|ă|ą|ǎ|ª|α|ά|ả|ạ|ầ|ấ|ẫ|ẩ|ậ|ằ|ắ|ẵ|ẳ|ặ|а/' => 'a', 21 | '/Б/' => 'B', 22 | '/б/' => 'b', 23 | '/Ç|Ć|Ĉ|Ċ|Č/' => 'C', 24 | '/ç|ć|ĉ|ċ|č/' => 'c', 25 | '/Д/' => 'D', 26 | '/д/' => 'd', 27 | '/Ð|Ď|Đ|Δ/' => 'Dj', 28 | '/ð|ď|đ|δ/' => 'dj', 29 | '/È|É|Ê|Ë|Ē|Ĕ|Ė|Ę|Ě|Ε|Έ|Ẽ|Ẻ|Ẹ|Ề|Ế|Ễ|Ể|Ệ|Е|Э/' => 'E', 30 | '/è|é|ê|ë|ē|ĕ|ė|ę|ě|έ|ε|ẽ|ẻ|ẹ|ề|ế|ễ|ể|ệ|е|э/' => 'e', 31 | '/Ф/' => 'F', 32 | '/ф/' => 'f', 33 | '/Ĝ|Ğ|Ġ|Ģ|Γ|Г|Ґ/' => 'G', 34 | '/ĝ|ğ|ġ|ģ|γ|г|ґ/' => 'g', 35 | '/Ĥ|Ħ/' => 'H', 36 | '/ĥ|ħ/' => 'h', 37 | '/Ì|Í|Î|Ï|Ĩ|Ī|Ĭ|Ǐ|Į|İ|Η|Ή|Ί|Ι|Ϊ|Ỉ|Ị|И|Ы/' => 'I', 38 | '/ì|í|î|ï|ĩ|ī|ĭ|ǐ|į|ı|η|ή|ί|ι|ϊ|ỉ|ị|и|ы|ї/' => 'i', 39 | '/Ĵ/' => 'J', 40 | '/ĵ/' => 'j', 41 | '/Ķ|Κ|К/' => 'K', 42 | '/ķ|κ|к/' => 'k', 43 | '/Ĺ|Ļ|Ľ|Ŀ|Ł|Λ|Л/' => 'L', 44 | '/ĺ|ļ|ľ|ŀ|ł|λ|л/' => 'l', 45 | '/М/' => 'M', 46 | '/м/' => 'm', 47 | '/Ñ|Ń|Ņ|Ň|Ν|Н/' => 'N', 48 | '/ñ|ń|ņ|ň|ʼn|ν|н/' => 'n', 49 | '/Ò|Ó|Ô|Õ|Ō|Ŏ|Ǒ|Ő|Ơ|Ø|Ǿ|Ο|Ό|Ω|Ώ|Ỏ|Ọ|Ồ|Ố|Ỗ|Ổ|Ộ|Ờ|Ớ|Ỡ|Ở|Ợ|О/' => 'O', 50 | '/ò|ó|ô|õ|ō|ŏ|ǒ|ő|ơ|ø|ǿ|º|ο|ό|ω|ώ|ỏ|ọ|ồ|ố|ỗ|ổ|ộ|ờ|ớ|ỡ|ở|ợ|о/' => 'o', 51 | '/П/' => 'P', 52 | '/п/' => 'p', 53 | '/Ŕ|Ŗ|Ř|Ρ|Р/' => 'R', 54 | '/ŕ|ŗ|ř|ρ|р/' => 'r', 55 | '/Ś|Ŝ|Ş|Ș|Š|Σ|С/' => 'S', 56 | '/ś|ŝ|ş|ș|š|ſ|σ|ς|с/' => 's', 57 | '/Ț|Ţ|Ť|Ŧ|τ|Т/' => 'T', 58 | '/ț|ţ|ť|ŧ|т/' => 't', 59 | '/Ù|Ú|Û|Ũ|Ū|Ŭ|Ů|Ű|Ų|Ư|Ǔ|Ǖ|Ǘ|Ǚ|Ǜ|Ũ|Ủ|Ụ|Ừ|Ứ|Ữ|Ử|Ự|У/' => 'U', 60 | '/ù|ú|û|ũ|ū|ŭ|ů|ű|ų|ư|ǔ|ǖ|ǘ|ǚ|ǜ|υ|ύ|ϋ|ủ|ụ|ừ|ứ|ữ|ử|ự|у/' => 'u', 61 | '/Ý|Ÿ|Ŷ|Υ|Ύ|Ϋ|Ỳ|Ỹ|Ỷ|Ỵ|Й/' => 'Y', 62 | '/ý|ÿ|ŷ|ỳ|ỹ|ỷ|ỵ|й/' => 'y', 63 | '/В/' => 'V', 64 | '/в/' => 'v', 65 | '/Ŵ/' => 'W', 66 | '/ŵ/' => 'w', 67 | '/Ź|Ż|Ž|Ζ|З/' => 'Z', 68 | '/ź|ż|ž|ζ|з/' => 'z', 69 | '/Æ|Ǽ/' => 'AE', 70 | '/ß/' => 'ss', 71 | '/IJ/' => 'IJ', 72 | '/ij/' => 'ij', 73 | '/Œ/' => 'OE', 74 | '/ƒ/' => 'f', 75 | '/ξ/' => 'ks', 76 | '/π/' => 'p', 77 | '/β/' => 'v', 78 | '/μ/' => 'm', 79 | '/ψ/' => 'ps', 80 | '/Ё/' => 'Yo', 81 | '/ё/' => 'yo', 82 | '/Є/' => 'Ye', 83 | '/є/' => 'ye', 84 | '/Ї/' => 'Yi', 85 | '/Ж/' => 'Zh', 86 | '/ж/' => 'zh', 87 | '/Х/' => 'Kh', 88 | '/х/' => 'kh', 89 | '/Ц/' => 'Ts', 90 | '/ц/' => 'ts', 91 | '/Ч/' => 'Ch', 92 | '/ч/' => 'ch', 93 | '/Ш/' => 'Sh', 94 | '/ш/' => 'sh', 95 | '/Щ/' => 'Shch', 96 | '/щ/' => 'shch', 97 | '/Ъ|ъ|Ь|ь/' => '', 98 | '/Ю/' => 'Yu', 99 | '/ю/' => 'yu', 100 | '/Я/' => 'Ya', 101 | '/я/' => 'ya' 102 | ); 103 | -------------------------------------------------------------------------------- /application/config/hooks.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/config/memcached.php: -------------------------------------------------------------------------------- 1 | array( 15 | 'hostname' => '127.0.0.1', 16 | 'port' => '11211', 17 | 'weight' => '1', 18 | ), 19 | ); 20 | -------------------------------------------------------------------------------- /application/config/profiler.php: -------------------------------------------------------------------------------- 1 | my_controller/index 50 | | my-controller/my-method -> my_controller/my_method 51 | */ 52 | 53 | 54 | $route['upload'] = 'upload/do_upload'; 55 | 56 | $route['product/(:any)'] = 'product/cat/$1'; 57 | $route['admin/product/list'] = 'admin/product/product_list'; 58 | $route['admin/product/list/(:num)'] = 'admin/product/product_list/$1'; 59 | $route['admin/product/list/(:any)'] = 'admin/product/product_list/$1'; 60 | $route['admin/product/list/(:any)/(:any)'] = 'admin/product/product_list/$1/$2'; 61 | $route['admin/category/list'] = 'admin/category/category_list'; 62 | $route['admin/user/list'] = 'admin/user/user_list'; 63 | $route['cart/list'] = 'cart/cart_list'; 64 | #$route['cart/'] = 'basket/'; 65 | $route['admin'] = 'admin/dashboard/home'; 66 | $route['dashboard'] = 'admin/dashboard/home'; 67 | 68 | 69 | $route['default_controller'] = 'home'; 70 | $route['404_override'] = ''; 71 | $route['translate_uri_dashes'] = FALSE; 72 | -------------------------------------------------------------------------------- /application/controllers/Article.php: -------------------------------------------------------------------------------- 1 | load->model('mpage', TRUE); 12 | $this->mpage = new MPage(); 13 | } 14 | 15 | public function index() { 16 | $this->list_article(); 17 | } 18 | 19 | public function list_article() { 20 | echo 'list'; 21 | } 22 | 23 | } -------------------------------------------------------------------------------- /application/controllers/Home.php: -------------------------------------------------------------------------------- 1 | load->model('mhome'); 10 | $this->mhome = new MHome(); 11 | $this->load->model('mproduct'); 12 | $this->mproduct = new MProduct(); 13 | } 14 | 15 | public function index() { 16 | $this->show(); 17 | } 18 | 19 | public function show() { 20 | $data['title'] = 'Home'; 21 | $data['products'] = $this->mproduct->getAllProductCat($cat=NULL,4); 22 | $this->load->shop_template('home', $data); 23 | } 24 | 25 | public function promo() { 26 | $data['title'] = 'Promo'; 27 | $this->load->shop_template('shop/promo', $data); 28 | } 29 | 30 | public function info() { 31 | phpinfo(); 32 | } 33 | } -------------------------------------------------------------------------------- /application/controllers/Info.php: -------------------------------------------------------------------------------- 1 | load->model('minfo'); 10 | $this->minfo = new minfo(); 11 | } 12 | 13 | public function index(){ 14 | $this->get_all(); 15 | } 16 | 17 | public function get_all(){ 18 | $order = $this->minfo->getAllInfo(); 19 | header('Access-Control-Allow-Headers: Content-Type'); 20 | header('Access-Control-Allow-Methods: GET, POST, OPTIONS'); 21 | header('Access-Control-Allow-Origin: *'); 22 | echo json_encode($order); 23 | } 24 | } -------------------------------------------------------------------------------- /application/controllers/Page.php: -------------------------------------------------------------------------------- 1 | load->model('mpage', TRUE); 12 | $this->mpage = new MPage(); 13 | } 14 | 15 | public function index() { 16 | $this->list_page(); 17 | } 18 | 19 | public function list_page(){ 20 | $data['title'] = "List Page"; 21 | $data['pages'] = $this->mpage->listPage(); 22 | $this->load->template('shop/list_page', $data); 23 | } 24 | 25 | public function get($slug) { 26 | $data['title'] = $slug; 27 | $data['page'] = $this->mpage->getPage($slug); 28 | $this->load->template('shop/page', $data); 29 | } 30 | 31 | public function get_id($page_id) { 32 | $data['title'] = "Page"; 33 | $data['page'] = $this->mpage->getPageId($page_id); 34 | $this->load->template('shop/page', $data); 35 | } 36 | 37 | public function promo() { 38 | $data['title'] = "Promo"; 39 | $this->load->shop_template('shop/page/promo', $data); 40 | } 41 | 42 | public function login() { 43 | $data['title'] = "Login"; 44 | $this->load->shop_template($this->folder.'login', $data); 45 | } 46 | 47 | public function contact() { 48 | $data['title'] = "contact"; 49 | $this->load->shop_template($this->folder.'contact', $data); 50 | } 51 | 52 | public function stockist() { 53 | $data['title'] = "Stockist"; 54 | $this->load->shop_template($this->folder.'stockist', $data); 55 | } 56 | 57 | // public function back_in_stock() { 58 | // $data['title'] = "Stockist"; 59 | // $this->load->shop_template($this->folder.'back_in_stock', $data); 60 | // } 61 | 62 | public function collaboration() { 63 | $data['title'] = "contact"; 64 | $this->load->shop_template($this->folder.'collaboration', $data); 65 | 66 | } 67 | 68 | 69 | } -------------------------------------------------------------------------------- /application/controllers/Product.php: -------------------------------------------------------------------------------- 1 | load->controller('page', 'admin'); 15 | $this->load->model('mhome'); 16 | $this->load->model('mproduct'); 17 | $this->mhome = new MHome(); 18 | $this->mproduct = new MProduct(); 19 | } 20 | 21 | public function index() { 22 | $this->cat('tanaman-hias'); 23 | } 24 | 25 | public function calling() { 26 | echo 'calling'; 27 | $this->page = new Page(); 28 | $this->page->list_page(); 29 | } 30 | 31 | public function detail($id) { 32 | $data['title'] = 'Details'; 33 | $data['product'] = $this->mproduct->getProduct($id); 34 | $data['images'] = $this->mproduct->getAllProductImg($id); 35 | $this->load->shop_template('shop/product_detail', $data); 36 | } 37 | 38 | public function cat($cat = NULL, $page = NULL) { 39 | $this->load->library('pagination'); 40 | $data['title'] = "Product"; 41 | $config['base_url'] = site_url() . 'product/cat/' . $cat; 42 | $config['total_rows'] = $this->mproduct->countAllProductCat($cat); 43 | // echo $config['total_rows'];exit; 44 | $config['per_page'] = "16"; 45 | // $config["uri_segment"] = 3; 46 | $choice = $config["total_rows"] / $config["per_page"]; 47 | $config["num_links"] = floor($choice); 48 | // config for bootstrap pagination class integration 49 | $config['full_tag_open'] = 'Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/controllers/shop/Category.php: -------------------------------------------------------------------------------- 1 | load->model('mcategory'); 10 | $this->mcategory = new MCategory(); 11 | } 12 | 13 | public function index() { 14 | $this->all_category(); 15 | } 16 | 17 | public function categories() { 18 | $data['categories'] = $this->mcategory->getAllCategories(); 19 | $this->load->shop_template('shop/categories', $data); 20 | } 21 | 22 | public function category($slug) { 23 | $data['category'] = $this->mcategory->getCategorySlug($slug); 24 | $this->load->shop_template('shop/category', $data); 25 | } 26 | 27 | } -------------------------------------------------------------------------------- /application/controllers/shop/Product.php: -------------------------------------------------------------------------------- 1 | load->model('mproduct'); 10 | $this->mproduct = new MProduct(); 11 | } 12 | 13 | public function index() { 14 | $this->products(); 15 | } 16 | 17 | public function products() { 18 | $data['title'] = "All Products"; 19 | $data['products'] = $this->mproduct->getAllProduct(); 20 | $this->load->shop_template('shop/products', $data); 21 | } 22 | 23 | public function product($slug) { 24 | $data['title'] = "Product Info"; 25 | $data['product'] = $this->mproduct->getProductSlug($slug); 26 | $data['images'] = $this->mproduct->getProductImg($data['product']->product_id); 27 | $this->load->shop_template('shop/product', $data); 28 | } 29 | 30 | } 31 | -------------------------------------------------------------------------------- /application/core/MY_Controller.php: -------------------------------------------------------------------------------- 1 | load->model('mmenu'); 9 | $this->load->model('mpage'); 10 | $this->load->model('mproduct'); 11 | $this->load->model('mcategory'); 12 | $this->load->model('mcart'); 13 | $this->load->model('morder'); 14 | $this->load->model('muser'); 15 | $this->mmenu = new MMenu(); 16 | $this->mpage = new Mpage(); 17 | $this->mproduct = new MProduct(); 18 | $this->muser = new MUser(); 19 | $this->mcategory = new MCategory(); 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /application/core/MY_Loader.php: -------------------------------------------------------------------------------- 1 | view('shop/shop_template/shop_header', $vars, $return); 8 | // $content .= $this->view('shop/shop_template/sidebar', $vars, $return); 9 | $content .= $this->view($template_name, $vars, $return); 10 | $content .= $this->view('shop/shop_template/shop_footer', $vars, $return); 11 | return $content; 12 | else : 13 | $this->view('shop/shop_template/shop_header', $vars); 14 | // $this->view('shop/shop_template/sidebar', $vars); 15 | $this->view($template_name, $vars); 16 | $this->view('shop/shop_template/shop_footer', $vars); 17 | endif; 18 | } 19 | 20 | public function admin_template($template_name, $vars = array(), $return = FALSE) { 21 | checkAdminUser(); 22 | if ($return) : 23 | $content = $this->view('admin/admin_template/admin_header', $vars, $return); 24 | $content .= $this->view('admin/admin_template/admin_sidebar', $vars, $return); 25 | $content .= $this->view($template_name, $vars, $return); 26 | $content .= $this->view('admin/admin_template/admin_footer', $vars, $return); 27 | 28 | return $content; 29 | else : 30 | $this->view('admin/admin_template/admin_header', $vars); 31 | $this->view('admin/admin_template/admin_sidebar', $vars); 32 | $this->view($template_name, $vars); 33 | $this->view('admin/admin_template/admin_footer', $vars); 34 | endif; 35 | } 36 | 37 | public function controller($name, $folder = null) { 38 | $className = str_replace(' ', '', ucwords(str_replace(['-', '_'], ' ', $name))) . '.php'; 39 | $classPath = ($folder) ? trim($folder, '/') . '/' . $className : $className; 40 | 41 | require_once __DIR__ . '/../controllers/' . $classPath; 42 | } 43 | 44 | } -------------------------------------------------------------------------------- /application/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/hooks/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/language/english/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/language/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/libraries/Paginationlib.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/logs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/models/Mcart.php: -------------------------------------------------------------------------------- 1 | db->get('category'); 14 | return checkRes($query); 15 | } 16 | 17 | function getCategory($id) { 18 | $query = $this->db->get('category'); 19 | return checkRow($query); 20 | } 21 | 22 | function getCategorySlug($slug) { 23 | $query = $this->db->get_where('category', array('slug' => $slug)); 24 | return checkRow($query); 25 | } 26 | 27 | function getAllProduct() { 28 | 29 | } 30 | 31 | function checkSlug($slug) { 32 | $this->db->like('slug', $slug); 33 | $query = $this->db->get('product'); 34 | if (checkRes($query)) { 35 | return $this->getLatestExistsSlug($slug); 36 | } else { 37 | return slugify($slug); 38 | } 39 | } 40 | 41 | function getAllUnit() { 42 | $query = $this->db->get('unit'); 43 | return checkRes($query); 44 | } 45 | 46 | function insertCategory($data) { 47 | unset($data['category_id']); 48 | $query = $this->db->insert('category', $data); 49 | return $this->db->insert_id(); 50 | } 51 | 52 | function updateCategory($data, $id) { 53 | unset($data['category_id']); 54 | $query = $this->db->update('category', $data, array('category_id' => $id)); 55 | return $query; 56 | } 57 | 58 | } 59 | -------------------------------------------------------------------------------- /application/models/Mcategory_article.php: -------------------------------------------------------------------------------- 1 | db->get('category_article'); 14 | return checkRes($query); 15 | } 16 | 17 | function getCategory($id) { 18 | $query = $this->db->get('category_article'); 19 | return checkRow($query); 20 | } 21 | 22 | function getCategorySlug($slug) { 23 | $query = $this->db->get_where('category_article', array( 'slug' => $slug )); 24 | return checkRow($query); 25 | } 26 | 27 | function getAllProduct() { 28 | } 29 | 30 | function getAllUnit() { 31 | $query = $this->db->get('unit'); 32 | return checkRes($query); 33 | } 34 | 35 | function insertCategory($data) { 36 | unset($data['category_id']); 37 | $query = $this->db->insert('category_article', $data); 38 | return $this->db->insert_id(); 39 | } 40 | 41 | function updateCategory($data, $id) { 42 | unset($data['category_id']); 43 | $query = $this->db->update('category_article', $data, array( 'category_id' => $id )); 44 | return $query; 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /application/models/Mcustomer.php: -------------------------------------------------------------------------------- 1 | db->get('category'); 14 | return checkRes($query); 15 | } 16 | 17 | function getCategory($id) { 18 | $query = $this->db->get_where('product', array('product_id', $id)); 19 | return checkRow($query); 20 | } 21 | 22 | 23 | } -------------------------------------------------------------------------------- /application/models/Mhome.php: -------------------------------------------------------------------------------- 1 | db->get('info'); 14 | return checkRes($query); 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /application/models/Mmenu.php: -------------------------------------------------------------------------------- 1 | db->get_where('page'); 11 | return $query->result(); 12 | } 13 | 14 | function getPage($slug) { 15 | $query = $this->db->get_where('page', array('slug'=>$slug)); 16 | return $query->row(); 17 | } 18 | 19 | function getPageId($page_id) { 20 | $query = $this->db->get_where('page', array('id'=>page_id)); 21 | return $query->row(); 22 | } 23 | 24 | function insertPage($data) { 25 | $query = $this->db->insert('page',$data); 26 | return $this->db->insert_id(); 27 | } 28 | 29 | function updatePage($data,$page_id) { 30 | $query = $this->db->update('page', $data, array('page_id'=>$page_id)); 31 | return $query; 32 | } 33 | 34 | } -------------------------------------------------------------------------------- /application/models/Mpasar.php: -------------------------------------------------------------------------------- 1 | db->get('product'); 14 | return checkRes($query); 15 | } 16 | 17 | function getProductCat($category_id) { 18 | $query = $this->db->get_where('product', array('category_id' => $category_id)); 19 | return checkRes($query); 20 | } 21 | 22 | function insertCheckout($data) { 23 | 24 | } 25 | 26 | } 27 | -------------------------------------------------------------------------------- /application/models/admin/Mdashboard.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/third_party/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/admin/admin_template/admin_sidebar.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/views/admin/blank.php: -------------------------------------------------------------------------------- 1 | 2 |