├── .github
└── FUNDING.yml
├── .gitignore
├── .htaccess
├── CODE_OF_CONDUCT.md
├── ISSUE_TEMPLATE.md
├── LICENSE
├── README.md
├── SECURITY.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
│ ├── rest.php
│ ├── routes.php
│ ├── smileys.php
│ └── user_agents.php
├── controllers
│ ├── Api
│ │ └── Products.php
│ ├── Blog.php
│ ├── Checkout.php
│ ├── Contacts.php
│ ├── Home.php
│ ├── Loader.php
│ ├── Page.php
│ ├── ShoppingCartPage.php
│ ├── Users.php
│ ├── Vendor.php
│ └── index.html
├── core
│ ├── ADMIN_Controller.php
│ ├── MY_Controller.php
│ ├── MY_Loader.php
│ ├── MY_Router.php
│ ├── VENDOR_Controller.php
│ └── index.html
├── helpers
│ ├── cleanreferral_helper.php
│ ├── currencies_helper.php
│ ├── except_letters_helper.php
│ ├── gettextualpages_helper.php
│ ├── index.html
│ ├── mb_ucfirst_helper.php
│ ├── overwrite_functions_helper.php
│ ├── pagination_helper.php
│ ├── purchase_steps_helper.php
│ ├── rcopy_helper.php
│ ├── rreaddir_helper.php
│ ├── rrmdir_helper.php
│ └── savefile_helper.php
├── hooks
│ └── index.html
├── index.html
├── language
│ ├── bulgarian
│ │ ├── db_lang.php
│ │ ├── email_lang.php
│ │ ├── form_validation_lang.php
│ │ ├── index.html
│ │ ├── js
│ │ │ └── all.js
│ │ ├── pagination_lang.php
│ │ ├── rest_controller_lang.php
│ │ ├── site_lang.php
│ │ └── upload_lang.php
│ ├── english
│ │ ├── admin_lang.php
│ │ ├── db_lang.php
│ │ ├── email_lang.php
│ │ ├── form_validation_lang.php
│ │ ├── index.html
│ │ ├── js
│ │ │ └── all.js
│ │ ├── pagination_lang.php
│ │ ├── rest_controller_lang.php
│ │ ├── site_lang.php
│ │ └── upload_lang.php
│ ├── français
│ │ ├── admin_lang.php
│ │ ├── db_lang.php
│ │ ├── email_lang.php
│ │ ├── form_validation_lang.php
│ │ ├── index.html
│ │ ├── js
│ │ │ └── all.js
│ │ ├── pagination_lang.php
│ │ ├── rest_controller_lang.php
│ │ ├── site_lang.php
│ │ └── upload_lang.php
│ ├── greece
│ │ ├── db_lang.php
│ │ ├── email_lang.php
│ │ ├── form_validation_lang.php
│ │ ├── index.html
│ │ ├── js
│ │ │ └── all.js
│ │ ├── pagination_lang.php
│ │ ├── rest_controller_lang.php
│ │ ├── site_lang.php
│ │ └── upload_lang.php
│ ├── index.html
│ └── indonesian
│ │ ├── db_lang.php
│ │ ├── email_lang.php
│ │ ├── form_validation_lang.php
│ │ ├── index.html
│ │ ├── js
│ │ └── all.js
│ │ ├── pagination_lang.php
│ │ ├── rest_controller_lang.php
│ │ ├── site_lang.php
│ │ └── upload_lang.php
├── libraries
│ ├── Format.php
│ ├── Language.php
│ ├── Loop.php
│ ├── PHPMailer
│ │ ├── LICENSE
│ │ ├── PHPMailerAutoload.php
│ │ ├── VERSION
│ │ ├── class.phpmailer.php
│ │ ├── class.phpmaileroauth.php
│ │ ├── class.phpmaileroauthgoogle.php
│ │ ├── class.pop3.php
│ │ ├── class.smtp.php
│ │ ├── composer.json
│ │ ├── composer.lock
│ │ ├── examples
│ │ │ ├── DKIM.phps
│ │ │ ├── code_generator.phps
│ │ │ ├── contactform.phps
│ │ │ ├── contents.html
│ │ │ ├── contentsutf8.html
│ │ │ ├── exceptions.phps
│ │ │ ├── gmail.phps
│ │ │ ├── gmail_xoauth.phps
│ │ │ ├── images
│ │ │ │ ├── phpmailer.png
│ │ │ │ └── phpmailer_mini.png
│ │ │ ├── index.html
│ │ │ ├── mail.phps
│ │ │ ├── mailing_list.phps
│ │ │ ├── pop_before_smtp.phps
│ │ │ ├── scripts
│ │ │ │ ├── XRegExp.js
│ │ │ │ ├── shAutoloader.js
│ │ │ │ ├── shBrushPhp.js
│ │ │ │ ├── shCore.js
│ │ │ │ └── shLegacy.js
│ │ │ ├── send_file_upload.phps
│ │ │ ├── send_multiple_file_upload.phps
│ │ │ ├── sendmail.phps
│ │ │ ├── signed-mail.phps
│ │ │ ├── smtp.phps
│ │ │ ├── smtp_check.phps
│ │ │ ├── smtp_no_auth.phps
│ │ │ ├── ssl_options.phps
│ │ │ └── styles
│ │ │ │ ├── shCore.css
│ │ │ │ ├── shCoreDefault.css
│ │ │ │ ├── shCoreDjango.css
│ │ │ │ ├── shCoreEclipse.css
│ │ │ │ ├── shCoreEmacs.css
│ │ │ │ ├── shCoreFadeToGrey.css
│ │ │ │ ├── shCoreMDUltra.css
│ │ │ │ ├── shCoreMidnight.css
│ │ │ │ ├── shCoreRDark.css
│ │ │ │ ├── shThemeAppleScript.css
│ │ │ │ ├── shThemeDefault.css
│ │ │ │ ├── shThemeDjango.css
│ │ │ │ ├── shThemeEclipse.css
│ │ │ │ ├── shThemeEmacs.css
│ │ │ │ ├── shThemeFadeToGrey.css
│ │ │ │ ├── shThemeMDUltra.css
│ │ │ │ ├── shThemeMidnight.css
│ │ │ │ ├── shThemeRDark.css
│ │ │ │ ├── shThemeVisualStudio.css
│ │ │ │ └── wrapping.png
│ │ ├── extras
│ │ │ ├── EasyPeasyICS.php
│ │ │ ├── README.md
│ │ │ ├── htmlfilter.php
│ │ │ └── ntlm_sasl_client.php
│ │ ├── get_oauth_token.php
│ │ ├── issue_template.md
│ │ └── language
│ │ │ ├── phpmailer.lang-am.php
│ │ │ ├── phpmailer.lang-ar.php
│ │ │ ├── phpmailer.lang-az.php
│ │ │ ├── phpmailer.lang-be.php
│ │ │ ├── phpmailer.lang-bg.php
│ │ │ ├── phpmailer.lang-ca.php
│ │ │ ├── phpmailer.lang-ch.php
│ │ │ ├── phpmailer.lang-cs.php
│ │ │ ├── phpmailer.lang-da.php
│ │ │ ├── phpmailer.lang-de.php
│ │ │ ├── phpmailer.lang-el.php
│ │ │ ├── phpmailer.lang-eo.php
│ │ │ ├── phpmailer.lang-es.php
│ │ │ ├── phpmailer.lang-et.php
│ │ │ ├── phpmailer.lang-fa.php
│ │ │ ├── phpmailer.lang-fi.php
│ │ │ ├── phpmailer.lang-fo.php
│ │ │ ├── phpmailer.lang-fr.php
│ │ │ ├── phpmailer.lang-gl.php
│ │ │ ├── phpmailer.lang-he.php
│ │ │ ├── phpmailer.lang-hr.php
│ │ │ ├── phpmailer.lang-hu.php
│ │ │ ├── phpmailer.lang-id.php
│ │ │ ├── phpmailer.lang-it.php
│ │ │ ├── phpmailer.lang-ja.php
│ │ │ ├── phpmailer.lang-ka.php
│ │ │ ├── phpmailer.lang-ko.php
│ │ │ ├── phpmailer.lang-lt.php
│ │ │ ├── phpmailer.lang-lv.php
│ │ │ ├── phpmailer.lang-ms.php
│ │ │ ├── phpmailer.lang-nb.php
│ │ │ ├── phpmailer.lang-nl.php
│ │ │ ├── phpmailer.lang-pl.php
│ │ │ ├── phpmailer.lang-pt.php
│ │ │ ├── phpmailer.lang-pt_br.php
│ │ │ ├── phpmailer.lang-ro.php
│ │ │ ├── phpmailer.lang-ru.php
│ │ │ ├── phpmailer.lang-sk.php
│ │ │ ├── phpmailer.lang-sl.php
│ │ │ ├── phpmailer.lang-sr.php
│ │ │ ├── phpmailer.lang-sv.php
│ │ │ ├── phpmailer.lang-tr.php
│ │ │ ├── phpmailer.lang-uk.php
│ │ │ ├── phpmailer.lang-vi.php
│ │ │ ├── phpmailer.lang-zh.php
│ │ │ └── phpmailer.lang-zh_cn.php
│ ├── REST_Controller.php
│ ├── SendMail.php
│ ├── ShoppingCart.php
│ └── index.html
├── models
│ ├── Api_model.php
│ ├── Public_model.php
│ └── index.html
├── modules
│ ├── admin
│ │ ├── controllers
│ │ │ ├── advanced_settings
│ │ │ │ ├── Adminusers.php
│ │ │ │ ├── Filemanager.php
│ │ │ │ └── Languages.php
│ │ │ ├── blog
│ │ │ │ ├── Blog.php
│ │ │ │ └── BlogPublish.php
│ │ │ ├── ecommerce
│ │ │ │ ├── Brands.php
│ │ │ │ ├── Discounts.php
│ │ │ │ ├── Orders.php
│ │ │ │ ├── Products.php
│ │ │ │ ├── Publish.php
│ │ │ │ └── ShopCategories.php
│ │ │ ├── home
│ │ │ │ ├── Home.php
│ │ │ │ └── Login.php
│ │ │ ├── settings
│ │ │ │ ├── Emails.php
│ │ │ │ ├── History.php
│ │ │ │ ├── Pages.php
│ │ │ │ ├── Settings.php
│ │ │ │ ├── Styling.php
│ │ │ │ ├── Templates.php
│ │ │ │ └── Titles.php
│ │ │ ├── textual_pages
│ │ │ │ └── TextualPages.php
│ │ │ └── vendors
│ │ │ │ └── Listvendors.php
│ │ ├── models
│ │ │ ├── Admin_users_model.php
│ │ │ ├── Blog_model.php
│ │ │ ├── Brands_model.php
│ │ │ ├── Categories_model.php
│ │ │ ├── Discounts_model.php
│ │ │ ├── Emails_model.php
│ │ │ ├── History_model.php
│ │ │ ├── Home_admin_model.php
│ │ │ ├── Languages_model.php
│ │ │ ├── Orders_model.php
│ │ │ ├── Pages_model.php
│ │ │ ├── Products_model.php
│ │ │ ├── Settings_model.php
│ │ │ ├── Textual_pages_model.php
│ │ │ ├── Titles_model.php
│ │ │ └── Vendors_model.php
│ │ └── views
│ │ │ ├── _parts
│ │ │ ├── footer.php
│ │ │ └── header.php
│ │ │ ├── advanced_settings
│ │ │ ├── adminUsers.php
│ │ │ ├── filemanager.php
│ │ │ └── languages.php
│ │ │ ├── blog
│ │ │ ├── blogposts.php
│ │ │ └── blogpublish.php
│ │ │ ├── ecommerce
│ │ │ ├── brands.php
│ │ │ ├── discounts.php
│ │ │ ├── orders.php
│ │ │ ├── products.php
│ │ │ ├── publish.php
│ │ │ └── shopcategories.php
│ │ │ ├── home
│ │ │ ├── home.php
│ │ │ └── login.php
│ │ │ ├── settings
│ │ │ ├── emails.php
│ │ │ ├── history.php
│ │ │ ├── pages.php
│ │ │ ├── settings.php
│ │ │ ├── styling.php
│ │ │ ├── templates.php
│ │ │ └── titles.php
│ │ │ ├── textual_pages
│ │ │ └── pageEdit.php
│ │ │ └── vendors
│ │ │ └── listVendors.php
│ └── vendor
│ │ ├── controllers
│ │ ├── AddProduct.php
│ │ ├── Auth.php
│ │ ├── Orders.php
│ │ ├── Products.php
│ │ └── VendorProfile.php
│ │ ├── models
│ │ ├── Auth_model.php
│ │ ├── Orders_model.php
│ │ ├── Products_model.php
│ │ └── Vendorprofile_model.php
│ │ └── views
│ │ ├── _parts
│ │ ├── footer.php
│ │ ├── footer_auth.php
│ │ ├── header.php
│ │ └── header_auth.php
│ │ ├── add_product.php
│ │ ├── auth
│ │ ├── login.php
│ │ ├── recover_pass.php
│ │ └── register.php
│ │ ├── home.php
│ │ ├── orders.php
│ │ └── products.php
├── third_party
│ ├── MX
│ │ ├── Base.php
│ │ ├── Ci.php
│ │ ├── Config.php
│ │ ├── Controller.php
│ │ ├── Lang.php
│ │ ├── Loader.php
│ │ ├── Modules.php
│ │ └── Router.php
│ └── index.html
└── views
│ ├── 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
│ ├── main
│ ├── platform
│ │ └── index.php
│ ├── social_share.php
│ └── svg
│ │ ├── facebook.php
│ │ └── twitter.php
│ └── templates
│ ├── clothesshop
│ ├── _parts
│ │ ├── footer.php
│ │ └── header.php
│ ├── assets
│ │ ├── css
│ │ │ ├── bootstrap.min.css
│ │ │ ├── custom.css
│ │ │ └── default-gradient.css
│ │ ├── imgs
│ │ │ ├── arrows-2x.png
│ │ │ ├── paypal.png
│ │ │ ├── screenshot.png
│ │ │ ├── white-bag.png
│ │ │ └── white-bag.psd
│ │ └── js
│ │ │ ├── bootstrap.min.js
│ │ │ └── mine.js
│ ├── blog.php
│ ├── bodyFooter.php
│ ├── checkout.php
│ ├── checkout_parts
│ │ ├── order_error.php
│ │ ├── payment_success_bank.php
│ │ ├── payment_success_cash.php
│ │ ├── paypal_cancel.php
│ │ ├── paypal_payment.php
│ │ └── paypal_success.php
│ ├── confirmed.php
│ ├── contacts.php
│ ├── dynPage.php
│ ├── home.php
│ ├── index.html
│ ├── shopping_cart.php
│ ├── vendor.php
│ ├── view_blog_post.php
│ ├── view_product.php
│ └── view_product_vendor.php
│ ├── greenlabel
│ ├── _parts
│ │ ├── footer.php
│ │ └── header.php
│ ├── assets
│ │ ├── css
│ │ │ ├── custom.css
│ │ │ └── default-gradient.css
│ │ ├── imgs
│ │ │ ├── Phone-icon.png
│ │ │ ├── arrows-2x.png
│ │ │ ├── carousel-sprite.png
│ │ │ ├── paypal.png
│ │ │ ├── screenshot.png
│ │ │ ├── search-ico.png
│ │ │ └── shopping-cart-icon-515.png
│ │ └── js
│ │ │ └── mine.js
│ ├── blog.php
│ ├── checkout.php
│ ├── checkout_parts
│ │ ├── order_error.php
│ │ ├── payment_success_bank.php
│ │ ├── payment_success_cash.php
│ │ ├── paypal_cancel.php
│ │ ├── paypal_payment.php
│ │ └── paypal_success.php
│ ├── confirmed.php
│ ├── contacts.php
│ ├── dynPage.php
│ ├── home.php
│ ├── index.html
│ ├── login.php
│ ├── shop.php
│ ├── shopping_cart.php
│ ├── signup.php
│ ├── user.php
│ ├── vendor.php
│ ├── view_blog_post.php
│ ├── view_product.php
│ └── view_product_vendor.php
│ ├── onepage
│ ├── _parts
│ │ ├── footer.php
│ │ └── header.php
│ ├── assets
│ │ ├── css
│ │ │ ├── animate.css
│ │ │ ├── bootstrap.min.css
│ │ │ ├── custom.css
│ │ │ └── default-gradient.css
│ │ ├── imgs
│ │ │ ├── bottle.png
│ │ │ ├── delivery.png
│ │ │ ├── logo.png
│ │ │ ├── main.jpg
│ │ │ ├── nav-bg.png
│ │ │ ├── screenshot.png
│ │ │ ├── slide-title-border.png
│ │ │ └── woman.png
│ │ └── js
│ │ │ ├── bootstrap.min.js
│ │ │ ├── jquery.visible.min.js
│ │ │ └── mine.js
│ ├── blog.php
│ ├── bodyFooter.php
│ ├── checkout.php
│ ├── checkout_parts
│ │ ├── order_error.php
│ │ ├── payment_success_bank.php
│ │ ├── payment_success_cash.php
│ │ ├── paypal_cancel.php
│ │ ├── paypal_payment.php
│ │ └── paypal_success.php
│ ├── confirmed.php
│ ├── contacts.php
│ ├── dynPage.php
│ ├── home.php
│ ├── index.html
│ ├── shopping_cart.php
│ ├── view_blog_post.php
│ └── view_product.php
│ └── redlabel
│ ├── _parts
│ ├── footer.php
│ └── header.php
│ ├── assets
│ ├── css
│ │ ├── custom.css
│ │ └── default-gradient.css
│ ├── imgs
│ │ ├── Phone-icon.png
│ │ ├── arrows-2x.png
│ │ ├── carousel-sprite.png
│ │ ├── green-basket.png
│ │ ├── info.png
│ │ ├── paypal.png
│ │ ├── screenshot.png
│ │ ├── search-ico.png
│ │ └── shopping-cart-icon-515.png
│ └── js
│ │ └── mine.js
│ ├── blog.php
│ ├── checkout.php
│ ├── checkout_parts
│ ├── order_error.php
│ ├── payment_success_bank.php
│ ├── payment_success_cash.php
│ ├── paypal_cancel.php
│ ├── paypal_payment.php
│ └── paypal_success.php
│ ├── confirmed.php
│ ├── contacts.php
│ ├── dynPage.php
│ ├── home.php
│ ├── index.html
│ ├── shopping_cart.php
│ ├── vendor.php
│ ├── view_blog_post.php
│ ├── view_product.php
│ └── view_product_vendor.php
├── assets
├── bootstrap-select-1.12.1
│ ├── bootstrap-select.js.map
│ ├── bootstrap-select.min.css
│ └── js
│ │ ├── bootstrap-select.css.map
│ │ ├── bootstrap-select.min.js
│ │ └── i18n
│ │ ├── defaults-ar_AR.js
│ │ ├── defaults-ar_AR.min.js
│ │ ├── defaults-bg_BG.js
│ │ ├── defaults-bg_BG.min.js
│ │ ├── defaults-cro_CRO.js
│ │ ├── defaults-cro_CRO.min.js
│ │ ├── defaults-cs_CZ.js
│ │ ├── defaults-cs_CZ.min.js
│ │ ├── defaults-da_DK.js
│ │ ├── defaults-da_DK.min.js
│ │ ├── defaults-de_DE.js
│ │ ├── defaults-de_DE.min.js
│ │ ├── defaults-en_US.js
│ │ ├── defaults-en_US.min.js
│ │ ├── defaults-es_CL.js
│ │ ├── defaults-es_CL.min.js
│ │ ├── defaults-es_ES.js
│ │ ├── defaults-es_ES.min.js
│ │ ├── defaults-eu.js
│ │ ├── defaults-eu.min.js
│ │ ├── defaults-fa_IR.js
│ │ ├── defaults-fa_IR.min.js
│ │ ├── defaults-fi_FI.js
│ │ ├── defaults-fi_FI.min.js
│ │ ├── defaults-fr_FR.js
│ │ ├── defaults-fr_FR.min.js
│ │ ├── defaults-hu_HU.js
│ │ ├── defaults-hu_HU.min.js
│ │ ├── defaults-id_ID.js
│ │ ├── defaults-id_ID.min.js
│ │ ├── defaults-it_IT.js
│ │ ├── defaults-it_IT.min.js
│ │ ├── defaults-ko_KR.js
│ │ ├── defaults-ko_KR.min.js
│ │ ├── defaults-lt_LT.js
│ │ ├── defaults-lt_LT.min.js
│ │ ├── defaults-nb_NO.js
│ │ ├── defaults-nb_NO.min.js
│ │ ├── defaults-nl_NL.js
│ │ ├── defaults-nl_NL.min.js
│ │ ├── defaults-pl_PL.js
│ │ ├── defaults-pl_PL.min.js
│ │ ├── defaults-pt_BR.js
│ │ ├── defaults-pt_BR.min.js
│ │ ├── defaults-pt_PT.js
│ │ ├── defaults-pt_PT.min.js
│ │ ├── defaults-ro_RO.js
│ │ ├── defaults-ro_RO.min.js
│ │ ├── defaults-ru_RU.js
│ │ ├── defaults-ru_RU.min.js
│ │ ├── defaults-sk_SK.js
│ │ ├── defaults-sk_SK.min.js
│ │ ├── defaults-sl_SI.js
│ │ ├── defaults-sl_SI.min.js
│ │ ├── defaults-sv_SE.js
│ │ ├── defaults-sv_SE.min.js
│ │ ├── defaults-tr_TR.js
│ │ ├── defaults-tr_TR.min.js
│ │ ├── defaults-ua_UA.js
│ │ ├── defaults-ua_UA.min.js
│ │ ├── defaults-zh_CN.js
│ │ ├── defaults-zh_CN.min.js
│ │ ├── defaults-zh_TW.js
│ │ └── defaults-zh_TW.min.js
├── ckeditor
│ ├── CHANGES.md
│ ├── LICENSE.md
│ ├── README.md
│ ├── adapters
│ │ └── jquery.js
│ ├── build-config.js
│ ├── ckeditor.js
│ ├── config.js
│ ├── contents.css
│ ├── lang
│ │ ├── af.js
│ │ ├── ar.js
│ │ ├── bg.js
│ │ ├── bn.js
│ │ ├── bs.js
│ │ ├── ca.js
│ │ ├── cs.js
│ │ ├── cy.js
│ │ ├── da.js
│ │ ├── de-ch.js
│ │ ├── de.js
│ │ ├── el.js
│ │ ├── en-au.js
│ │ ├── en-ca.js
│ │ ├── en-gb.js
│ │ ├── en.js
│ │ ├── eo.js
│ │ ├── es.js
│ │ ├── et.js
│ │ ├── eu.js
│ │ ├── fa.js
│ │ ├── fi.js
│ │ ├── fo.js
│ │ ├── fr-ca.js
│ │ ├── fr.js
│ │ ├── gl.js
│ │ ├── gu.js
│ │ ├── he.js
│ │ ├── hi.js
│ │ ├── hr.js
│ │ ├── hu.js
│ │ ├── id.js
│ │ ├── is.js
│ │ ├── it.js
│ │ ├── ja.js
│ │ ├── ka.js
│ │ ├── km.js
│ │ ├── ko.js
│ │ ├── ku.js
│ │ ├── lt.js
│ │ ├── lv.js
│ │ ├── mk.js
│ │ ├── mn.js
│ │ ├── ms.js
│ │ ├── nb.js
│ │ ├── nl.js
│ │ ├── no.js
│ │ ├── pl.js
│ │ ├── pt-br.js
│ │ ├── pt.js
│ │ ├── ro.js
│ │ ├── ru.js
│ │ ├── si.js
│ │ ├── sk.js
│ │ ├── sl.js
│ │ ├── sq.js
│ │ ├── sr-latn.js
│ │ ├── sr.js
│ │ ├── sv.js
│ │ ├── th.js
│ │ ├── tr.js
│ │ ├── tt.js
│ │ ├── ug.js
│ │ ├── uk.js
│ │ ├── vi.js
│ │ ├── zh-cn.js
│ │ └── zh.js
│ ├── plugins
│ │ ├── a11yhelp
│ │ │ └── dialogs
│ │ │ │ ├── a11yhelp.js
│ │ │ │ └── lang
│ │ │ │ ├── _translationstatus.txt
│ │ │ │ ├── af.js
│ │ │ │ ├── ar.js
│ │ │ │ ├── bg.js
│ │ │ │ ├── ca.js
│ │ │ │ ├── cs.js
│ │ │ │ ├── cy.js
│ │ │ │ ├── da.js
│ │ │ │ ├── de-ch.js
│ │ │ │ ├── de.js
│ │ │ │ ├── el.js
│ │ │ │ ├── en-gb.js
│ │ │ │ ├── en.js
│ │ │ │ ├── eo.js
│ │ │ │ ├── es.js
│ │ │ │ ├── et.js
│ │ │ │ ├── eu.js
│ │ │ │ ├── fa.js
│ │ │ │ ├── fi.js
│ │ │ │ ├── fo.js
│ │ │ │ ├── fr-ca.js
│ │ │ │ ├── fr.js
│ │ │ │ ├── gl.js
│ │ │ │ ├── gu.js
│ │ │ │ ├── he.js
│ │ │ │ ├── hi.js
│ │ │ │ ├── hr.js
│ │ │ │ ├── hu.js
│ │ │ │ ├── id.js
│ │ │ │ ├── it.js
│ │ │ │ ├── ja.js
│ │ │ │ ├── km.js
│ │ │ │ ├── ko.js
│ │ │ │ ├── ku.js
│ │ │ │ ├── lt.js
│ │ │ │ ├── lv.js
│ │ │ │ ├── mk.js
│ │ │ │ ├── mn.js
│ │ │ │ ├── nb.js
│ │ │ │ ├── nl.js
│ │ │ │ ├── no.js
│ │ │ │ ├── pl.js
│ │ │ │ ├── pt-br.js
│ │ │ │ ├── pt.js
│ │ │ │ ├── ro.js
│ │ │ │ ├── ru.js
│ │ │ │ ├── si.js
│ │ │ │ ├── sk.js
│ │ │ │ ├── sl.js
│ │ │ │ ├── sq.js
│ │ │ │ ├── sr-latn.js
│ │ │ │ ├── sr.js
│ │ │ │ ├── sv.js
│ │ │ │ ├── th.js
│ │ │ │ ├── tr.js
│ │ │ │ ├── tt.js
│ │ │ │ ├── ug.js
│ │ │ │ ├── uk.js
│ │ │ │ ├── vi.js
│ │ │ │ ├── zh-cn.js
│ │ │ │ └── zh.js
│ │ ├── about
│ │ │ └── dialogs
│ │ │ │ ├── about.js
│ │ │ │ ├── hidpi
│ │ │ │ └── logo_ckeditor.png
│ │ │ │ └── logo_ckeditor.png
│ │ ├── clipboard
│ │ │ └── dialogs
│ │ │ │ └── paste.js
│ │ ├── codemirror
│ │ │ ├── css
│ │ │ │ └── codemirror.min.css
│ │ │ ├── icons
│ │ │ │ ├── autocomplete.png
│ │ │ │ ├── autoformat.png
│ │ │ │ ├── commentselectedrange.png
│ │ │ │ ├── searchcode.png
│ │ │ │ └── uncommentselectedrange.png
│ │ │ ├── js
│ │ │ │ ├── beautify.min.js
│ │ │ │ ├── codemirror.addons.min.js
│ │ │ │ ├── codemirror.addons.search.min.js
│ │ │ │ ├── codemirror.min.js
│ │ │ │ ├── codemirror.mode.bbcode.min.js
│ │ │ │ ├── codemirror.mode.bbcodemixed.min.js
│ │ │ │ ├── codemirror.mode.htmlmixed.min.js
│ │ │ │ ├── codemirror.mode.javascript.min.js
│ │ │ │ └── codemirror.mode.php.min.js
│ │ │ ├── lang
│ │ │ │ ├── af.js
│ │ │ │ ├── ar.js
│ │ │ │ ├── bg.js
│ │ │ │ ├── bn.js
│ │ │ │ ├── bs.js
│ │ │ │ ├── ca.js
│ │ │ │ ├── cs.js
│ │ │ │ ├── cy.js
│ │ │ │ ├── da.js
│ │ │ │ ├── de.js
│ │ │ │ ├── el.js
│ │ │ │ ├── en-au.js
│ │ │ │ ├── en-ca.js
│ │ │ │ ├── en-gb.js
│ │ │ │ ├── en.js
│ │ │ │ ├── eo.js
│ │ │ │ ├── es.js
│ │ │ │ ├── et.js
│ │ │ │ ├── eu.js
│ │ │ │ ├── fa.js
│ │ │ │ ├── fi.js
│ │ │ │ ├── fo.js
│ │ │ │ ├── fr-ca.js
│ │ │ │ ├── fr.js
│ │ │ │ ├── gl.js
│ │ │ │ ├── gu.js
│ │ │ │ ├── he.js
│ │ │ │ ├── hi.js
│ │ │ │ ├── hr.js
│ │ │ │ ├── hu.js
│ │ │ │ ├── is.js
│ │ │ │ ├── it.js
│ │ │ │ ├── ja.js
│ │ │ │ ├── ka.js
│ │ │ │ ├── km.js
│ │ │ │ ├── ko.js
│ │ │ │ ├── ku.js
│ │ │ │ ├── lt.js
│ │ │ │ ├── lv.js
│ │ │ │ ├── mk.js
│ │ │ │ ├── mn.js
│ │ │ │ ├── ms.js
│ │ │ │ ├── nb.js
│ │ │ │ ├── nl.js
│ │ │ │ ├── no.js
│ │ │ │ ├── pl.js
│ │ │ │ ├── pt-br.js
│ │ │ │ ├── pt.js
│ │ │ │ ├── ro.js
│ │ │ │ ├── ru.js
│ │ │ │ ├── sk.js
│ │ │ │ ├── sl.js
│ │ │ │ ├── sr-latn.js
│ │ │ │ ├── sr.js
│ │ │ │ ├── sv.js
│ │ │ │ ├── th.js
│ │ │ │ ├── tr.js
│ │ │ │ ├── ug.js
│ │ │ │ ├── uk.js
│ │ │ │ ├── vi.js
│ │ │ │ ├── zh-cn.js
│ │ │ │ └── zh.js
│ │ │ ├── plugin.js
│ │ │ └── theme
│ │ │ │ ├── 3024-day.css
│ │ │ │ ├── 3024-night.css
│ │ │ │ ├── ambiance-mobile.css
│ │ │ │ ├── ambiance.css
│ │ │ │ ├── base16-dark.css
│ │ │ │ ├── base16-light.css
│ │ │ │ ├── blackboard.css
│ │ │ │ ├── cobalt.css
│ │ │ │ ├── colorforth.css
│ │ │ │ ├── eclipse.css
│ │ │ │ ├── elegant.css
│ │ │ │ ├── erlang-dark.css
│ │ │ │ ├── lesser-dark.css
│ │ │ │ ├── liquibyte.css
│ │ │ │ ├── mbo.css
│ │ │ │ ├── mdn-like.css
│ │ │ │ ├── midnight.css
│ │ │ │ ├── monokai.css
│ │ │ │ ├── neat.css
│ │ │ │ ├── neo.css
│ │ │ │ ├── night.css
│ │ │ │ ├── paraiso-dark.css
│ │ │ │ ├── paraiso-light.css
│ │ │ │ ├── pastel-on-dark.css
│ │ │ │ ├── rubyblue.css
│ │ │ │ ├── solarized.css
│ │ │ │ ├── the-matrix.css
│ │ │ │ ├── tomorrow-night-bright.css
│ │ │ │ ├── tomorrow-night-eighties.css
│ │ │ │ ├── ttcn.css
│ │ │ │ ├── twilight.css
│ │ │ │ ├── vibrant-ink.css
│ │ │ │ ├── xq-dark.css
│ │ │ │ ├── xq-light.css
│ │ │ │ └── zenburn.css
│ │ ├── colordialog
│ │ │ └── dialogs
│ │ │ │ └── colordialog.js
│ │ ├── dialog
│ │ │ └── dialogDefinition.js
│ │ ├── div
│ │ │ └── dialogs
│ │ │ │ └── div.js
│ │ ├── find
│ │ │ └── dialogs
│ │ │ │ └── find.js
│ │ ├── flash
│ │ │ ├── dialogs
│ │ │ │ └── flash.js
│ │ │ └── images
│ │ │ │ └── placeholder.png
│ │ ├── forms
│ │ │ ├── dialogs
│ │ │ │ ├── button.js
│ │ │ │ ├── checkbox.js
│ │ │ │ ├── form.js
│ │ │ │ ├── hiddenfield.js
│ │ │ │ ├── radio.js
│ │ │ │ ├── select.js
│ │ │ │ ├── textarea.js
│ │ │ │ └── textfield.js
│ │ │ └── images
│ │ │ │ └── hiddenfield.gif
│ │ ├── icons.png
│ │ ├── icons_hidpi.png
│ │ ├── iframe
│ │ │ ├── dialogs
│ │ │ │ └── iframe.js
│ │ │ └── images
│ │ │ │ └── placeholder.png
│ │ ├── image
│ │ │ ├── dialogs
│ │ │ │ └── image.js
│ │ │ └── images
│ │ │ │ └── noimage.png
│ │ ├── link
│ │ │ ├── dialogs
│ │ │ │ ├── anchor.js
│ │ │ │ └── link.js
│ │ │ └── images
│ │ │ │ ├── anchor.png
│ │ │ │ └── hidpi
│ │ │ │ └── anchor.png
│ │ ├── liststyle
│ │ │ └── dialogs
│ │ │ │ └── liststyle.js
│ │ ├── magicline
│ │ │ └── images
│ │ │ │ ├── hidpi
│ │ │ │ ├── icon-rtl.png
│ │ │ │ └── icon.png
│ │ │ │ ├── icon-rtl.png
│ │ │ │ └── icon.png
│ │ ├── pagebreak
│ │ │ └── images
│ │ │ │ └── pagebreak.gif
│ │ ├── pastefromword
│ │ │ └── filter
│ │ │ │ └── default.js
│ │ ├── preview
│ │ │ └── preview.html
│ │ ├── scayt
│ │ │ ├── CHANGELOG.md
│ │ │ ├── LICENSE.md
│ │ │ ├── README.md
│ │ │ └── dialogs
│ │ │ │ ├── options.js
│ │ │ │ └── toolbar.css
│ │ ├── showblocks
│ │ │ └── images
│ │ │ │ ├── block_address.png
│ │ │ │ ├── block_blockquote.png
│ │ │ │ ├── block_div.png
│ │ │ │ ├── block_h1.png
│ │ │ │ ├── block_h2.png
│ │ │ │ ├── block_h3.png
│ │ │ │ ├── block_h4.png
│ │ │ │ ├── block_h5.png
│ │ │ │ ├── block_h6.png
│ │ │ │ ├── block_p.png
│ │ │ │ └── block_pre.png
│ │ ├── smiley
│ │ │ ├── dialogs
│ │ │ │ └── smiley.js
│ │ │ └── images
│ │ │ │ ├── angel_smile.gif
│ │ │ │ ├── angel_smile.png
│ │ │ │ ├── angry_smile.gif
│ │ │ │ ├── angry_smile.png
│ │ │ │ ├── broken_heart.gif
│ │ │ │ ├── broken_heart.png
│ │ │ │ ├── confused_smile.gif
│ │ │ │ ├── confused_smile.png
│ │ │ │ ├── cry_smile.gif
│ │ │ │ ├── cry_smile.png
│ │ │ │ ├── devil_smile.gif
│ │ │ │ ├── devil_smile.png
│ │ │ │ ├── embaressed_smile.gif
│ │ │ │ ├── embarrassed_smile.gif
│ │ │ │ ├── embarrassed_smile.png
│ │ │ │ ├── envelope.gif
│ │ │ │ ├── envelope.png
│ │ │ │ ├── heart.gif
│ │ │ │ ├── heart.png
│ │ │ │ ├── kiss.gif
│ │ │ │ ├── kiss.png
│ │ │ │ ├── lightbulb.gif
│ │ │ │ ├── lightbulb.png
│ │ │ │ ├── omg_smile.gif
│ │ │ │ ├── omg_smile.png
│ │ │ │ ├── regular_smile.gif
│ │ │ │ ├── regular_smile.png
│ │ │ │ ├── sad_smile.gif
│ │ │ │ ├── sad_smile.png
│ │ │ │ ├── shades_smile.gif
│ │ │ │ ├── shades_smile.png
│ │ │ │ ├── teeth_smile.gif
│ │ │ │ ├── teeth_smile.png
│ │ │ │ ├── thumbs_down.gif
│ │ │ │ ├── thumbs_down.png
│ │ │ │ ├── thumbs_up.gif
│ │ │ │ ├── thumbs_up.png
│ │ │ │ ├── tongue_smile.gif
│ │ │ │ ├── tongue_smile.png
│ │ │ │ ├── tounge_smile.gif
│ │ │ │ ├── whatchutalkingabout_smile.gif
│ │ │ │ ├── whatchutalkingabout_smile.png
│ │ │ │ ├── wink_smile.gif
│ │ │ │ └── wink_smile.png
│ │ ├── specialchar
│ │ │ └── dialogs
│ │ │ │ ├── lang
│ │ │ │ ├── _translationstatus.txt
│ │ │ │ ├── af.js
│ │ │ │ ├── ar.js
│ │ │ │ ├── bg.js
│ │ │ │ ├── ca.js
│ │ │ │ ├── cs.js
│ │ │ │ ├── cy.js
│ │ │ │ ├── da.js
│ │ │ │ ├── de-ch.js
│ │ │ │ ├── de.js
│ │ │ │ ├── el.js
│ │ │ │ ├── en-gb.js
│ │ │ │ ├── en.js
│ │ │ │ ├── eo.js
│ │ │ │ ├── es.js
│ │ │ │ ├── et.js
│ │ │ │ ├── eu.js
│ │ │ │ ├── fa.js
│ │ │ │ ├── fi.js
│ │ │ │ ├── fr-ca.js
│ │ │ │ ├── fr.js
│ │ │ │ ├── gl.js
│ │ │ │ ├── he.js
│ │ │ │ ├── hr.js
│ │ │ │ ├── hu.js
│ │ │ │ ├── id.js
│ │ │ │ ├── it.js
│ │ │ │ ├── ja.js
│ │ │ │ ├── km.js
│ │ │ │ ├── ko.js
│ │ │ │ ├── ku.js
│ │ │ │ ├── lt.js
│ │ │ │ ├── lv.js
│ │ │ │ ├── nb.js
│ │ │ │ ├── nl.js
│ │ │ │ ├── no.js
│ │ │ │ ├── pl.js
│ │ │ │ ├── pt-br.js
│ │ │ │ ├── pt.js
│ │ │ │ ├── ru.js
│ │ │ │ ├── si.js
│ │ │ │ ├── sk.js
│ │ │ │ ├── sl.js
│ │ │ │ ├── sq.js
│ │ │ │ ├── sv.js
│ │ │ │ ├── th.js
│ │ │ │ ├── tr.js
│ │ │ │ ├── tt.js
│ │ │ │ ├── ug.js
│ │ │ │ ├── uk.js
│ │ │ │ ├── vi.js
│ │ │ │ ├── zh-cn.js
│ │ │ │ └── zh.js
│ │ │ │ └── specialchar.js
│ │ ├── table
│ │ │ └── dialogs
│ │ │ │ └── table.js
│ │ ├── tabletools
│ │ │ └── dialogs
│ │ │ │ └── tableCell.js
│ │ ├── templates
│ │ │ ├── dialogs
│ │ │ │ ├── templates.css
│ │ │ │ └── templates.js
│ │ │ └── templates
│ │ │ │ ├── default.js
│ │ │ │ └── images
│ │ │ │ ├── template1.gif
│ │ │ │ ├── template2.gif
│ │ │ │ └── template3.gif
│ │ └── wsc
│ │ │ ├── LICENSE.md
│ │ │ ├── README.md
│ │ │ └── dialogs
│ │ │ ├── ciframe.html
│ │ │ ├── tmpFrameset.html
│ │ │ ├── wsc.css
│ │ │ ├── wsc.js
│ │ │ └── wsc_ie.js
│ ├── samples
│ │ ├── css
│ │ │ └── samples.css
│ │ ├── img
│ │ │ ├── github-top.png
│ │ │ ├── header-bg.png
│ │ │ ├── header-separator.png
│ │ │ ├── logo.png
│ │ │ └── navigation-tip.png
│ │ ├── index.html
│ │ ├── js
│ │ │ ├── sample.js
│ │ │ └── sf.js
│ │ ├── old
│ │ │ ├── ajax.html
│ │ │ ├── api.html
│ │ │ ├── appendto.html
│ │ │ ├── assets
│ │ │ │ ├── inlineall
│ │ │ │ │ └── logo.png
│ │ │ │ ├── outputxhtml
│ │ │ │ │ └── outputxhtml.css
│ │ │ │ ├── posteddata.php
│ │ │ │ ├── sample.jpg
│ │ │ │ └── uilanguages
│ │ │ │ │ └── languages.js
│ │ │ ├── datafiltering.html
│ │ │ ├── dialog
│ │ │ │ ├── assets
│ │ │ │ │ └── my_dialog.js
│ │ │ │ └── dialog.html
│ │ │ ├── divreplace.html
│ │ │ ├── enterkey
│ │ │ │ └── enterkey.html
│ │ │ ├── htmlwriter
│ │ │ │ ├── assets
│ │ │ │ │ └── outputforflash
│ │ │ │ │ │ ├── outputforflash.fla
│ │ │ │ │ │ ├── outputforflash.swf
│ │ │ │ │ │ └── swfobject.js
│ │ │ │ ├── outputforflash.html
│ │ │ │ └── outputhtml.html
│ │ │ ├── index.html
│ │ │ ├── inlineall.html
│ │ │ ├── inlinebycode.html
│ │ │ ├── inlinetextarea.html
│ │ │ ├── jquery.html
│ │ │ ├── magicline
│ │ │ │ └── magicline.html
│ │ │ ├── readonly.html
│ │ │ ├── replacebyclass.html
│ │ │ ├── replacebycode.html
│ │ │ ├── sample.css
│ │ │ ├── sample.js
│ │ │ ├── sample_posteddata.php
│ │ │ ├── tabindex.html
│ │ │ ├── toolbar
│ │ │ │ └── toolbar.html
│ │ │ ├── uicolor.html
│ │ │ ├── uilanguages.html
│ │ │ ├── wysiwygarea
│ │ │ │ └── fullpage.html
│ │ │ └── xhtmlstyle.html
│ │ └── toolbarconfigurator
│ │ │ ├── css
│ │ │ └── fontello.css
│ │ │ ├── font
│ │ │ ├── LICENSE.txt
│ │ │ ├── config.json
│ │ │ ├── fontello.eot
│ │ │ ├── fontello.svg
│ │ │ ├── fontello.ttf
│ │ │ └── fontello.woff
│ │ │ ├── index.html
│ │ │ ├── js
│ │ │ ├── abstracttoolbarmodifier.js
│ │ │ ├── fulltoolbareditor.js
│ │ │ ├── toolbarmodifier.js
│ │ │ └── toolbartextmodifier.js
│ │ │ └── lib
│ │ │ └── codemirror
│ │ │ ├── LICENSE
│ │ │ ├── codemirror.css
│ │ │ ├── codemirror.js
│ │ │ ├── javascript.js
│ │ │ ├── neo.css
│ │ │ ├── show-hint.css
│ │ │ └── show-hint.js
│ ├── skins
│ │ ├── moono
│ │ │ ├── dialog.css
│ │ │ ├── dialog_ie.css
│ │ │ ├── dialog_ie7.css
│ │ │ ├── dialog_ie8.css
│ │ │ ├── dialog_iequirks.css
│ │ │ ├── editor.css
│ │ │ ├── editor_gecko.css
│ │ │ ├── editor_ie.css
│ │ │ ├── editor_ie7.css
│ │ │ ├── editor_ie8.css
│ │ │ ├── editor_iequirks.css
│ │ │ ├── icons.png
│ │ │ ├── icons_hidpi.png
│ │ │ ├── images
│ │ │ │ ├── arrow.png
│ │ │ │ ├── close.png
│ │ │ │ ├── hidpi
│ │ │ │ │ ├── close.png
│ │ │ │ │ ├── lock-open.png
│ │ │ │ │ ├── lock.png
│ │ │ │ │ └── refresh.png
│ │ │ │ ├── lock-open.png
│ │ │ │ ├── lock.png
│ │ │ │ ├── refresh.png
│ │ │ │ └── spinner.gif
│ │ │ └── readme.md
│ │ └── moonocolor
│ │ │ ├── dialog.css
│ │ │ ├── dialog_ie.css
│ │ │ ├── dialog_ie7.css
│ │ │ ├── dialog_ie8.css
│ │ │ ├── dialog_iequirks.css
│ │ │ ├── editor.css
│ │ │ ├── editor_gecko.css
│ │ │ ├── editor_ie.css
│ │ │ ├── editor_ie7.css
│ │ │ ├── editor_ie8.css
│ │ │ ├── editor_iequirks.css
│ │ │ ├── icons.png
│ │ │ ├── icons_hidpi.png
│ │ │ ├── images
│ │ │ ├── arrow.png
│ │ │ ├── close.png
│ │ │ ├── hidpi
│ │ │ │ ├── close.png
│ │ │ │ ├── lock-open.png
│ │ │ │ ├── lock.png
│ │ │ │ └── refresh.png
│ │ │ ├── lock-open.png
│ │ │ ├── lock.png
│ │ │ ├── refresh.png
│ │ │ └── spinner.gif
│ │ │ └── readme.md
│ └── styles.js
├── css-gradient-generator
│ ├── .editorconfig
│ ├── .jshintrc
│ ├── CONTRIBUTING.md
│ ├── Gruntfile.js
│ ├── LICENSE.md
│ ├── README.md
│ ├── bootstrap
│ │ ├── css
│ │ │ ├── bootstrap-theme.css
│ │ │ ├── bootstrap-theme.css.map
│ │ │ ├── bootstrap-theme.min.css
│ │ │ ├── bootstrap.css
│ │ │ ├── bootstrap.css.map
│ │ │ └── bootstrap.min.css
│ │ ├── fonts
│ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ └── glyphicons-halflings-regular.woff
│ │ └── js
│ │ │ ├── bootstrap.js
│ │ │ └── bootstrap.min.js
│ ├── css-gradient-generator.jquery.json
│ ├── dist
│ │ ├── css-gradient-generator.css
│ │ ├── css-gradient-generator.js
│ │ ├── css-gradient-generator.min.css
│ │ └── css-gradient-generator.min.js
│ ├── gradient.php
│ ├── index.html
│ ├── package.json
│ ├── resources
│ │ ├── LICENSE.md
│ │ ├── bootstrap-colorpickersliders
│ │ │ ├── bootstrap.colorpickersliders.css
│ │ │ └── bootstrap.colorpickersliders.js
│ │ ├── bootstrap-touchspin
│ │ │ └── bootstrap.touchspin.js
│ │ ├── favicon.ico
│ │ ├── icomoon
│ │ │ ├── sprites-000.png
│ │ │ ├── sprites-999.png
│ │ │ ├── sprites-fff.png
│ │ │ ├── sprites-old.css
│ │ │ └── sprites.css
│ │ ├── img.old
│ │ │ ├── bg-color.png
│ │ │ ├── bg-menu-selected.png
│ │ │ ├── bg-menu.png
│ │ │ ├── bootstrap-duallistbox.png
│ │ │ ├── jquery-colorpickersliders.png
│ │ │ ├── virtuosoft-logo.png
│ │ │ └── virtuosoft-logo2.png
│ │ ├── jquery-1.11.0.min.js
│ │ ├── jquery-1.11.0.min.map
│ │ ├── jquery.base64
│ │ │ └── jquery.base64.min.js
│ │ ├── modernizr
│ │ │ └── modernizr-custom.min.js
│ │ ├── prettify
│ │ │ ├── lang-apollo.js
│ │ │ ├── lang-clj.js
│ │ │ ├── lang-css.js
│ │ │ ├── lang-go.js
│ │ │ ├── lang-hs.js
│ │ │ ├── lang-lisp.js
│ │ │ ├── lang-lua.js
│ │ │ ├── lang-ml.js
│ │ │ ├── lang-n.js
│ │ │ ├── lang-proto.js
│ │ │ ├── lang-scala.js
│ │ │ ├── lang-sql.js
│ │ │ ├── lang-tex.js
│ │ │ ├── lang-vb.js
│ │ │ ├── lang-vhdl.js
│ │ │ ├── lang-wiki.js
│ │ │ ├── lang-xq.js
│ │ │ ├── lang-yaml.js
│ │ │ ├── prettify.css
│ │ │ └── prettify.js
│ │ ├── qrcode
│ │ │ └── qrcode.min.js
│ │ ├── site.css
│ │ ├── syntaxhighlighter
│ │ │ └── 3.0.83
│ │ │ │ ├── shBrushCss.js
│ │ │ │ ├── shBrushJScript.js
│ │ │ │ ├── shCore.css
│ │ │ │ ├── shCore.js
│ │ │ │ └── shThemeDefault.css
│ │ ├── tinycolor
│ │ │ └── tinycolor.js
│ │ └── zeroclipboard
│ │ │ ├── ZeroClipboard.js
│ │ │ ├── ZeroClipboard.min.js
│ │ │ └── ZeroClipboard.swf
│ └── src
│ │ ├── css-gradient-generator.css
│ │ └── css-gradient-generator.js
├── css
│ ├── bootstrap-datepicker.min.css
│ ├── bootstrap-toggle.min.css
│ ├── bootstrap.min.css
│ ├── bootstrap.min.css.map
│ ├── custom-admin.css
│ ├── font-awesome.min.css
│ ├── materialdesignicons.min.css
│ ├── nice-select.css
│ └── vendors.css
├── elFinder-2.1.38
│ ├── .gitignore
│ ├── Changelog
│ ├── LICENSE.md
│ ├── README.md
│ ├── bower.json
│ ├── composer.json
│ ├── css
│ │ ├── elfinder.full.css
│ │ ├── elfinder.min.css
│ │ └── theme.css
│ ├── elfinder.html
│ ├── elfinder.legacy.html
│ ├── files
│ │ ├── .gitkeep
│ │ └── .trash
│ │ │ └── .gitkeep
│ ├── img
│ │ ├── arrows-active.png
│ │ ├── arrows-normal.png
│ │ ├── crop.gif
│ │ ├── dialogs.png
│ │ ├── edit_aceeditor.png
│ │ ├── edit_ckeditor.png
│ │ ├── edit_ckeditor5.png
│ │ ├── edit_codemirror.png
│ │ ├── edit_creativecloud.png
│ │ ├── edit_pixlreditor.png
│ │ ├── edit_pixlrexpress.png
│ │ ├── edit_simplemde.png
│ │ ├── edit_tinymce.png
│ │ ├── edit_zohooffice.png
│ │ ├── icons-big.png
│ │ ├── icons-small.png
│ │ ├── logo.png
│ │ ├── progress.gif
│ │ ├── quicklook-bg.png
│ │ ├── quicklook-icons.png
│ │ ├── resize.png
│ │ ├── spinner-mini.gif
│ │ ├── toolbar.png
│ │ ├── trashmesh.png
│ │ ├── ui-icons_ffffff_256x240.png
│ │ ├── volume_icon_box.png
│ │ ├── volume_icon_dropbox.png
│ │ ├── volume_icon_ftp.png
│ │ ├── volume_icon_googledrive.png
│ │ ├── volume_icon_local.png
│ │ ├── volume_icon_onedrive.png
│ │ ├── volume_icon_sql.png
│ │ ├── volume_icon_trash.png
│ │ └── volume_icon_zip.png
│ ├── js
│ │ ├── elfinder.full.js
│ │ ├── elfinder.min.js
│ │ ├── extras
│ │ │ ├── editors.default.js
│ │ │ ├── editors.default.min.js
│ │ │ ├── quicklook.googledocs.js
│ │ │ └── quicklook.googledocs.min.js
│ │ ├── i18n
│ │ │ ├── elfinder.LANG.js
│ │ │ ├── elfinder.ar.js
│ │ │ ├── elfinder.bg.js
│ │ │ ├── elfinder.ca.js
│ │ │ ├── elfinder.cs.js
│ │ │ ├── elfinder.da.js
│ │ │ ├── elfinder.de.js
│ │ │ ├── elfinder.el.js
│ │ │ ├── elfinder.es.js
│ │ │ ├── elfinder.fa.js
│ │ │ ├── elfinder.fallback.js
│ │ │ ├── elfinder.fo.js
│ │ │ ├── elfinder.fr.js
│ │ │ ├── elfinder.he.js
│ │ │ ├── elfinder.hr.js
│ │ │ ├── elfinder.hu.js
│ │ │ ├── elfinder.id.js
│ │ │ ├── elfinder.it.js
│ │ │ ├── elfinder.ja.js
│ │ │ ├── elfinder.jp.js
│ │ │ ├── elfinder.ko.js
│ │ │ ├── elfinder.nl.js
│ │ │ ├── elfinder.no.js
│ │ │ ├── elfinder.pl.js
│ │ │ ├── elfinder.pt_BR.js
│ │ │ ├── elfinder.ro.js
│ │ │ ├── elfinder.ru.js
│ │ │ ├── elfinder.si.js
│ │ │ ├── elfinder.sk.js
│ │ │ ├── elfinder.sl.js
│ │ │ ├── elfinder.sr.js
│ │ │ ├── elfinder.sv.js
│ │ │ ├── elfinder.tr.js
│ │ │ ├── elfinder.ug_CN.js
│ │ │ ├── elfinder.uk.js
│ │ │ ├── elfinder.vi.js
│ │ │ ├── elfinder.zh_CN.js
│ │ │ ├── elfinder.zh_TW.js
│ │ │ └── help
│ │ │ │ ├── cs.html.js
│ │ │ │ ├── en.html.js
│ │ │ │ ├── es.html.js
│ │ │ │ ├── ja.html.js
│ │ │ │ ├── ko.html.js
│ │ │ │ ├── pl.html.js
│ │ │ │ ├── ru.html.js
│ │ │ │ └── sk.html.js
│ │ └── proxy
│ │ │ └── elFinderSupportVer1.js
│ ├── main.default.js
│ ├── package.json
│ ├── php
│ │ ├── .tmp
│ │ │ └── .htaccess
│ │ ├── MySQLStorage.sql
│ │ ├── autoload.php
│ │ ├── connector.minimal.php
│ │ ├── connector.php-dist
│ │ ├── editors
│ │ │ ├── ZipArchive
│ │ │ │ └── editor.php
│ │ │ ├── ZohoOffice
│ │ │ │ └── editor.php
│ │ │ └── editor.php
│ │ ├── elFinder.class.php
│ │ ├── elFinderConnector.class.php
│ │ ├── elFinderFlysystemGoogleDriveNetmount.php
│ │ ├── elFinderPlugin.php
│ │ ├── elFinderSession.php
│ │ ├── elFinderSessionInterface.php
│ │ ├── elFinderVolumeBox.class.php
│ │ ├── elFinderVolumeDriver.class.php
│ │ ├── elFinderVolumeDropbox.class.php
│ │ ├── elFinderVolumeDropbox2.class.php
│ │ ├── elFinderVolumeFTP.class.php
│ │ ├── elFinderVolumeFTPIIS.class.php
│ │ ├── elFinderVolumeGoogleDrive.class.php
│ │ ├── elFinderVolumeGroup.class.php
│ │ ├── elFinderVolumeLocalFileSystem.class.php
│ │ ├── elFinderVolumeMsSQL.class.php
│ │ ├── elFinderVolumeMySQL.class.php
│ │ ├── elFinderVolumeOneDrive.class.php
│ │ ├── elFinderVolumeS3.class.php
│ │ ├── elFinderVolumeTrash.class.php
│ │ ├── elFinderVolumeTrashMySQL.class.php
│ │ ├── libs
│ │ │ └── GdBmp.php
│ │ ├── mime.types
│ │ ├── plugins
│ │ │ ├── AutoResize
│ │ │ │ └── plugin.php
│ │ │ ├── AutoRotate
│ │ │ │ └── plugin.php
│ │ │ ├── Normalizer
│ │ │ │ └── plugin.php
│ │ │ ├── Sanitizer
│ │ │ │ └── plugin.php
│ │ │ └── Watermark
│ │ │ │ ├── logo.png
│ │ │ │ └── plugin.php
│ │ └── resources
│ │ │ ├── image.png
│ │ │ └── video.png
│ └── sounds
│ │ └── rm.wav
├── font-awesome
│ ├── css
│ │ └── font-awesome.min.css
│ └── fonts
│ │ ├── FontAwesome.otf
│ │ ├── fontawesome-webfont.eot
│ │ ├── fontawesome-webfont.svg
│ │ ├── fontawesome-webfont.ttf
│ │ ├── fontawesome-webfont.woff
│ │ └── fontawesome-webfont.woff2
├── fonts
│ ├── FontAwesome.otf
│ ├── fontawesome-webfont.eot
│ ├── fontawesome-webfont.svg
│ ├── fontawesome-webfont.ttf
│ ├── fontawesome-webfont.woff
│ ├── fontawesome-webfont.woff2
│ ├── glyphicons-halflings-regular.eot
│ ├── glyphicons-halflings-regular.svg
│ ├── glyphicons-halflings-regular.ttf
│ ├── glyphicons-halflings-regular.woff
│ ├── glyphicons-halflings-regular.woff2
│ ├── materialdesignicons-webfont.eot
│ ├── materialdesignicons-webfont.svg
│ ├── materialdesignicons-webfont.ttf
│ ├── materialdesignicons-webfont.woff
│ └── materialdesignicons-webfont.woff2
├── highcharts
│ ├── data.js
│ ├── drilldown.js
│ └── highcharts.js
├── imgs
│ ├── admin-home.png
│ ├── admin-user.png
│ ├── ajax-loader.gif
│ ├── blogger.png
│ ├── brands.jpg
│ ├── caregorie-bg.png
│ ├── categories.jpg
│ ├── cookie-law-themes
│ │ ├── dark-bottom.png
│ │ ├── dark-floating.png
│ │ ├── dark-top.png
│ │ ├── light-bottom.png
│ │ ├── light-floating.png
│ │ └── light-top.png
│ ├── discount.png
│ ├── email.png
│ ├── exlamation-hi.png
│ ├── filemanager.png
│ ├── load.gif
│ ├── login-bg.png
│ ├── login-cover.png
│ ├── new-blinking.gif
│ ├── no.png
│ ├── ok-themes.png
│ ├── ok.png
│ ├── orders.png
│ ├── pages-styling.png
│ ├── products-img.png
│ ├── seo_titles_descript.png
│ ├── settings-page.png
│ ├── shop-cart-add-icon.png
│ ├── small-globe.png
│ ├── template-admin-logo.png
│ ├── timer.png
│ └── webpages.jpg
└── js
│ ├── bootbox.min.js
│ ├── bootstrap-confirmation.min.js
│ ├── bootstrap-datepicker.min.js
│ ├── bootstrap-toggle.min.js
│ ├── bootstrap.min.js
│ ├── image-preveiw.js
│ ├── jquery-1.11.3.min.map
│ ├── jquery-ui.css
│ ├── jquery-ui.min.css
│ ├── jquery-ui.min.js
│ ├── jquery.eqheight.js
│ ├── jquery.min.js
│ ├── jquery.nice-select.min.js
│ ├── mine_admin.js
│ ├── pGenerator.jquery.js
│ ├── placeholders.min.js
│ ├── system.js
│ ├── vendors.js
│ ├── zxcvbn.js
│ └── zxcvbn_bootstrap3.js
├── attachments
├── lang_flags
│ ├── bg.jpg
│ ├── en.jpg
│ ├── fr.jpg
│ ├── gr.png
│ └── id.jpg
├── no-image-frontend.png
├── no-image.png
└── site_logo
│ └── NewLogo.jpg
├── database.sql
├── github
├── admin_panel4.png
├── btc.png
├── paypalLogo.png
├── templateFileStructure.png
├── templates.png
└── vendors_pages.jpg
├── index.php
└── 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
├── CI_Session_driver_interface.php
├── OldSessionWrapper.php
├── PHP8SessionWrapper.php
├── Session.php
├── SessionHandlerInterface.php
├── SessionUpdateTimestampHandlerInterface.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
/.github/FUNDING.yml:
--------------------------------------------------------------------------------
1 | # These are supported funding model platforms
2 |
3 | custom: ['https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=W5BR6K29BQX7E&source=url']
4 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | /attachments/shop_images/*
2 | /application/logs/*
--------------------------------------------------------------------------------
/.htaccess:
--------------------------------------------------------------------------------
1 | RewriteEngine on
2 |
3 | RewriteCond %{REQUEST_FILENAME} !-f
4 | RewriteCond %{REQUEST_FILENAME} !-d
5 | RewriteRule ^(.*)$ index.php?/$1 [L]
--------------------------------------------------------------------------------
/ISSUE_TEMPLATE.md:
--------------------------------------------------------------------------------
1 | What am I trying to do..
2 | ..What's happening
3 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/abdullahthewebbee/Ecommerce-CodeIgniter-Bootstrap-master/ec5c412f95d35a7c6977cb1b4202d033ddba3b06/LICENSE
--------------------------------------------------------------------------------
/SECURITY.md:
--------------------------------------------------------------------------------
1 | # Security Policy
2 |
3 | ## Reporting a Vulnerability
4 |
5 | Please, contact me on email - kirilkirkov91@gmail.com
6 |
--------------------------------------------------------------------------------
/application/.htaccess:
--------------------------------------------------------------------------------
1 |
Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /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 | load->Model('Public_model'); 12 | } 13 | 14 | public function index() 15 | { 16 | $data = array(); 17 | $head = array(); 18 | $arrSeo = $this->Public_model->getSeo('shoppingcart'); 19 | $head['title'] = @$arrSeo['title']; 20 | $head['description'] = @$arrSeo['description']; 21 | $head['keywords'] = str_replace(" ", ",", $head['title']); 22 | $this->render('shopping_cart', $head, $data); 23 | } 24 | 25 | } 26 | -------------------------------------------------------------------------------- /application/controllers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/core/MY_Loader.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/helpers/cleanreferral_helper.php: -------------------------------------------------------------------------------- 1 | config->item('no_dynamic_pages'); 10 | $withDuplicates = array_merge($activePages, $arr); 11 | if (empty($activePages)) { 12 | return $activePages; 13 | } 14 | return array_diff($withDuplicates, array_diff_assoc($withDuplicates, array_unique($withDuplicates))); 15 | } 16 | -------------------------------------------------------------------------------- /application/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/helpers/mb_ucfirst_helper.php: -------------------------------------------------------------------------------- 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/bulgarian/db_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahthewebbee/Ecommerce-CodeIgniter-Bootstrap-master/ec5c412f95d35a7c6977cb1b4202d033ddba3b06/application/language/bulgarian/db_lang.php -------------------------------------------------------------------------------- /application/language/bulgarian/email_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahthewebbee/Ecommerce-CodeIgniter-Bootstrap-master/ec5c412f95d35a7c6977cb1b4202d033ddba3b06/application/language/bulgarian/email_lang.php -------------------------------------------------------------------------------- /application/language/bulgarian/form_validation_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/language/bulgarian/js/all.js: -------------------------------------------------------------------------------- 1 | var lang = { 2 | added_to_cart: "Добавено в кошницата", 3 | error_to_cart: "Проблем с кошницата! Опитайте пак!", 4 | no_products: "Нямате продукти", 5 | confirm_clear_cart: "Сигурни ли сте, че искате да изпразните количката?", 6 | cleared_cart: "Кошницата е изпразнена", 7 | are_you_sure: "Сигурни ли сте?", 8 | yes: "Да", 9 | no: "Не", 10 | clear_all: "Изчисти", 11 | checkout: "Плащане", 12 | remove_from_cart: "Изтрито от кошницата", 13 | enter_valid_email: "Моля въведете валиден имейл адрес", 14 | discountCodeInvalid: "Кода е невалиден" 15 | }; -------------------------------------------------------------------------------- /application/language/bulgarian/pagination_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/language/english/js/all.js: -------------------------------------------------------------------------------- 1 | var lang = { 2 | added_to_cart: "Added to cart", 3 | error_to_cart: "Problem with shopping cart! Try again!", 4 | no_products: "No products", 5 | confirm_clear_cart: "Are you sure want to delete items in shopping cart?", 6 | cleared_cart: "Your cart is empty", 7 | are_you_sure: "Are you sure?", 8 | yes: "Yes", 9 | no: "No", 10 | clear_all: "Clear", 11 | checkout: "Payment", 12 | remove_from_cart: "Deleted from shopping cart", 13 | enter_valid_email: "Please enter a valid email address", 14 | discountCodeInvalid: "Discount code is invalid" 15 | }; -------------------------------------------------------------------------------- /application/language/english/pagination_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/language/français/js/all.js: -------------------------------------------------------------------------------- 1 | var lang = { 2 | added_to_cart:"Ajouté au panier", 3 | error_to_cart:"Problème avec le panier ! Réessayer!", 4 | no_products:"Aucun produit", 5 | confirm_clear_cart:"Êtes-vous sûr de vouloir supprimer des articles dans le panier ?", 6 | cleared_cart:"Votre panier est vide", 7 | are_you_sure:"Êtes-vous sûr?", 8 | yes:"Oui", 9 | no:"Non", 10 | clear_all:"Effacer", 11 | checkout:"Paiement", 12 | remove_from_cart:"Supprimé du panier", 13 | enter_valid_email:"S'il vous plaît, mettez une adresse email valide", 14 | discountCodeInvalid:"Le code de réduction est invalide", 15 | }; -------------------------------------------------------------------------------- /application/language/français/pagination_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/language/greece/js/all.js: -------------------------------------------------------------------------------- 1 | var lang = { 2 | added_to_cart:"Προσθήκη στο Καλάθι", 3 | error_to_cart:"Πρόβλημα με το καλάθι! Δοκιμάστε ξανά!", 4 | no_products:"Δεν υπάρχουν στοιχεία", 5 | confirm_clear_cart:"Είστε βέβαιοι ότι θέλετε να αδειάσετε το καλάθι;", 6 | cleared_cart:"Το καλάθι σας είναι άδειο", 7 | are_you_sure:"Είσαι σίγουρος;", 8 | yes:" ότι", 9 | no:"δεν", 10 | clear_all:"σαφής", 11 | checkout:"πληρωμή", 12 | remove_from_cart:"Διαγράφονται από το καλάθι", 13 | enter_valid_email:"Παρακαλώ εισάγετε μια έγκυρη διεύθυνση ηλεκτρονικού ταχυδρομείου", 14 | discountCodeInvalid: "Ο κωδικός δεν είναι έγκυρος" 15 | }; 16 | -------------------------------------------------------------------------------- /application/language/greece/pagination_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/language/indonesian/db_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahthewebbee/Ecommerce-CodeIgniter-Bootstrap-master/ec5c412f95d35a7c6977cb1b4202d033ddba3b06/application/language/indonesian/db_lang.php -------------------------------------------------------------------------------- /application/language/indonesian/email_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahthewebbee/Ecommerce-CodeIgniter-Bootstrap-master/ec5c412f95d35a7c6977cb1b4202d033ddba3b06/application/language/indonesian/email_lang.php -------------------------------------------------------------------------------- /application/language/indonesian/form_validation_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/language/indonesian/js/all.js: -------------------------------------------------------------------------------- 1 | var lang = { 2 | added_to_cart: "Ditambahkan ke keranjang", 3 | error_to_cart: "Ada masalah dengan sistem keranjang! Coba lagi!", 4 | no_products: "Tidak ada produk", 5 | confirm_clear_cart: "Apakah anda yakin ingin menghapus semua barang di keranjang?", 6 | cleared_cart: "Keranjang anda kosong", 7 | are_you_sure: "Anda yakin?", 8 | yes: "Ya", 9 | no: "Tidak", 10 | clear_all: "Hapus", 11 | checkout: "Pembayaran", 12 | remove_from_cart: "Dihapus dari keranjang", 13 | enter_valid_email: "Masukan alamat email yang benar", 14 | discountCodeInvalid: "Kode diskon tidak benar" 15 | }; -------------------------------------------------------------------------------- /application/language/indonesian/pagination_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/models/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/modules/admin/models/Settings_model.php: -------------------------------------------------------------------------------- 1 | db->get('value_store'); 14 | return $query->result_array(); 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /application/modules/admin/models/Vendors_model.php: -------------------------------------------------------------------------------- 1 | 0) { 14 | $this->db->where('id', $id); 15 | } 16 | $query = $this->db->get('vendors'); 17 | return $query; 18 | } 19 | 20 | public function getVendorOrders($vendor_id) 21 | { 22 | $this->db->from('vendors'); 23 | $this->db->where('vendors.id', $vendor_id); 24 | $this->db->join('vendors_orders', 'vendors_orders.vendor_id = vendors.id'); 25 | $query = $this->db->get(); 26 | return $query->result_array(); 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /application/modules/vendor/views/_parts/footer_auth.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |