├── plugins ├── system │ ├── j2store │ │ └── index.html │ ├── j2pagecache │ │ └── index.html │ └── j2canonical │ │ └── languages │ │ └── en-GB.plg_system_j2canonical.ini ├── user │ └── j2userregister │ │ ├── index.html │ │ └── fields │ │ ├── index.html │ │ └── j2storecustom.xml ├── j2store │ ├── shipping_free │ │ ├── index.html │ │ └── shipping_free │ │ │ ├── index.html │ │ │ ├── tmpl │ │ │ └── index.html │ │ │ └── models │ │ │ ├── index.html │ │ │ └── fields │ │ │ └── usergroup.php │ ├── shipping_standard │ │ ├── index.html │ │ ├── shipping_standard │ │ │ ├── index.html │ │ │ ├── tmpl │ │ │ │ ├── index.html │ │ │ │ └── rates.php │ │ │ ├── models │ │ │ │ └── index.html │ │ │ ├── tables │ │ │ │ ├── index.html │ │ │ │ └── shippingmethod.php │ │ │ └── view.html.php │ │ └── shipping_standard.xml │ ├── payment_cash │ │ ├── payment_cash │ │ │ ├── index.html │ │ │ └── tmpl │ │ │ │ ├── index.html │ │ │ │ ├── message.php │ │ │ │ ├── form.php │ │ │ │ ├── view.php │ │ │ │ └── postpayment.php │ │ └── index.html │ ├── app_bootstrap3 │ │ ├── app_bootstrap3 │ │ │ ├── index.html │ │ │ ├── tmpl │ │ │ │ ├── index.html │ │ │ │ ├── bootstrap3 │ │ │ │ │ ├── view_ldesc.php │ │ │ │ │ ├── view_sdesc.php │ │ │ │ │ ├── default_sku.php │ │ │ │ │ ├── view_sku.php │ │ │ │ │ ├── view_title.php │ │ │ │ │ ├── default_description.php │ │ │ │ │ ├── default_title.php │ │ │ │ │ └── view_notabs.php │ │ │ │ ├── tag_bootstrap3 │ │ │ │ │ ├── view_ldesc.php │ │ │ │ │ ├── view_sdesc.php │ │ │ │ │ ├── default_sku.php │ │ │ │ │ ├── view_sku.php │ │ │ │ │ ├── view_title.php │ │ │ │ │ ├── default_description.php │ │ │ │ │ ├── view_notabs.php │ │ │ │ │ └── default_title.php │ │ │ │ └── backend.php │ │ │ └── controller.php │ │ ├── index.html │ │ └── app_bootstrap3.xml │ ├── payment_paypal │ │ ├── payment_paypal │ │ │ ├── index.html │ │ │ └── tmpl │ │ │ │ ├── index.html │ │ │ │ ├── message.php │ │ │ │ ├── postpayment.php │ │ │ │ ├── form.php │ │ │ │ └── view.php │ │ ├── languages │ │ │ └── en-GB.plg_j2store_payment_paypal.sys.ini │ │ └── index.html │ ├── report_itemised │ │ ├── report_itemised │ │ │ ├── index.html │ │ │ ├── models │ │ │ │ └── index.html │ │ │ ├── tables │ │ │ │ ├── index.html │ │ │ │ └── reportitemised.php │ │ │ ├── tmpl │ │ │ │ └── index.html │ │ │ └── controller.php │ │ ├── languages │ │ │ └── en-GB.plg_j2store_report_itemised.sys.ini │ │ └── index.html │ ├── payment_banktransfer │ │ ├── payment_banktransfer │ │ │ ├── index.html │ │ │ └── tmpl │ │ │ │ ├── index.html │ │ │ │ ├── message.php │ │ │ │ ├── form.php │ │ │ │ ├── view.php │ │ │ │ └── postpayment.php │ │ └── index.html │ ├── payment_moneyorder │ │ ├── payment_moneyorder │ │ │ ├── index.html │ │ │ └── tmpl │ │ │ │ ├── index.html │ │ │ │ ├── message.php │ │ │ │ ├── form.php │ │ │ │ ├── view.php │ │ │ │ └── postpayment.php │ │ └── index.html │ ├── payment_sagepayform │ │ ├── payment_sagepayform │ │ │ ├── index.html │ │ │ └── tmpl │ │ │ │ ├── index.html │ │ │ │ ├── message.php │ │ │ │ ├── postpayment.php │ │ │ │ ├── form.php │ │ │ │ └── view.php │ │ ├── languages │ │ │ └── en-GB.plg_j2store_payment_sagepayform.sys.ini │ │ └── index.html │ ├── app_localization_data │ │ ├── languages │ │ │ ├── en-GB.plg_j2store_tool_localization_data.sys.ini │ │ │ └── en-GB.plg_j2store_tool_localization_data.ini │ │ ├── index.html │ │ ├── app_localization_data │ │ │ ├── index.html │ │ │ ├── models │ │ │ │ └── index.html │ │ │ ├── tables │ │ │ │ └── index.html │ │ │ └── tmpl │ │ │ │ └── index.html │ │ └── app_localization_data.xml │ ├── app_currencyupdater │ │ ├── index.html │ │ └── app_currencyupdater │ │ │ ├── controller.php │ │ │ └── models │ │ │ └── appcurrencyupdaters.php │ ├── report_products │ │ ├── index.html │ │ ├── languages │ │ │ └── index.html │ │ ├── report_products │ │ │ └── index.html │ │ └── report_products.xml │ ├── app_flexivariable │ │ ├── index.html │ │ └── app_flexivariable │ │ │ ├── index.html │ │ │ ├── tmpl │ │ │ └── index.html │ │ │ └── models │ │ │ ├── index.html │ │ │ └── appflexivariables.php │ ├── app_schemaproducts │ │ ├── index.html │ │ ├── app_schemaproducts │ │ │ ├── index.html │ │ │ ├── tmpl │ │ │ │ ├── index.html │ │ │ │ └── default.php │ │ │ ├── models │ │ │ │ ├── index.html │ │ │ │ └── appschemaproducts.php │ │ │ └── controller.php │ │ └── languages │ │ │ └── en-GB.plg_j2store_app_schemaproducts.ini │ ├── app_bootstrap4 │ │ ├── index.html │ │ ├── app_bootstrap4 │ │ │ ├── index.html │ │ │ ├── tmpl │ │ │ │ ├── index.html │ │ │ │ ├── bootstrap4 │ │ │ │ │ ├── view_ldesc.php │ │ │ │ │ ├── view_sdesc.php │ │ │ │ │ ├── default_sku.php │ │ │ │ │ ├── view_sku.php │ │ │ │ │ ├── view_title.php │ │ │ │ │ ├── default_description.php │ │ │ │ │ ├── default_title.php │ │ │ │ │ └── view_notabs.php │ │ │ │ ├── tag_bootstrap4 │ │ │ │ │ ├── view_ldesc.php │ │ │ │ │ ├── view_sdesc.php │ │ │ │ │ ├── default_sku.php │ │ │ │ │ ├── view_sku.php │ │ │ │ │ ├── view_title.php │ │ │ │ │ ├── default_description.php │ │ │ │ │ ├── view_notabs.php │ │ │ │ │ └── default_title.php │ │ │ │ └── backend.php │ │ │ └── controller.php │ │ └── app_bootstrap4.xml │ ├── app_bootstrap5 │ │ ├── index.html │ │ ├── app_bootstrap5 │ │ │ ├── index.html │ │ │ ├── tmpl │ │ │ │ ├── index.html │ │ │ │ ├── bootstrap5 │ │ │ │ │ ├── view_ldesc.php │ │ │ │ │ ├── view_sdesc.php │ │ │ │ │ ├── default_sku.php │ │ │ │ │ ├── view_sku.php │ │ │ │ │ ├── view_title.php │ │ │ │ │ ├── default_description.php │ │ │ │ │ ├── default_title.php │ │ │ │ │ └── view_notabs.php │ │ │ │ ├── tag_bootstrap5 │ │ │ │ │ ├── view_ldesc.php │ │ │ │ │ ├── view_sdesc.php │ │ │ │ │ ├── default_sku.php │ │ │ │ │ ├── view_sku.php │ │ │ │ │ ├── view_title.php │ │ │ │ │ ├── default_description.php │ │ │ │ │ ├── view_notabs.php │ │ │ │ │ └── default_title.php │ │ │ │ └── backend.php │ │ │ └── controller.php │ │ └── app_bootstrap5.xml │ └── app_diagnostics │ │ ├── index.html │ │ ├── app_diagnostics │ │ ├── index.html │ │ ├── tmpl │ │ │ └── index.html │ │ └── controller.php │ │ └── app_diagnostics.xml ├── finder │ ├── index.html │ └── j2store │ │ ├── index.html │ │ └── elements │ │ └── index.html ├── search │ ├── index.html │ └── j2store │ │ ├── index.html │ │ └── elements │ │ └── index.html └── content │ └── j2store │ ├── index.html │ └── forms │ └── j2store.xml ├── modules ├── admin │ ├── j2store_menu │ │ ├── index.html │ │ ├── css │ │ │ └── j2store_module_menu.css │ │ ├── tmpl │ │ │ └── index.html │ │ ├── helper.php │ │ └── mod_j2store_menu.xml │ ├── j2store_stats │ │ ├── index.html │ │ ├── tmpl │ │ │ └── index.html │ │ └── mod_j2store_stats.php │ ├── j2store_stats_mini │ │ ├── index.html │ │ ├── tmpl │ │ │ └── index.html │ │ └── mod_j2store_stats_mini.php │ ├── j2store_chart │ │ ├── index.html │ │ └── tmpl │ │ │ └── index.html │ └── j2store_orders │ │ ├── index.html │ │ ├── tmpl │ │ └── index.html │ │ └── mod_j2store_orders.php └── site │ ├── mod_j2store_currency │ ├── css │ │ ├── j2store_cart.css │ │ └── index.html │ ├── index.html │ └── tmpl │ │ └── index.html │ └── mod_j2store_cart │ ├── index.html │ ├── tmpl │ └── index.html │ └── css │ └── index.html ├── fof ├── version.txt ├── _lang │ └── en-GB │ │ └── en-GB.lib_f0f.ini ├── model │ ├── dispatcher │ │ └── behavior.php │ └── field │ │ └── boolean.php ├── form │ ├── field │ │ └── image.php │ └── header │ │ ├── filtersql.php │ │ ├── filterdate.php │ │ ├── filterselectable.php │ │ ├── filterfilterable.php │ │ ├── filtersearchable.php │ │ └── rowselect.php ├── table │ └── dispatcher │ │ └── behavior.php ├── include.php ├── database │ ├── iterator │ │ ├── oracle.php │ │ ├── sqlite.php │ │ ├── azure.php │ │ └── pdomysql.php │ ├── query │ │ ├── pdo.php │ │ ├── pdomysql.php │ │ └── mysql.php │ └── driver │ │ └── sqlazure.php └── hal │ └── render │ └── interface.php ├── components └── com_j2store │ ├── views │ ├── product │ │ ├── index.html │ │ ├── tmpl │ │ │ ├── index.html │ │ │ ├── item.php │ │ │ └── adminitem.php │ │ ├── view.csv.php │ │ └── view.json.php │ ├── products │ │ ├── index.html │ │ ├── tmpl │ │ │ └── index.html │ │ ├── view.csv.php │ │ └── view.json.php │ ├── myprofile │ │ ├── index.html │ │ ├── view.pdf.php │ │ ├── tmpl │ │ │ ├── index.html │ │ │ └── default.xml │ │ └── metadata.xml │ ├── producttags │ │ ├── index.html │ │ ├── tmpl │ │ │ └── index.html │ │ ├── view.json.php │ │ └── view.csv.php │ ├── index.html │ ├── checkout │ │ ├── tmpl │ │ │ ├── index.html │ │ │ ├── shipping_yes.xml │ │ │ ├── default.xml │ │ │ └── postpayment.xml │ │ ├── metadata.xml │ │ └── view.html.php │ ├── carts │ │ ├── metadata.xml │ │ └── tmpl │ │ │ └── default.xml │ └── vendor │ │ ├── tmpl │ │ ├── vendor_orders.php │ │ └── vendor.html │ │ └── index.html │ ├── index.html │ ├── models │ └── index.html │ ├── controllers │ └── index.html │ └── j2store.php ├── administrator ├── components │ └── com_j2store │ │ ├── views │ │ ├── apps │ │ │ ├── index.html │ │ │ └── tmpl │ │ │ │ ├── index.html │ │ │ │ └── form.default.xml │ │ ├── index.html │ │ ├── product │ │ │ ├── index.html │ │ │ └── tmpl │ │ │ │ ├── form_apps.php │ │ │ │ └── variant_form_general.php │ │ ├── filtergroup │ │ │ ├── index.html │ │ │ └── tmpl │ │ │ │ └── index.html │ │ ├── zones │ │ │ ├── index.html │ │ │ └── tmpl │ │ │ │ └── index.html │ │ ├── cpanel │ │ │ ├── index.html │ │ │ └── tmpl │ │ │ │ └── index.html │ │ ├── eupdates │ │ │ ├── index.html │ │ │ └── tmpl │ │ │ │ └── index.html │ │ ├── coupon │ │ │ ├── index.html │ │ │ └── tmpl │ │ │ │ └── index.html │ │ ├── customer │ │ │ ├── index.html │ │ │ └── tmpl │ │ │ │ └── index.html │ │ ├── customers │ │ │ ├── index.html │ │ │ └── view.csv.php │ │ ├── emailtemplate │ │ │ └── index.html │ │ ├── app │ │ │ ├── index.html │ │ │ ├── tmpl │ │ │ │ ├── index.html │ │ │ │ └── view.php │ │ │ └── view.html.php │ │ ├── appstores │ │ │ ├── index.html │ │ │ └── tmpl │ │ │ │ └── index.html │ │ ├── geozone │ │ │ ├── index.html │ │ │ └── tmpl │ │ │ │ └── index.html │ │ ├── option │ │ │ ├── index.html │ │ │ └── tmpl │ │ │ │ └── index.html │ │ ├── order │ │ │ ├── index.html │ │ │ └── tmpl │ │ │ │ └── form_shipping.php │ │ ├── orders │ │ │ ├── index.html │ │ │ └── tmpl │ │ │ │ └── print.php │ │ ├── payments │ │ │ └── index.html │ │ ├── products │ │ │ ├── index.html │ │ │ └── tmpl │ │ │ │ └── index.html │ │ ├── report │ │ │ ├── index.html │ │ │ ├── tmpl │ │ │ │ ├── index.html │ │ │ │ └── view.php │ │ │ └── view.html.php │ │ ├── reports │ │ │ ├── index.html │ │ │ └── view.html.php │ │ ├── shippings │ │ │ ├── index.html │ │ │ ├── tmpl │ │ │ │ ├── index.html │ │ │ │ └── view.php │ │ │ └── view.html.php │ │ ├── voucher │ │ │ ├── index.html │ │ │ └── tmpl │ │ │ │ └── index.html │ │ ├── inventories │ │ │ └── index.html │ │ ├── taxprofile │ │ │ ├── index.html │ │ │ └── tmpl │ │ │ │ └── index.html │ │ ├── shippingtroubles │ │ │ └── view.html.php │ │ └── postconfig │ │ │ ├── view.html.php │ │ │ └── tmpl │ │ │ └── default_integrity.php │ │ ├── models │ │ ├── behavior │ │ │ ├── cartdefault.php │ │ │ ├── default.php │ │ │ ├── autoload.php │ │ │ └── stock.php │ │ ├── index.html │ │ ├── fields │ │ │ ├── index.html │ │ │ ├── customlink.php │ │ │ ├── customheading.php │ │ │ └── customnotice.php │ │ └── storeprofiles.php │ │ ├── library │ │ ├── plugins │ │ │ ├── plugin.php │ │ │ └── index.html │ │ ├── calculators │ │ │ └── index.html │ │ └── selectable │ │ │ └── index.html │ │ ├── sql │ │ ├── updates │ │ │ ├── mysql │ │ │ │ ├── 1.0.0.sql │ │ │ │ └── index.html │ │ │ └── index.html │ │ ├── index.html │ │ └── install │ │ │ ├── index.html │ │ │ └── mysql │ │ │ ├── index.html │ │ │ ├── uninstall.j2store.sql │ │ │ ├── lengths.sql │ │ │ └── weights.sql │ │ ├── index.html │ │ ├── tables │ │ ├── index.html │ │ ├── eupdate.php │ │ ├── app.php │ │ ├── myprofile.php │ │ ├── metafield.php │ │ ├── report.php │ │ ├── payment.php │ │ ├── shipping.php │ │ ├── productpriceindex.php │ │ ├── productimage.php │ │ ├── productvariantoptionvalue.php │ │ ├── orderitemattribute.php │ │ └── country.php │ │ ├── backup │ │ └── index.html │ │ ├── helpers │ │ ├── index.html │ │ └── toolbar.php │ │ ├── controllers │ │ └── index.html │ │ ├── fof │ │ └── include.php │ │ ├── config.xml │ │ ├── j2store.php │ │ └── version.php └── index.html ├── media └── j2store │ ├── css │ └── index.html │ ├── index.html │ ├── js │ ├── index.html │ ├── j2store.namespace.js │ └── bootstrap-advanced-ui.js │ ├── invoices │ ├── index.html │ └── .htaccess │ ├── uploads │ ├── index.html │ ├── .htaccess │ └── web.config │ ├── images │ ├── index.html │ ├── tick.png │ ├── loader.gif │ ├── loading.gif │ ├── publish_x.png │ ├── ajax-loader.gif │ ├── arrow_white.png │ ├── ft_images │ │ ├── css.png │ │ ├── db.png │ │ ├── doc.png │ │ ├── pdf.png │ │ ├── php.png │ │ ├── ppt.png │ │ ├── psd.png │ │ ├── txt.png │ │ ├── xls.png │ │ ├── zip.png │ │ ├── code.png │ │ ├── file.png │ │ ├── film.png │ │ ├── flash.png │ │ ├── html.png │ │ ├── java.png │ │ ├── linux.png │ │ ├── music.png │ │ ├── ruby.png │ │ ├── picture.png │ │ ├── script.png │ │ ├── spinner.gif │ │ ├── directory.png │ │ ├── application.png │ │ └── folder_open.png │ ├── j2store-icon.png │ ├── j2store-logo.png │ ├── remove-over.png │ ├── remove-roll.png │ ├── app_diagnostics.png │ ├── app_placeholder.png │ ├── dashboard-logo.png │ ├── app_campaignrabbit.png │ ├── no_product_image.png │ ├── app_retainfulcoupon.png │ ├── app_localization_data.png │ ├── common │ │ └── no_image-100x100.jpg │ ├── ui-icons_222222_256x240.png │ ├── ui-icons_228ef1_256x240.png │ ├── ui-icons_444444_256x240.png │ ├── ui-icons_555555_256x240.png │ ├── ui-icons_777620_256x240.png │ ├── ui-icons_777777_256x240.png │ ├── ui-icons_cc0000_256x240.png │ ├── ui-icons_ef8c08_256x240.png │ ├── ui-icons_ffd27a_256x240.png │ ├── ui-icons_ffffff_256x240.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_diagonals-thick_18_b81900_40x40.png │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ └── ui-bg_highlight-soft_75_ffe45c_1x100.png │ └── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.ttf │ └── fontawesome-webfont.woff ├── language └── backend │ ├── index.html │ └── en-GB │ └── index.html └── .gitignore /plugins/system/j2store/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/admin/j2store_menu/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/admin/j2store_stats/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/system/j2pagecache/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/user/j2userregister/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fof/version.txt: -------------------------------------------------------------------------------- 1 | revAA17961 2 | 2022-02-15 -------------------------------------------------------------------------------- /modules/admin/j2store_stats_mini/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/j2store/shipping_free/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/com_j2store/views/product/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/com_j2store/views/products/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/j2store/shipping_standard/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/user/j2userregister/fields/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/com_j2store/views/myprofile/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/com_j2store/views/myprofile/view.pdf.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/com_j2store/views/product/tmpl/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/com_j2store/views/producttags/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/j2store/payment_cash/payment_cash/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/views/apps/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/com_j2store/views/myprofile/tmpl/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/site/mod_j2store_currency/css/j2store_cart.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/j2store/app_bootstrap3/app_bootstrap3/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/j2store/payment_paypal/payment_paypal/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/j2store/report_itemised/report_itemised/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/j2store/shipping_free/shipping_free/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/views/apps/tmpl/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/finder/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /plugins/j2store/app_bootstrap3/app_bootstrap3/tmpl/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/j2store/shipping_free/shipping_free/tmpl/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/j2store/shipping_standard/shipping_standard/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/search/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/models/behavior/cartdefault.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /media/j2store/css/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /media/j2store/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /media/j2store/js/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /plugins/finder/j2store/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /plugins/j2store/payment_banktransfer/payment_banktransfer/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/j2store/payment_moneyorder/payment_moneyorder/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/j2store/payment_sagepayform/payment_sagepayform/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/j2store/report_itemised/report_itemised/models/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/j2store/report_itemised/report_itemised/tables/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/j2store/shipping_standard/shipping_standard/tmpl/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/search/j2store/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/library/plugins/plugin.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /media/j2store/uploads/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /plugins/content/j2store/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /plugins/j2store/shipping_standard/shipping_standard/models/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/j2store/shipping_standard/shipping_standard/tables/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /administrator/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/finder/j2store/elements/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /plugins/search/j2store/elements/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /language/backend/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/j2store/payment_cash/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/com_j2store/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /language/backend/en-GB/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /media/j2store/images/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /media/j2store/invoices/.htaccess: -------------------------------------------------------------------------------- 1 | order deny, allow 2 | deny from all 3 | allow from none -------------------------------------------------------------------------------- /media/j2store/uploads/.htaccess: -------------------------------------------------------------------------------- 1 | order deny, allow 2 | deny from all 3 | allow from none -------------------------------------------------------------------------------- /modules/site/mod_j2store_cart/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/site/mod_j2store_currency/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/com_j2store/views/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/site/mod_j2store_cart/tmpl/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/site/mod_j2store_currency/tmpl/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/j2store/payment_banktransfer/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/j2store/payment_moneyorder/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/sql/updates/mysql/1.0.0.sql: -------------------------------------------------------------------------------- 1 | # Empty file to satisfy Joomla! -------------------------------------------------------------------------------- /components/com_j2store/views/checkout/tmpl/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/site/mod_j2store_cart/css/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /plugins/j2store/app_localization_data/languages/en-GB.plg_j2store_tool_localization_data.sys.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/site/mod_j2store_currency/css/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /plugins/j2store/app_currencyupdater/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/j2store/payment_cash/payment_cash/tmpl/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/sql/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/views/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/views/product/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /plugins/j2store/payment_paypal/payment_paypal/tmpl/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/sql/install/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/sql/updates/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/views/filtergroup/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/views/zones/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/views/zones/tmpl/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /plugins/j2store/payment_moneyorder/payment_moneyorder/tmpl/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/library/plugins/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/views/cpanel/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/views/filtergroup/tmpl/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /plugins/j2store/payment_banktransfer/payment_banktransfer/tmpl/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/j2store/payment_sagepayform/payment_sagepayform/tmpl/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/j2store/report_itemised/report_itemised/tmpl/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/sql/install/mysql/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/sql/updates/mysql/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/views/cpanel/tmpl/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /media/j2store/images/tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/images/tick.png -------------------------------------------------------------------------------- /administrator/components/com_j2store/sql/install/mysql/uninstall.j2store.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE IF EXISTS `#__j2store_countries`; 2 | -------------------------------------------------------------------------------- /media/j2store/images/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/images/loader.gif -------------------------------------------------------------------------------- /media/j2store/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/images/loading.gif -------------------------------------------------------------------------------- /media/j2store/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /media/j2store/images/publish_x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/images/publish_x.png -------------------------------------------------------------------------------- /media/j2store/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/images/ajax-loader.gif -------------------------------------------------------------------------------- /media/j2store/images/arrow_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/images/arrow_white.png -------------------------------------------------------------------------------- /media/j2store/images/ft_images/css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/images/ft_images/css.png -------------------------------------------------------------------------------- /media/j2store/images/ft_images/db.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/images/ft_images/db.png -------------------------------------------------------------------------------- /media/j2store/images/ft_images/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/images/ft_images/doc.png -------------------------------------------------------------------------------- /media/j2store/images/ft_images/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/images/ft_images/pdf.png -------------------------------------------------------------------------------- /media/j2store/images/ft_images/php.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/images/ft_images/php.png -------------------------------------------------------------------------------- /media/j2store/images/ft_images/ppt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/images/ft_images/ppt.png -------------------------------------------------------------------------------- /media/j2store/images/ft_images/psd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/images/ft_images/psd.png -------------------------------------------------------------------------------- /media/j2store/images/ft_images/txt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/images/ft_images/txt.png -------------------------------------------------------------------------------- /media/j2store/images/ft_images/xls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/images/ft_images/xls.png -------------------------------------------------------------------------------- /media/j2store/images/ft_images/zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/images/ft_images/zip.png -------------------------------------------------------------------------------- /media/j2store/images/j2store-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/images/j2store-icon.png -------------------------------------------------------------------------------- /media/j2store/images/j2store-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/images/j2store-logo.png -------------------------------------------------------------------------------- /media/j2store/images/remove-over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/images/remove-over.png -------------------------------------------------------------------------------- /media/j2store/images/remove-roll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/images/remove-roll.png -------------------------------------------------------------------------------- /plugins/j2store/report_products/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /media/j2store/images/app_diagnostics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/images/app_diagnostics.png -------------------------------------------------------------------------------- /media/j2store/images/app_placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/images/app_placeholder.png -------------------------------------------------------------------------------- /media/j2store/images/dashboard-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/images/dashboard-logo.png -------------------------------------------------------------------------------- /media/j2store/images/ft_images/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/images/ft_images/code.png -------------------------------------------------------------------------------- /media/j2store/images/ft_images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/images/ft_images/file.png -------------------------------------------------------------------------------- /media/j2store/images/ft_images/film.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/images/ft_images/film.png -------------------------------------------------------------------------------- /media/j2store/images/ft_images/flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/images/ft_images/flash.png -------------------------------------------------------------------------------- /media/j2store/images/ft_images/html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/images/ft_images/html.png -------------------------------------------------------------------------------- /media/j2store/images/ft_images/java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/images/ft_images/java.png -------------------------------------------------------------------------------- /media/j2store/images/ft_images/linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/images/ft_images/linux.png -------------------------------------------------------------------------------- /media/j2store/images/ft_images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/images/ft_images/music.png -------------------------------------------------------------------------------- /media/j2store/images/ft_images/ruby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/images/ft_images/ruby.png -------------------------------------------------------------------------------- /media/j2store/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /media/j2store/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /media/j2store/images/app_campaignrabbit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/images/app_campaignrabbit.png -------------------------------------------------------------------------------- /media/j2store/images/ft_images/picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/images/ft_images/picture.png -------------------------------------------------------------------------------- /media/j2store/images/ft_images/script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/images/ft_images/script.png -------------------------------------------------------------------------------- /media/j2store/images/ft_images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/images/ft_images/spinner.gif -------------------------------------------------------------------------------- /media/j2store/images/no_product_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/images/no_product_image.png -------------------------------------------------------------------------------- /plugins/j2store/report_products/languages/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /media/j2store/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /media/j2store/images/app_retainfulcoupon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/images/app_retainfulcoupon.png -------------------------------------------------------------------------------- /media/j2store/images/ft_images/directory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/images/ft_images/directory.png -------------------------------------------------------------------------------- /plugins/j2store/app_localization_data/languages/en-GB.plg_j2store_tool_localization_data.ini: -------------------------------------------------------------------------------- 1 | PLG_J2STORE_TOOL_LOCALIZATION_DATA="Tool Localization Data" -------------------------------------------------------------------------------- /plugins/j2store/report_products/report_products/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /components/com_j2store/views/checkout/tmpl/shipping_yes.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /media/j2store/images/app_localization_data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/images/app_localization_data.png -------------------------------------------------------------------------------- /media/j2store/images/common/no_image-100x100.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/images/common/no_image-100x100.jpg -------------------------------------------------------------------------------- /media/j2store/images/ft_images/application.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/images/ft_images/application.png -------------------------------------------------------------------------------- /media/j2store/images/ft_images/folder_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/images/ft_images/folder_open.png -------------------------------------------------------------------------------- /media/j2store/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /media/j2store/images/ui-icons_228ef1_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/images/ui-icons_228ef1_256x240.png -------------------------------------------------------------------------------- /media/j2store/images/ui-icons_444444_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/images/ui-icons_444444_256x240.png -------------------------------------------------------------------------------- /media/j2store/images/ui-icons_555555_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/images/ui-icons_555555_256x240.png -------------------------------------------------------------------------------- /media/j2store/images/ui-icons_777620_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/images/ui-icons_777620_256x240.png -------------------------------------------------------------------------------- /media/j2store/images/ui-icons_777777_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/images/ui-icons_777777_256x240.png -------------------------------------------------------------------------------- /media/j2store/images/ui-icons_cc0000_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/images/ui-icons_cc0000_256x240.png -------------------------------------------------------------------------------- /media/j2store/images/ui-icons_ef8c08_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/images/ui-icons_ef8c08_256x240.png -------------------------------------------------------------------------------- /media/j2store/images/ui-icons_ffd27a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/images/ui-icons_ffd27a_256x240.png -------------------------------------------------------------------------------- /media/j2store/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /media/j2store/images/ui-bg_flat_10_000000_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/images/ui-bg_flat_10_000000_40x100.png -------------------------------------------------------------------------------- /media/j2store/images/ui-bg_glass_100_f6f6f6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/images/ui-bg_glass_100_f6f6f6_1x400.png -------------------------------------------------------------------------------- /media/j2store/images/ui-bg_glass_100_fdf5ce_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/images/ui-bg_glass_100_fdf5ce_1x400.png -------------------------------------------------------------------------------- /media/j2store/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.settings 2 | /.buildpath 3 | .idea 4 | administrator/components/com_j2store/com_j2store.xml 5 | administrator/components/com_j2store/views/emailtemplate/tpls -------------------------------------------------------------------------------- /plugins/j2store/app_flexivariable/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /media/j2store/images/ui-bg_gloss-wave_35_f6a828_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/images/ui-bg_gloss-wave_35_f6a828_500x100.png -------------------------------------------------------------------------------- /media/j2store/images/ui-bg_diagonals-thick_18_b81900_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/images/ui-bg_diagonals-thick_18_b81900_40x40.png -------------------------------------------------------------------------------- /media/j2store/images/ui-bg_diagonals-thick_20_666666_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/images/ui-bg_diagonals-thick_20_666666_40x40.png -------------------------------------------------------------------------------- /media/j2store/images/ui-bg_highlight-soft_100_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/images/ui-bg_highlight-soft_100_eeeeee_1x100.png -------------------------------------------------------------------------------- /media/j2store/images/ui-bg_highlight-soft_75_ffe45c_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/j2store4/main/media/j2store/images/ui-bg_highlight-soft_75_ffe45c_1x100.png -------------------------------------------------------------------------------- /plugins/j2store/app_flexivariable/app_flexivariable/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /plugins/j2store/app_flexivariable/app_flexivariable/tmpl/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /plugins/j2store/payment_paypal/languages/en-GB.plg_j2store_payment_paypal.sys.ini: -------------------------------------------------------------------------------- 1 | PLG_J2STORE_PAYMENTS_PAYPAL="Paypal Payments" 2 | J2STORE_PAYPAL_PLUGINDESC="This Plugin enables Paypal payments" -------------------------------------------------------------------------------- /plugins/j2store/app_flexivariable/app_flexivariable/models/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /plugins/j2store/app_bootstrap3/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Title 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /components/com_j2store/views/carts/metadata.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/views/eupdates/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Insert title here 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /components/com_j2store/views/checkout/metadata.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /plugins/j2store/shipping_free/shipping_free/models/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Insert title here 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/library/calculators/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Insert title here 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/views/eupdates/tmpl/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Insert title here 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /media/j2store/uploads/web.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /plugins/j2store/payment_sagepayform/languages/en-GB.plg_j2store_payment_sagepayform.sys.ini: -------------------------------------------------------------------------------- 1 | PLG_J2STORE_PAYMENT_SAGEPAYFORM="SagePay Payments (Form)" 2 | J2STORE_SAGEPAYFORM_PLUGINDESC="This Plugin enables SagePay Payments (Form Integration) with J2Store" 3 | -------------------------------------------------------------------------------- /plugins/j2store/report_itemised/languages/en-GB.plg_j2store_report_itemised.sys.ini: -------------------------------------------------------------------------------- 1 | PLG_J2STORE_PLUGIN_REPORT_ITEMISED_DESC="Report Itemised Plugin to Display the Items" 2 | PLG_J2STORE_REPORT_ITEMISED="Report Itemised" 3 | PLG_J2STORE_EXPORT_ITEMISED="Export to CSV" 4 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/tables/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Access Denied 5 | 6 | 7 |

Access Denied

8 | 9 | 10 | -------------------------------------------------------------------------------- /components/com_j2store/views/vendor/tmpl/vendor_orders.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Access Denied 5 | 6 | 7 |

Access Denied

8 | 9 | 10 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/views/coupon/tmpl/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Access Denied 5 | 6 | 7 |

Access Denied

8 | 9 | 10 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/views/customer/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Access Denied 5 | 6 | 7 |

Access Denied

8 | 9 | 10 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/views/customers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Access Denied 5 | 6 | 7 |

Access Denied

8 | 9 | 10 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/views/customer/tmpl/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Access Denied 5 | 6 | 7 |

Access Denied

8 | 9 | 10 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/views/emailtemplate/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Access Denied 5 | 6 | 7 |

Access Denied

8 | 9 | 10 | -------------------------------------------------------------------------------- /components/com_j2store/views/myprofile/metadata.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /components/com_j2store/views/vendor/tmpl/vendor.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /plugins/j2store/app_schemaproducts/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /plugins/j2store/payment_paypal/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /plugins/j2store/payment_sagepayform/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /plugins/j2store/app_schemaproducts/app_schemaproducts/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/library/selectable/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /plugins/j2store/app_schemaproducts/app_schemaproducts/tmpl/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /components/com_j2store/views/carts/tmpl/default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /plugins/j2store/app_schemaproducts/app_schemaproducts/models/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /components/com_j2store/views/checkout/tmpl/default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /modules/admin/j2store_chart/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Insert title here 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /modules/admin/j2store_menu/css/j2store_module_menu.css: -------------------------------------------------------------------------------- 1 | #j2menu .j2right{ 2 | width: 190px; 3 | margin-top: -45px; 4 | margin-left: -190px; 5 | } 6 | #j2menu .j2left{ 7 | width: 190px; 8 | margin-top: -45px; 9 | margin-left: 158px; 10 | } 11 | .j2submenu-list:hover { 12 | display: block; 13 | } -------------------------------------------------------------------------------- /plugins/j2store/app_schemaproducts/languages/en-GB.plg_j2store_app_schemaproducts.ini: -------------------------------------------------------------------------------- 1 | J2STORE_APP_SCHEMAPRODUCTS="Product Schema for J2Store" 2 | J2STORE_APP_SCHEMAPRODUCTS_DESC="This app used to set product schema for products. It will help in Google search result." 3 | PLG_J2STORE_APP_SCHEMAPRODUCTS="Product Schema for J2Store" -------------------------------------------------------------------------------- /components/com_j2store/models/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Insert title here 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /components/com_j2store/views/myprofile/tmpl/default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /modules/admin/j2store_chart/tmpl/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Insert title here 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /modules/admin/j2store_menu/tmpl/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Insert title here 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /modules/admin/j2store_orders/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Insert title here 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /modules/admin/j2store_stats/tmpl/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Insert title here 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /plugins/j2store/app_bootstrap4/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Insert title here 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /plugins/j2store/app_bootstrap5/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Insert title here 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /plugins/j2store/app_diagnostics/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Insert title here 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /plugins/j2store/report_itemised/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Insert title here 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/sql/install/mysql/lengths.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO `#__j2store_lengths` (`j2store_length_id`, `length_title`, `length_unit`, `length_value`, `enabled`,`ordering`) VALUES 2 | (1, 'Centimetre', 'cm', 1.00000000, 1,1), 3 | (2, 'Inch', 'in', 0.39370000, 1,1), 4 | (3, 'Millimetre', 'mm', 10.00000000, 1,1); 5 | 6 | -------------------------------------------------------------------------------- /components/com_j2store/controllers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Insert title here 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /components/com_j2store/views/vendor/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Insert title here 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /modules/admin/j2store_orders/tmpl/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Insert title here 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /modules/admin/j2store_stats_mini/tmpl/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Insert title here 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /plugins/j2store/app_localization_data/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Insert title here 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /components/com_j2store/views/products/tmpl/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Insert title here 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/backup/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Insert title here 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Insert title here 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/models/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Insert title here 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/views/app/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Insert title here 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /components/com_j2store/views/producttags/tmpl/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Insert title here 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /media/j2store/js/j2store.namespace.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Setup (required for Joomla! 3) 3 | */ 4 | if(typeof(j2store) == 'undefined') { 5 | var j2store = {}; 6 | } 7 | if(typeof(j2store.jQuery) == 'undefined') { 8 | j2store.jQuery = jQuery.noConflict(); 9 | } 10 | 11 | if(typeof(j2storeURL) == 'undefined') { 12 | var j2storeURL = ''; 13 | } 14 | -------------------------------------------------------------------------------- /plugins/j2store/app_bootstrap4/app_bootstrap4/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Insert title here 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /plugins/j2store/app_bootstrap5/app_bootstrap5/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Insert title here 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /plugins/j2store/app_diagnostics/app_diagnostics/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Insert title here 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/controllers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Insert title here 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/models/fields/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Insert title here 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/views/app/tmpl/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Insert title here 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/views/appstores/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Insert title here 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/views/geozone/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Insert title here 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/views/option/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Insert title here 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/views/order/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Insert title here 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/views/orders/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Insert title here 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/views/payments/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Insert title here 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/views/products/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Insert title here 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/views/report/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Insert title here 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/views/reports/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Insert title here 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/views/shippings/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Insert title here 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/views/voucher/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Insert title here 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /plugins/j2store/app_bootstrap4/app_bootstrap4/tmpl/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Insert title here 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /plugins/j2store/app_bootstrap5/app_bootstrap5/tmpl/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Insert title here 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /plugins/j2store/app_diagnostics/app_diagnostics/tmpl/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Insert title here 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/views/appstores/tmpl/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Insert title here 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/views/geozone/tmpl/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Insert title here 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/views/inventories/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Insert title here 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/views/option/tmpl/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Insert title here 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/views/products/tmpl/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Insert title here 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/views/report/tmpl/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Insert title here 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/views/shippings/tmpl/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Insert title here 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/views/taxprofile/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Insert title here 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/views/voucher/tmpl/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Insert title here 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /plugins/j2store/app_localization_data/app_localization_data/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Insert title here 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/sql/install/mysql/weights.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO `#__j2store_weights` (`j2store_weight_id`, `weight_title`, `weight_unit`, `weight_value`, `enabled`,`ordering`) VALUES 2 | (1, 'Kilogram', 'kg', 1.00000000, 1,1), 3 | (2, 'Gram', 'g', 1000.00000000, 1,1), 4 | (3, 'Ounce', 'oz', 35.27400000, 1,1), 5 | (4, 'Pound', 'lb', 2.20462000, 1,1); 6 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/views/taxprofile/tmpl/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Insert title here 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /plugins/j2store/app_localization_data/app_localization_data/models/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Insert title here 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /plugins/j2store/app_localization_data/app_localization_data/tables/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Insert title here 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /plugins/j2store/app_localization_data/app_localization_data/tmpl/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Insert title here 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/fof/include.php: -------------------------------------------------------------------------------- 1 | 9 | 10 | message; ?> 11 | -------------------------------------------------------------------------------- /plugins/j2store/payment_cash/payment_cash/tmpl/form.php: -------------------------------------------------------------------------------- 1 | 10 | 11 | onselection_text); ?> -------------------------------------------------------------------------------- /plugins/j2store/payment_cash/payment_cash/tmpl/view.php: -------------------------------------------------------------------------------- 1 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /plugins/j2store/payment_cash/payment_cash/tmpl/postpayment.php: -------------------------------------------------------------------------------- 1 | 9 | 10 |
onafterpayment_text); ?>
11 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/views/orders/tmpl/print.php: -------------------------------------------------------------------------------- 1 | input->getString('task'); 11 | ?> 12 | loadAnyTemplate('site:com_j2store/myprofile/view');?> -------------------------------------------------------------------------------- /administrator/components/com_j2store/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
8 | 16 |
17 |
18 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/views/shippingtroubles/view.html.php: -------------------------------------------------------------------------------- 1 | 11 |
12 | 13 |
14 | eventWithHtml('AfterDisplayProductForm', array($this, $this->item)); ?> -------------------------------------------------------------------------------- /plugins/content/j2store/forms/j2store.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 |
7 | 15 |
16 |
17 |
18 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/tables/eupdate.php: -------------------------------------------------------------------------------- 1 | 12 | 13 | params->get('item_show_ldesc', 1)): ?> 14 |
15 | product->product_long_desc; ?> 16 |
17 | 18 | 19 | -------------------------------------------------------------------------------- /plugins/j2store/app_bootstrap3/app_bootstrap3/tmpl/bootstrap3/view_sdesc.php: -------------------------------------------------------------------------------- 1 | 12 | 13 | params->get('item_show_sdesc', 1)): ?> 14 |
15 | product->product_short_desc; ?> 16 |
17 | 18 | 19 | -------------------------------------------------------------------------------- /plugins/j2store/app_bootstrap4/app_bootstrap4/tmpl/bootstrap4/view_ldesc.php: -------------------------------------------------------------------------------- 1 | 12 | 13 | params->get('item_show_ldesc', 1)): ?> 14 |
15 | product->product_long_desc; ?> 16 |
17 | 18 | 19 | -------------------------------------------------------------------------------- /plugins/j2store/app_bootstrap4/app_bootstrap4/tmpl/bootstrap4/view_sdesc.php: -------------------------------------------------------------------------------- 1 | 12 | 13 | params->get('item_show_sdesc', 1)): ?> 14 |
15 | product->product_short_desc; ?> 16 |
17 | 18 | 19 | -------------------------------------------------------------------------------- /plugins/j2store/app_bootstrap5/app_bootstrap5/tmpl/bootstrap5/view_ldesc.php: -------------------------------------------------------------------------------- 1 | 12 | 13 | params->get('item_show_ldesc', 1)): ?> 14 |
15 | product->product_long_desc; ?> 16 |
17 | 18 | 19 | -------------------------------------------------------------------------------- /plugins/j2store/app_bootstrap5/app_bootstrap5/tmpl/bootstrap5/view_sdesc.php: -------------------------------------------------------------------------------- 1 | 12 | 13 | params->get('item_show_sdesc', 1)): ?> 14 |
15 | product->product_short_desc; ?> 16 |
17 | 18 | 19 | -------------------------------------------------------------------------------- /plugins/j2store/app_bootstrap3/app_bootstrap3/tmpl/tag_bootstrap3/view_ldesc.php: -------------------------------------------------------------------------------- 1 | 12 | 13 | params->get('item_show_ldesc', 1)): ?> 14 |
15 | product->product_long_desc; ?> 16 |
17 | 18 | 19 | -------------------------------------------------------------------------------- /plugins/j2store/app_bootstrap3/app_bootstrap3/tmpl/tag_bootstrap3/view_sdesc.php: -------------------------------------------------------------------------------- 1 | 12 | 13 | params->get('item_show_sdesc', 1)): ?> 14 |
15 | product->product_short_desc; ?> 16 |
17 | 18 | 19 | -------------------------------------------------------------------------------- /plugins/j2store/app_bootstrap4/app_bootstrap4/tmpl/tag_bootstrap4/view_ldesc.php: -------------------------------------------------------------------------------- 1 | 12 | 13 | params->get('item_show_ldesc', 1)): ?> 14 |
15 | product->product_long_desc; ?> 16 |
17 | 18 | 19 | -------------------------------------------------------------------------------- /plugins/j2store/app_bootstrap4/app_bootstrap4/tmpl/tag_bootstrap4/view_sdesc.php: -------------------------------------------------------------------------------- 1 | 12 | 13 | params->get('item_show_sdesc', 1)): ?> 14 |
15 | product->product_short_desc; ?> 16 |
17 | 18 | 19 | -------------------------------------------------------------------------------- /plugins/j2store/app_bootstrap5/app_bootstrap5/tmpl/tag_bootstrap5/view_ldesc.php: -------------------------------------------------------------------------------- 1 | 12 | 13 | params->get('item_show_ldesc', 1)): ?> 14 |
15 | product->product_long_desc; ?> 16 |
17 | 18 | 19 | -------------------------------------------------------------------------------- /plugins/j2store/app_bootstrap5/app_bootstrap5/tmpl/tag_bootstrap5/view_sdesc.php: -------------------------------------------------------------------------------- 1 | 12 | 13 | params->get('item_show_sdesc', 1)): ?> 14 |
15 | product->product_short_desc; ?> 16 |
17 | 18 | 19 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/j2store.php: -------------------------------------------------------------------------------- 1 | 15 |

Incomplete installation detected

16 | dispatch(); 19 | ?> 20 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/views/app/tmpl/view.php: -------------------------------------------------------------------------------- 1 | loadExtra('behavior.modal'); 11 | $row = $this->item;?> 12 | eventWithHtml('GetAppView', array($row)); ?> 13 |

name); ?>

14 | -------------------------------------------------------------------------------- /plugins/j2store/app_diagnostics/app_diagnostics/controller.php: -------------------------------------------------------------------------------- 1 | 11 | 12 | product->variant->sku)) : ?> 13 |
14 | 15 | escape($this->product->variant->sku); ?> 16 |
17 | -------------------------------------------------------------------------------- /plugins/j2store/app_bootstrap3/app_bootstrap3/tmpl/tag_bootstrap3/default_sku.php: -------------------------------------------------------------------------------- 1 | 11 | 12 | product->variant->sku)) : ?> 13 |
14 | 15 | escape($this->product->variant->sku); ?> 16 |
17 | -------------------------------------------------------------------------------- /plugins/j2store/app_bootstrap4/app_bootstrap4/tmpl/bootstrap4/default_sku.php: -------------------------------------------------------------------------------- 1 | 11 | 12 | product->variant->sku)) : ?> 13 |
14 | 15 | escape($this->product->variant->sku); ?> 16 |
17 | -------------------------------------------------------------------------------- /plugins/j2store/app_bootstrap4/app_bootstrap4/tmpl/tag_bootstrap4/default_sku.php: -------------------------------------------------------------------------------- 1 | 11 | 12 | product->variant->sku)) : ?> 13 |
14 | 15 | escape($this->product->variant->sku); ?> 16 |
17 | -------------------------------------------------------------------------------- /plugins/j2store/app_bootstrap5/app_bootstrap5/tmpl/bootstrap5/default_sku.php: -------------------------------------------------------------------------------- 1 | 11 | 12 | product->variant->sku)) : ?> 13 |
14 | 15 | escape($this->product->variant->sku); ?> 16 |
17 | -------------------------------------------------------------------------------- /plugins/j2store/app_bootstrap5/app_bootstrap5/tmpl/tag_bootstrap5/default_sku.php: -------------------------------------------------------------------------------- 1 | 11 | 12 | product->variant->sku)) : ?> 13 |
14 | 15 | escape($this->product->variant->sku); ?> 16 |
17 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/views/apps/tmpl/form.default.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 |
11 | 12 | 13 |
14 | 15 | 16 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/models/behavior/default.php: -------------------------------------------------------------------------------- 1 | importCatalogPlugins(); 14 | $app->triggerEvent('onJ2StoreAfterGetProduct', array(&$record)); 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /fof/model/dispatcher/behavior.php: -------------------------------------------------------------------------------- 1 | 11 | params->get('item_show_product_sku', 1) && !empty($this->product->variant->sku)) : ?> 12 |
13 | : 14 | escape($this->product->variant->sku); ?> 15 |
16 | -------------------------------------------------------------------------------- /plugins/j2store/app_bootstrap4/app_bootstrap4/tmpl/bootstrap4/view_sku.php: -------------------------------------------------------------------------------- 1 | 11 | params->get('item_show_product_sku', 1) && !empty($this->product->variant->sku)) : ?> 12 |
13 | : 14 | escape($this->product->variant->sku); ?> 15 |
16 | -------------------------------------------------------------------------------- /plugins/j2store/app_bootstrap5/app_bootstrap5/tmpl/bootstrap5/view_sku.php: -------------------------------------------------------------------------------- 1 | 11 | params->get('item_show_product_sku', 1) && !empty($this->product->variant->sku)) : ?> 12 |
13 | : 14 | escape($this->product->variant->sku); ?> 15 |
16 | -------------------------------------------------------------------------------- /plugins/j2store/app_bootstrap3/app_bootstrap3/tmpl/tag_bootstrap3/view_sku.php: -------------------------------------------------------------------------------- 1 | 11 | params->get('item_show_product_sku', 1) && !empty($this->product->variant->sku)) : ?> 12 |
13 | : 14 | escape($this->product->variant->sku); ?> 15 |
16 | -------------------------------------------------------------------------------- /plugins/j2store/app_bootstrap4/app_bootstrap4/tmpl/tag_bootstrap4/view_sku.php: -------------------------------------------------------------------------------- 1 | 11 | params->get('item_show_product_sku', 1) && !empty($this->product->variant->sku)) : ?> 12 |
13 | : 14 | escape($this->product->variant->sku); ?> 15 |
16 | -------------------------------------------------------------------------------- /plugins/j2store/app_bootstrap5/app_bootstrap5/tmpl/tag_bootstrap5/view_sku.php: -------------------------------------------------------------------------------- 1 | 11 | params->get('item_show_product_sku', 1) && !empty($this->product->variant->sku)) : ?> 12 |
13 | : 14 | escape($this->product->variant->sku); ?> 15 |
16 | -------------------------------------------------------------------------------- /plugins/j2store/app_bootstrap3/app_bootstrap3/tmpl/backend.php: -------------------------------------------------------------------------------- 1 | 9 |
10 | 11 | 12 | 'task'));?> 13 | 14 |
-------------------------------------------------------------------------------- /plugins/j2store/app_bootstrap4/app_bootstrap4/tmpl/backend.php: -------------------------------------------------------------------------------- 1 | 9 |
10 | 11 | 12 | 'task'));?> 13 | 14 |
-------------------------------------------------------------------------------- /plugins/j2store/app_bootstrap5/app_bootstrap5/tmpl/backend.php: -------------------------------------------------------------------------------- 1 | 9 |
10 | 11 | 12 | 'task'));?> 13 | 14 |
-------------------------------------------------------------------------------- /components/com_j2store/views/product/view.csv.php: -------------------------------------------------------------------------------- 1 | id.'" href="#">'.JText::_($this->element['text']).''; 16 | return $html; 17 | } 18 | 19 | public function getLabel() { 20 | return ''; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /fof/table/dispatcher/behavior.php: -------------------------------------------------------------------------------- 1 | 9 |
11 | 12 | 13 | 'task')); ?> 14 | 15 |
16 | -------------------------------------------------------------------------------- /plugins/j2store/app_bootstrap3/app_bootstrap3/tmpl/bootstrap3/view_title.php: -------------------------------------------------------------------------------- 1 | 12 | 13 | params->get('item_show_title', 1)): ?> 14 | params->get('item_title_headertag', '2'); ?> class="product-title"> 15 | escape($this->product->product_name); ?> 16 | params->get('item_title_headertag', '2'); ?>> 17 | 18 | 19 | -------------------------------------------------------------------------------- /plugins/j2store/app_bootstrap4/app_bootstrap4/tmpl/bootstrap4/view_title.php: -------------------------------------------------------------------------------- 1 | 12 | 13 | params->get('item_show_title', 1)): ?> 14 | params->get('item_title_headertag', '2'); ?> class="product-title"> 15 | escape($this->product->product_name); ?> 16 | params->get('item_title_headertag', '2'); ?>> 17 | 18 | 19 | -------------------------------------------------------------------------------- /plugins/j2store/app_bootstrap5/app_bootstrap5/tmpl/bootstrap5/view_title.php: -------------------------------------------------------------------------------- 1 | 12 | 13 | params->get('item_show_title', 1)): ?> 14 | params->get('item_title_headertag', '2'); ?> class="product-title"> 15 | escape($this->product->product_name); ?> 16 | params->get('item_title_headertag', '2'); ?>> 17 | 18 | 19 | -------------------------------------------------------------------------------- /plugins/j2store/report_itemised/report_itemised/controller.php: -------------------------------------------------------------------------------- 1 | '.$this->getTitle().''; 18 | return $html; 19 | } 20 | 21 | public function getLabel() { 22 | return ''; 23 | } 24 | 25 | } -------------------------------------------------------------------------------- /administrator/components/com_j2store/views/app/view.html.php: -------------------------------------------------------------------------------- 1 | input->getString('task'); 16 | $id = $app->input->getInt('id'); 17 | $model= $this->getModel('Apps'); 18 | $this->item=$model->getItem($id); 19 | parent::display($tpl); 20 | 21 | } 22 | } -------------------------------------------------------------------------------- /modules/admin/j2store_stats/mod_j2store_stats.php: -------------------------------------------------------------------------------- 1 | authorise('j2store.vieworder', 'com_j2store')) { 11 | return ''; 12 | } 13 | JFactory::getLanguage()->load('com_j2store', JPATH_SITE); 14 | require_once (JPATH_ADMINISTRATOR.'/components/com_j2store/helpers/j2store.php'); 15 | $moduleclass_sfx = $params->get('moduleclass_sfx',''); 16 | require( JModuleHelper::getLayoutPath('mod_j2store_stats') ); 17 | $currency = J2Store::currency(); 18 | -------------------------------------------------------------------------------- /plugins/j2store/app_bootstrap3/app_bootstrap3/tmpl/tag_bootstrap3/view_title.php: -------------------------------------------------------------------------------- 1 | 12 | 13 | params->get('item_show_title', 1)): ?> 14 | params->get('item_title_headertag', '2'); ?> class="product-title"> 15 | escape($this->product->product_name); ?> 16 | params->get('item_title_headertag', '2'); ?>> 17 | 18 | 19 | -------------------------------------------------------------------------------- /plugins/j2store/app_bootstrap4/app_bootstrap4/tmpl/tag_bootstrap4/view_title.php: -------------------------------------------------------------------------------- 1 | 12 | 13 | params->get('item_show_title', 1)): ?> 14 | params->get('item_title_headertag', '2'); ?> class="product-title"> 15 | escape($this->product->product_name); ?> 16 | params->get('item_title_headertag', '2'); ?>> 17 | 18 | 19 | -------------------------------------------------------------------------------- /plugins/j2store/app_bootstrap5/app_bootstrap5/tmpl/tag_bootstrap5/view_title.php: -------------------------------------------------------------------------------- 1 | 12 | 13 | params->get('item_show_title', 1)): ?> 14 | params->get('item_title_headertag', '2'); ?> class="product-title"> 15 | escape($this->product->product_name); ?> 16 | params->get('item_title_headertag', '2'); ?>> 17 | 18 | 19 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/views/report/view.html.php: -------------------------------------------------------------------------------- 1 | input->getString('task'); 16 | $id = $app->input->getInt('id'); 17 | $model= $this->getModel('Reports'); 18 | $this->item=$model->getItem($id); 19 | parent::display($tpl); 20 | 21 | } 22 | } -------------------------------------------------------------------------------- /administrator/components/com_j2store/views/reports/view.html.php: -------------------------------------------------------------------------------- 1 | input->getString('task'); 16 | $id = $app->input->getInt('id'); 17 | $model= $this->getModel('Reports'); 18 | $this->item=$model->getItem($id); 19 | parent::display($tpl); 20 | 21 | } 22 | } -------------------------------------------------------------------------------- /plugins/j2store/shipping_free/shipping_free/models/fields/usergroup.php: -------------------------------------------------------------------------------- 1 | name,$this->value,array('multiple' => true)); 19 | } 20 | } 21 | 22 | -------------------------------------------------------------------------------- /plugins/j2store/app_bootstrap3/app_bootstrap3/tmpl/bootstrap3/default_description.php: -------------------------------------------------------------------------------- 1 | 11 | 12 | params->get('list_show_short_desc', 1)): ?> 13 |
product->product_short_desc; ?>
14 | 15 | 16 | params->get('list_show_long_desc', 0)): ?> 17 |
product->product_long_desc; ?>
18 | 19 | -------------------------------------------------------------------------------- /plugins/j2store/app_bootstrap4/app_bootstrap4/tmpl/bootstrap4/default_description.php: -------------------------------------------------------------------------------- 1 | 11 | 12 | params->get('list_show_short_desc', 1)): ?> 13 |
product->product_short_desc; ?>
14 | 15 | 16 | params->get('list_show_long_desc', 0)): ?> 17 |
product->product_long_desc; ?>
18 | 19 | -------------------------------------------------------------------------------- /plugins/j2store/app_bootstrap5/app_bootstrap5/tmpl/bootstrap5/default_description.php: -------------------------------------------------------------------------------- 1 | 11 | 12 | params->get('list_show_short_desc', 1)): ?> 13 |
product->product_short_desc; ?>
14 | 15 | 16 | params->get('list_show_long_desc', 0)): ?> 17 |
product->product_long_desc; ?>
18 | 19 | -------------------------------------------------------------------------------- /plugins/j2store/shipping_standard/shipping_standard/tmpl/rates.php: -------------------------------------------------------------------------------- 1 | rates as $rate){ 12 | $r = new \stdClass(); 13 | $r->value = $rate->shipping_rate_id; 14 | $r->text = $currency->format($rate->shipping_rate_price); 15 | $rates[] = &$r; 16 | } 17 | ?> 18 |
19 | 22 |
-------------------------------------------------------------------------------- /modules/admin/j2store_stats_mini/mod_j2store_stats_mini.php: -------------------------------------------------------------------------------- 1 | authorise('j2store.vieworder', 'com_j2store')) { 11 | return ''; 12 | } 13 | 14 | JFactory::getLanguage()->load('com_j2store', JPATH_SITE); 15 | require_once (JPATH_ADMINISTRATOR.'/components/com_j2store/helpers/j2store.php'); 16 | $moduleclass_sfx = $params->get('moduleclass_sfx',''); 17 | 18 | require( JModuleHelper::getLayoutPath('mod_j2store_stats_mini') ); 19 | $currency = J2Store::currency(); -------------------------------------------------------------------------------- /plugins/j2store/app_bootstrap3/app_bootstrap3/tmpl/tag_bootstrap3/default_description.php: -------------------------------------------------------------------------------- 1 | 11 | 12 | params->get('list_show_short_desc', 1)): ?> 13 |
product->product_short_desc; ?>
14 | 15 | 16 | params->get('list_show_long_desc', 0)): ?> 17 |
product->product_long_desc; ?>
18 | 19 | -------------------------------------------------------------------------------- /plugins/j2store/app_bootstrap4/app_bootstrap4/tmpl/tag_bootstrap4/default_description.php: -------------------------------------------------------------------------------- 1 | 11 | 12 | params->get('list_show_short_desc', 1)): ?> 13 |
product->product_short_desc; ?>
14 | 15 | 16 | params->get('list_show_long_desc', 0)): ?> 17 |
product->product_long_desc; ?>
18 | 19 | -------------------------------------------------------------------------------- /plugins/j2store/app_bootstrap5/app_bootstrap5/tmpl/tag_bootstrap5/default_description.php: -------------------------------------------------------------------------------- 1 | 11 | 12 | params->get('list_show_short_desc', 1)): ?> 13 |
product->product_short_desc; ?>
14 | 15 | 16 | params->get('list_show_long_desc', 0)): ?> 17 |
product->product_long_desc; ?>
18 | 19 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/views/shippings/view.html.php: -------------------------------------------------------------------------------- 1 | input->getString('task'); 16 | $id = $app->input->getInt('id'); 17 | $model= $this->getModel('Shippings'); 18 | 19 | $this->item=$model->getItem($id); 20 | parent::display($tpl); 21 | 22 | 23 | } 24 | } -------------------------------------------------------------------------------- /fof/include.php: -------------------------------------------------------------------------------- 1 | logAddLogger('fof.log.php'); 25 | } 26 | } -------------------------------------------------------------------------------- /fof/database/iterator/oracle.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 19 |
20 |
21 |
-------------------------------------------------------------------------------- /fof/database/query/pdo.php: -------------------------------------------------------------------------------- 1 | '.$this->getTitle().''; 18 | return $html; 19 | } 20 | 21 | public function getLabel() { 22 | return ''; 23 | } 24 | 25 | } -------------------------------------------------------------------------------- /plugins/user/j2userregister/fields/j2storecustom.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 |
7 | 15 |
16 |
17 |
18 | -------------------------------------------------------------------------------- /modules/admin/j2store_menu/helper.php: -------------------------------------------------------------------------------- 1 | getItem($data['country_id']); 15 | $data['country_name'] = $country->country_name; 16 | $zone = F0FModel::getTmpInstance('zones','J2StoreModel')->getItem($data['zone_id']); 17 | $data['zone_name'] = $zone->zone_name; 18 | return true; 19 | } 20 | 21 | 22 | } 23 | 24 | -------------------------------------------------------------------------------- /fof/form/header/filtersql.php: -------------------------------------------------------------------------------- 1 | 10 | shipping->ordershipping_type) && !empty($this->shipping->ordershipping_name)): ?> 11 | 12 | 13 | 14 | 15 | 16 | 17 |
:shipping->ordershipping_name); ?>
18 | 19 | eventWithHtml('AdminOrderAfterShippingInformation', array($this)); ?> 20 | -------------------------------------------------------------------------------- /fof/hal/render/interface.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | Diagnostics Tool 4 | 1.0 5 | February 2015 6 | Gokila Priya 7 | supports@j2store.org 8 | http://www.j2store.org 9 | 2015 Weblogicx India 10 | GNU General Public License v2 11 | J2STORE_DIAGNOSTICS_HELP_TEXT 12 | 13 | app_diagnostics.php 14 | app_diagnostics 15 | index.html 16 | 17 | 18 | -------------------------------------------------------------------------------- /plugins/j2store/payment_banktransfer/payment_banktransfer/tmpl/message.php: -------------------------------------------------------------------------------- 1 | 13 | 14 | message; ?> 15 | -------------------------------------------------------------------------------- /plugins/j2store/payment_moneyorder/payment_moneyorder/tmpl/message.php: -------------------------------------------------------------------------------- 1 | 14 | 15 | message; ?> 16 | -------------------------------------------------------------------------------- /components/com_j2store/j2store.php: -------------------------------------------------------------------------------- 1 | 17 |

Incomplete installation detected

18 | dispatch(); 26 | ?> 27 | -------------------------------------------------------------------------------- /media/j2store/js/bootstrap-advanced-ui.js: -------------------------------------------------------------------------------- 1 | jQuery(document).ready(function($) { 2 | jQuery('.radio.btn-group label').addClass('btn') 3 | jQuery(".btn-group label:not(.active)").click(function(){ 4 | var label = jQuery(this); 5 | var input = jQuery('#' + label.attr('for')); 6 | 7 | if (!input.prop('checked')){ 8 | label.closest('.btn-group').find("label").removeClass('active btn-primary'); 9 | label.addClass('active btn-primary'); 10 | input.prop('checked', true); 11 | } 12 | }); 13 | jQuery(".btn-group input[checked=checked]").each(function(){ 14 | jQuery("label[for=" + jQuery(this).attr('id') + "]").addClass('active btn-primary'); 15 | 16 | }); 17 | }); 18 | -------------------------------------------------------------------------------- /plugins/j2store/payment_banktransfer/payment_banktransfer/tmpl/form.php: -------------------------------------------------------------------------------- 1 | 12 | 13 | onselection_text); ?> -------------------------------------------------------------------------------- /fof/form/header/filterselectable.php: -------------------------------------------------------------------------------- 1 | 14 | 15 | onselection_text); ?> -------------------------------------------------------------------------------- /administrator/components/com_j2store/views/shippings/tmpl/view.php: -------------------------------------------------------------------------------- 1 | loadExtra('behavior.modal'); 11 | ?> 12 | item;?> 13 | 14 |

name); ?>

15 | triggerEvent( 'onJ2StoreGetShippingView',array( $row )); 21 | 22 | for ($i=0; $iinput->getCmd('view', 'checkout'); 20 | 21 | $this->params = J2Store::config(); 22 | $this->currency = J2Store::currency(); 23 | $this->storeProfile = J2Store::storeProfile(); 24 | $this->user = $user; 25 | 26 | return true; 27 | } 28 | 29 | } 30 | 31 | -------------------------------------------------------------------------------- /fof/database/query/pdomysql.php: -------------------------------------------------------------------------------- 1 | 11 | 12 | 13 | params->get('list_show_title', 1)): ?> 14 |

15 | params->get('list_link_title', 1)): ?> 16 | 18 | 19 | 20 | product->product_name; ?> 21 | params->get('list_link_title', 1)): ?> 22 | 23 | 24 |

25 | 26 | -------------------------------------------------------------------------------- /plugins/j2store/payment_banktransfer/payment_banktransfer/tmpl/view.php: -------------------------------------------------------------------------------- 1 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /plugins/j2store/payment_moneyorder/payment_moneyorder/tmpl/view.php: -------------------------------------------------------------------------------- 1 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /plugins/j2store/payment_paypal/payment_paypal/tmpl/message.php: -------------------------------------------------------------------------------- 1 | 16 | 17 | message; ?> 18 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/tables/orderitemattribute.php: -------------------------------------------------------------------------------- 1 | 16 | 17 | message; ?> 18 | -------------------------------------------------------------------------------- /plugins/j2store/payment_sagepayform/payment_sagepayform/tmpl/message.php: -------------------------------------------------------------------------------- 1 | 16 | 17 | message; ?> 18 | -------------------------------------------------------------------------------- /plugins/j2store/payment_moneyorder/payment_moneyorder/tmpl/postpayment.php: -------------------------------------------------------------------------------- 1 | 13 | 14 |
onafterpayment_text); ?>
15 | -------------------------------------------------------------------------------- /plugins/j2store/payment_sagepayform/payment_sagepayform/tmpl/postpayment.php: -------------------------------------------------------------------------------- 1 | 16 | 17 | message; ?> 18 | -------------------------------------------------------------------------------- /plugins/j2store/app_bootstrap3/app_bootstrap3.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Product View - Bootstrap 3 4 | 1.0.0 5 | DEC 2021 6 | Alagesan 7 | supports@j2store.org 8 | https://www.j2store.org 9 | 2021 J2Store 10 | GNU General Public License v3 or later 11 | Product view for Bootstrap 3 12 | 13 | app_bootstrap3.php 14 | app_bootstrap3 15 | index.html 16 | 17 | 18 | -------------------------------------------------------------------------------- /plugins/j2store/app_bootstrap4/app_bootstrap4.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Product view - Bootstrap 4 4 | 1.0.0 5 | DEC 2021 6 | Alagesan 7 | supports@j2store.org 8 | https://www.j2store.org 9 | 2021 J2Store 10 | GNU General Public License v3 or later 11 | Product view for Bootstrap 4 12 | 13 | app_bootstrap4.php 14 | app_bootstrap4 15 | index.html 16 | 17 | 18 | -------------------------------------------------------------------------------- /plugins/j2store/app_bootstrap5/app_bootstrap5.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Product view - Bootstrap 5 4 | 1.0.0 5 | DEC 2021 6 | Alagesan 7 | supports@j2store.org 8 | https://www.j2store.org 9 | 2021 J2Store 10 | GNU General Public License v3 or later 11 | Product view for Bootstrap 5 12 | 13 | app_bootstrap5.php 14 | app_bootstrap5 15 | index.html 16 | 17 | 18 | -------------------------------------------------------------------------------- /plugins/j2store/app_localization_data/app_localization_data.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Localization Data for J2Store 4 | 1.0 5 | Jan 2015 6 | Gokila Priya 7 | supports@j2store.org 8 | http://www.j2store.org 9 | 2014-19 WeblogicxIndia 10 | GNU General Public License v2 11 | J2STORE_APP_LOCALIZATION_DATA_HELP_TEXT 12 | 13 | app_localization_data.php 14 | app_localization_data 15 | index.html 16 | 17 | 18 | -------------------------------------------------------------------------------- /plugins/j2store/payment_banktransfer/payment_banktransfer/tmpl/postpayment.php: -------------------------------------------------------------------------------- 1 | 13 | 14 |
onafterpayment_text); ?>
15 | -------------------------------------------------------------------------------- /plugins/j2store/payment_paypal/payment_paypal/tmpl/form.php: -------------------------------------------------------------------------------- 1 | 16 | 17 |

onselection_text); ?>

18 | -------------------------------------------------------------------------------- /plugins/j2store/shipping_standard/shipping_standard.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Standard Shipping methods 4 | 1.0 5 | December 2014 6 | J2Store 7 | support@j2store.org 8 | https://www.j2store.org 9 | 2010 Weblogicx India Private Limited 10 | GNU General Public License v2 11 | J2STORE_PLUGINDESC 12 | 13 | shipping_standard.php 14 | index.html 15 | shipping_standard 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /components/com_j2store/views/product/tmpl/item.php: -------------------------------------------------------------------------------- 1 | 11 |
12 | sublayout) && !empty($this->sublayout)): ?> 13 | loadTemplate($this->sublayout); ?> 14 | 15 | loadTemplate($this->product->product_type); ?> 16 | 17 | eventWithHtml ( 'AfterProductDisplay', array($this->product,$this) )?> 18 |
-------------------------------------------------------------------------------- /plugins/j2store/payment_paypal/payment_paypal/tmpl/view.php: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /components/com_j2store/views/product/tmpl/adminitem.php: -------------------------------------------------------------------------------- 1 | 11 |
12 | sublayout) && !empty($this->sublayout)): ?> 13 | loadTemplate($this->sublayout); ?> 14 | 15 | loadTemplate($this->product->product_type); ?> 16 | 17 | eventWithHtml ( 'AfterProductDisplay', array($this->product,$this) )?> 18 |
-------------------------------------------------------------------------------- /plugins/j2store/payment_sagepayform/payment_sagepayform/tmpl/form.php: -------------------------------------------------------------------------------- 1 | 16 | 17 |

onselection_text); ?>

18 | -------------------------------------------------------------------------------- /plugins/j2store/payment_sagepayform/payment_sagepayform/tmpl/view.php: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /fof/database/query/mysql.php: -------------------------------------------------------------------------------- 1 | enableJ2StorePlugin(); 18 | } 19 | $this->assign('systemPlugin', $systemPlugin); 20 | $this->assign('cachePlugin', JPluginHelper::isEnabled('system', 'cache')); 21 | 22 | 23 | $this->assign('params', J2Store::config()); 24 | 25 | return true; 26 | } 27 | } -------------------------------------------------------------------------------- /administrator/components/com_j2store/views/postconfig/tmpl/default_integrity.php: -------------------------------------------------------------------------------- 1 | 10 |
11 | 16 | 17 | 22 | 23 |
24 | 25 |
26 |
-------------------------------------------------------------------------------- /fof/model/field/boolean.php: -------------------------------------------------------------------------------- 1 | '; 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/version.php: -------------------------------------------------------------------------------- 1 | 11 | 12 |
13 |
14 | 'control-label')); ?> 15 | form_prefix.'[sku]', $this->item->sku,array('class'=>'input-small ')); ?> 16 |
17 | 18 |
19 | 'control-label')); ?> 20 | form_prefix.'[upc]', $this->item->upc,array('class'=>'input-small ')); ?> 21 |
22 | 23 |
-------------------------------------------------------------------------------- /administrator/components/com_j2store/tables/country.php: -------------------------------------------------------------------------------- 1 | country_name) 17 | { 18 | $this->setError(JText::_('COM_J2STORE_COUNTRY_MISSING')); 19 | $result = false; 20 | } 21 | if(!$this->country_isocode_2) 22 | { 23 | $this->setError(JText::_('COM_J2STORE_COUNTRY_ISOCODE2_MISSING')); 24 | $result = false; 25 | } 26 | if(!$this->country_isocode_3) 27 | { 28 | $this->setError(JText::_('COM_J2STORE_COUNTRY_ISOCODE3_MISSING')); 29 | $result = false; 30 | } 31 | 32 | return parent::check() && $result; 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/models/behavior/autoload.php: -------------------------------------------------------------------------------- 1 | 12 |
13 |
14 | params->get('item_show_sdesc') || $this->params->get('item_show_ldesc') ):?> 15 |
16 | loadTemplate('sdesc'); ?> 17 | loadTemplate('ldesc'); ?> 18 |
19 | 20 | 21 | params->get('item_show_product_specification')):?> 22 |
23 | loadTemplate('specs'); ?> 24 |
25 | 26 |
27 |
-------------------------------------------------------------------------------- /plugins/j2store/app_bootstrap4/app_bootstrap4/tmpl/bootstrap4/default_title.php: -------------------------------------------------------------------------------- 1 | 11 | 12 | 13 | params->get('list_show_title', 1)): ?> 14 |

15 | params->get('list_link_title', 1)): ?> 16 | 18 | 19 | 20 | product->product_name; ?> 21 | params->get('list_link_title', 1)): ?> 22 | 23 | 24 |

25 | 26 | -------------------------------------------------------------------------------- /plugins/j2store/app_bootstrap4/app_bootstrap4/tmpl/bootstrap4/view_notabs.php: -------------------------------------------------------------------------------- 1 | 12 |
13 |
14 | params->get('item_show_sdesc') || $this->params->get('item_show_ldesc') ):?> 15 |
16 | loadTemplate('sdesc'); ?> 17 | loadTemplate('ldesc'); ?> 18 |
19 | 20 | 21 | params->get('item_show_product_specification')):?> 22 |
23 | loadTemplate('specs'); ?> 24 |
25 | 26 |
27 |
-------------------------------------------------------------------------------- /plugins/j2store/app_bootstrap5/app_bootstrap5/tmpl/bootstrap5/default_title.php: -------------------------------------------------------------------------------- 1 | 11 | 12 | 13 | params->get('list_show_title', 1)): ?> 14 |

15 | params->get('list_link_title', 1)): ?> 16 | 18 | 19 | 20 | product->product_name; ?> 21 | params->get('list_link_title', 1)): ?> 22 | 23 | 24 |

25 | 26 | -------------------------------------------------------------------------------- /plugins/j2store/app_bootstrap5/app_bootstrap5/tmpl/bootstrap5/view_notabs.php: -------------------------------------------------------------------------------- 1 | 12 |
13 |
14 | params->get('item_show_sdesc') || $this->params->get('item_show_ldesc') ):?> 15 |
16 | loadTemplate('sdesc'); ?> 17 | loadTemplate('ldesc'); ?> 18 |
19 | 20 | 21 | params->get('item_show_product_specification')):?> 22 |
23 | loadTemplate('specs'); ?> 24 |
25 | 26 |
27 |
-------------------------------------------------------------------------------- /modules/admin/j2store_orders/mod_j2store_orders.php: -------------------------------------------------------------------------------- 1 | authorise('j2store.vieworder', 'com_j2store')) { 11 | return ''; 12 | } 13 | JFactory::getLanguage()->load('com_j2store', JPATH_SITE); 14 | require_once (JPATH_ADMINISTRATOR.'/components/com_j2store/helpers/j2store.php'); 15 | $moduleclass_sfx = $params->get('moduleclass_sfx',''); 16 | $params = J2Store::config(); 17 | $order_model = F0FModel::getTmpInstance('Orders','J2StoreModel'); 18 | $orders = $order_model->clearState()->order_type('normal')->limit(5)->limitstart(0)->filter_order('created_on')->filter_order_Dir('DESC')->getList(); 19 | require( JModuleHelper::getLayoutPath('mod_j2store_orders') ); -------------------------------------------------------------------------------- /plugins/j2store/app_bootstrap3/app_bootstrap3/tmpl/tag_bootstrap3/view_notabs.php: -------------------------------------------------------------------------------- 1 | 12 |
13 |
14 | params->get('item_show_sdesc') || $this->params->get('item_show_ldesc') ):?> 15 |
16 | loadTemplate('sdesc'); ?> 17 | loadTemplate('ldesc'); ?> 18 |
19 | 20 | 21 | params->get('item_show_product_specification')):?> 22 |
23 | loadTemplate('specs'); ?> 24 |
25 | 26 |
27 |
-------------------------------------------------------------------------------- /plugins/j2store/app_bootstrap4/app_bootstrap4/tmpl/tag_bootstrap4/view_notabs.php: -------------------------------------------------------------------------------- 1 | 12 |
13 |
14 | params->get('item_show_sdesc') || $this->params->get('item_show_ldesc') ):?> 15 |
16 | loadTemplate('sdesc'); ?> 17 | loadTemplate('ldesc'); ?> 18 |
19 | 20 | 21 | params->get('item_show_product_specification')):?> 22 |
23 | loadTemplate('specs'); ?> 24 |
25 | 26 |
27 |
-------------------------------------------------------------------------------- /plugins/j2store/app_bootstrap5/app_bootstrap5/tmpl/tag_bootstrap5/view_notabs.php: -------------------------------------------------------------------------------- 1 | 12 |
13 |
14 | params->get('item_show_sdesc') || $this->params->get('item_show_ldesc') ):?> 15 |
16 | loadTemplate('sdesc'); ?> 17 | loadTemplate('ldesc'); ?> 18 |
19 | 20 | 21 | params->get('item_show_product_specification')):?> 22 |
23 | loadTemplate('specs'); ?> 24 |
25 | 26 |
27 |
-------------------------------------------------------------------------------- /plugins/j2store/shipping_standard/shipping_standard/tables/shippingmethod.php: -------------------------------------------------------------------------------- 1 | shipping_method_name)) { 20 | throw new Exception(JText::_('J2STORE_SHIPPING_METHOD_NAME_REQUIRED')); 21 | return false; 22 | } 23 | if ((float) $this->subtotal_maximum == (float) '0.00000') 24 | { 25 | $this->subtotal_maximum = '-1'; 26 | } 27 | return true; 28 | } 29 | 30 | } 31 | -------------------------------------------------------------------------------- /plugins/j2store/report_itemised/report_itemised/tables/reportitemised.php: -------------------------------------------------------------------------------- 1 | 11 | 12 | 13 | params->get('list_show_title', 1)): ?> 14 |

15 | params->get('list_link_title', 1)): ?> 16 | 18 | 19 | 20 | escape($this->product->product_name); ?> 21 | params->get('list_link_title', 1)): ?> 22 | 23 | 24 |

25 | 26 | -------------------------------------------------------------------------------- /plugins/j2store/app_bootstrap4/app_bootstrap4/tmpl/tag_bootstrap4/default_title.php: -------------------------------------------------------------------------------- 1 | 11 | 12 | 13 | params->get('list_show_title', 1)): ?> 14 |

15 | params->get('list_link_title', 1)): ?> 16 | 18 | 19 | 20 | escape($this->product->product_name); ?> 21 | params->get('list_link_title', 1)): ?> 22 | 23 | 24 |

25 | 26 | -------------------------------------------------------------------------------- /plugins/j2store/app_bootstrap5/app_bootstrap5/tmpl/tag_bootstrap5/default_title.php: -------------------------------------------------------------------------------- 1 | 11 | 12 | 13 | params->get('list_show_title', 1)): ?> 14 |

15 | params->get('list_link_title', 1)): ?> 16 | 18 | 19 | 20 | escape($this->product->product_name); ?> 21 | params->get('list_link_title', 1)): ?> 22 | 23 | 24 |

25 | 26 | -------------------------------------------------------------------------------- /plugins/j2store/app_flexivariable/app_flexivariable/models/appflexivariables.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright Copyright (c) 2018 J2Store . All rights reserved. 10 | * @license GNU/GPL V3 or later 11 | * @link http://j2store.org 12 | * -------------------------------------------------------------------------------- 13 | * 14 | * */ 15 | defined('_JEXEC') or die('Restricted access'); 16 | require_once(JPATH_ADMINISTRATOR . '/components/com_j2store/library/appmodel.php'); 17 | 18 | class J2StoreModelAppFlexiVariables extends J2StoreAppModel 19 | { 20 | var $_element = 'app_flexivariable'; 21 | } -------------------------------------------------------------------------------- /administrator/components/com_j2store/models/behavior/stock.php: -------------------------------------------------------------------------------- 1 | select($db->qn('#__j2store_productquantities').'.quantity') 17 | ->select($db->qn('#__j2store_productquantities').'.j2store_productquantity_id') 18 | ->innerJoin('#__j2store_productquantities AS #__j2store_productquantities ON #__j2store_productquantities.variant_id = #__j2store_variants.j2store_variant_id'); 19 | //echo $query; 20 | } 21 | 22 | public function onAfterGetItem(&$model, &$record) { 23 | 24 | //var_dump($record); 25 | 26 | } 27 | 28 | 29 | } -------------------------------------------------------------------------------- /fof/database/driver/sqlazure.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright Copyright (c) 2017 J2Store . All rights reserved. 10 | * @license GNU/GPL v3 or latest 11 | * @link http://j2store.org 12 | * -------------------------------------------------------------------------------- 13 | * 14 | * */ 15 | defined('_JEXEC') or die('Restricted access'); 16 | require_once(JPATH_ADMINISTRATOR.'/components/com_j2store/library/appcontroller.php'); 17 | class J2StoreControllerAppCurrencyUpdater extends J2StoreAppController 18 | { 19 | var $_element = 'app_currencyupdater'; 20 | } -------------------------------------------------------------------------------- /plugins/j2store/report_products/report_products.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | J2STORE_REPORT_PRODUCTS 4 | 1.2 5 | AUG 2016 6 | Alagesan 7 | supports@j2store.org 8 | http://www.j2store.org 9 | 2016 Weblogicx India Limited 10 | GNU General Public License v2 or later 11 | J2STORE_REPORT_PRODUCTS_DESC 12 | 13 | report_products.php 14 | index.html 15 | report_products 16 | 17 | 18 | en-GB.plg_j2store_report_products.ini 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /administrator/components/com_j2store/helpers/toolbar.php: -------------------------------------------------------------------------------- 1 | loadExtra('behavior.modal'); 11 | $app = $platform->application(); 12 | ?> 13 | item; ?> 14 | 15 | 16 | load('plg_j2store_' . $row->element, JPATH_ADMINISTRATOR, null, true); 18 | ?> 19 | 20 |

element)); ?>

21 | triggerEvent('onJ2StoreGetReportView', array($row)); 26 | $html = ''; 27 | foreach ($results as $result) { 28 | $html .= $result; 29 | } 30 | echo $html; 31 | ?> -------------------------------------------------------------------------------- /plugins/j2store/app_currencyupdater/app_currencyupdater/models/appcurrencyupdaters.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright Copyright (c) 2017 J2Store . All rights reserved. 10 | * @license GNU/GPL v3 or latest 11 | * @link http://j2store.org 12 | * -------------------------------------------------------------------------------- 13 | * 14 | * */ 15 | defined ( '_JEXEC' ) or die ( 'Restricted access' ); 16 | require_once (JPATH_ADMINISTRATOR . '/components/com_j2store/library/appmodel.php'); 17 | class J2StoreModelAppCurrencyUpdaters extends J2StoreAppModel { 18 | 19 | public $_element = 'app_currencyupdater'; 20 | } -------------------------------------------------------------------------------- /modules/admin/j2store_menu/mod_j2store_menu.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | J2Store Administrator Menu 4 | June 2015 5 | Gokila Priya 6 | Copyright (c) 2011 - 2016 Weblogicx India Private Ltd. All rights reserved. 7 | support@j2store.org 8 | http://j2store.org 9 | http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL 10 | 1.0 11 | MOD_J2STORE_MENU_XML_DESCRIPTION 12 | 13 | mod_j2store_menu.php 14 | index.html 15 | helper.php 16 | tmpl 17 | css 18 | 19 | 20 | 21 | --------------------------------------------------------------------------------