├── admin ├── .htpasswd_oscommerce ├── includes │ ├── stylesheet.css │ ├── javascript │ │ ├── calendarcode.js │ │ └── spiffyCal │ │ │ ├── images │ │ │ ├── s.gif │ │ │ ├── btn_info.gif │ │ │ ├── spiffycal.cur │ │ │ ├── spiffycal2.cur │ │ │ ├── spiffycal3.cur │ │ │ ├── btn_date1_up.gif │ │ │ ├── btn_date2_up.gif │ │ │ ├── btn_date_up.gif │ │ │ ├── btn_close_small.gif │ │ │ ├── btn_date1_down.gif │ │ │ ├── btn_date1_over.gif │ │ │ ├── btn_date2_down.gif │ │ │ ├── btn_date2_over.gif │ │ │ ├── btn_date_down.gif │ │ │ ├── btn_date_over.gif │ │ │ ├── btn_del_small.gif │ │ │ ├── btn_date_disabled.gif │ │ │ ├── btn_date1_disabled.gif │ │ │ └── btn_date2_disabled.gif │ │ │ └── spiffyCal_v2_1.js │ ├── header.php │ ├── languages │ │ └── english │ │ │ ├── index.php │ │ │ ├── modules │ │ │ ├── boxes │ │ │ │ ├── taxes_zones.php │ │ │ │ ├── layout_pi.php │ │ │ │ ├── modules_hooks.php │ │ │ │ ├── orders_orders.php │ │ │ │ ├── taxes_geo_zones.php │ │ │ │ ├── tools_mail.php │ │ │ │ ├── catalog_reviews.php │ │ │ │ ├── modules_actions.php │ │ │ │ ├── taxes_tax_rates.php │ │ │ │ ├── catalog_specials.php │ │ │ │ ├── taxes_countries.php │ │ │ │ ├── tools_backup.php │ │ │ │ ├── customers_customers.php │ │ │ │ ├── taxes_tax_classes.php │ │ │ │ ├── tools_define_pages.php │ │ │ │ ├── tools_server_info.php │ │ │ │ ├── tools_whos_online.php │ │ │ │ ├── catalog_categories.php │ │ │ │ ├── catalog_testimonials.php │ │ │ │ ├── localization_languages.php │ │ │ │ ├── modules_content.php │ │ │ │ ├── tools_version_check.php │ │ │ │ ├── catalog_manufacturers.php │ │ │ │ ├── configuration_store_logo.php │ │ │ │ ├── localization_currencies.php │ │ │ │ ├── tools_action_recorder.php │ │ │ │ ├── tools_define_language.php │ │ │ │ ├── tools_advert_manager.php │ │ │ │ ├── tools_newsletters.php │ │ │ │ ├── catalog_products_expected.php │ │ │ │ ├── localization_customer_data_groups.php │ │ │ │ ├── localization_orders_status.php │ │ │ │ ├── reports_stats_customers.php │ │ │ │ ├── reports_stats_products_viewed.php │ │ │ │ ├── catalog_products_attributes.php │ │ │ │ ├── configuration_administrators.php │ │ │ │ ├── tools_security_checks.php │ │ │ │ ├── reports_stats_products_purchased.php │ │ │ │ ├── tools_database_tables.php │ │ │ │ ├── tools_sec_dir_permissions.php │ │ │ │ ├── tools.php │ │ │ │ ├── orders.php │ │ │ │ ├── catalog.php │ │ │ │ ├── modules.php │ │ │ │ ├── reports.php │ │ │ │ ├── customers.php │ │ │ │ ├── layout.php │ │ │ │ ├── configuration.php │ │ │ │ ├── localization.php │ │ │ │ └── taxes.php │ │ │ ├── cfg_modules │ │ │ │ ├── cfgm_navbar_modules.php │ │ │ │ ├── cfgm_boxes.php │ │ │ │ ├── cfgm_customer_data.php │ │ │ │ ├── cfgm_notifications.php │ │ │ │ ├── cfgm_currencies.php │ │ │ │ ├── cfgm_payment.php │ │ │ │ ├── cfgm_shipping.php │ │ │ │ ├── cfgm_dashboard.php │ │ │ │ ├── cfgm_header_tags.php │ │ │ │ ├── cfgm_order_total.php │ │ │ │ └── cfgm_action_recorder.php │ │ │ ├── newsletters │ │ │ │ └── newsletter.php │ │ │ ├── dashboard │ │ │ │ ├── d_paypal_app.php │ │ │ │ └── d_customers.php │ │ │ └── security_check │ │ │ │ ├── file_uploads.php │ │ │ │ ├── session_auto_start.php │ │ │ │ ├── download_directory.php │ │ │ │ ├── install_directory.php │ │ │ │ ├── default_language.php │ │ │ │ ├── default_currency.php │ │ │ │ ├── github_directory.php │ │ │ │ ├── extended_last_run.php │ │ │ │ └── config_file_catalog.php │ │ │ ├── stats_products_viewed.php │ │ │ ├── stats_products_purchased.php │ │ │ └── security_checks.php │ ├── local │ │ └── README │ ├── boxes │ │ ├── layout.php │ │ ├── tools.php │ │ ├── catalog.php │ │ ├── orders.php │ │ ├── reports.php │ │ ├── customers.php │ │ ├── localization.php │ │ ├── taxes.php │ │ └── paypal.php │ └── application_bottom.php └── images │ ├── CE-Phoenix.png │ ├── oscommerce.png │ ├── cal_date_up.gif │ ├── icon_phoenix.png │ ├── icon_twitter.png │ ├── cal_close_small.gif │ ├── cal_date_down.gif │ ├── cal_date_over.gif │ ├── cal_del_small.gif │ ├── icon_oscommerce.png │ ├── CE-Phoenix-30-30.png │ └── .htaccess ├── includes ├── version.php ├── apps │ ├── paypal │ │ ├── version.txt │ │ ├── req_api_countries.txt │ │ ├── languages │ │ │ └── english │ │ │ │ ├── modules │ │ │ │ ├── DP │ │ │ │ │ └── cfg_params │ │ │ │ │ │ ├── cards.php │ │ │ │ │ │ ├── sort_order.php │ │ │ │ │ │ ├── zone.php │ │ │ │ │ │ ├── order_status_id.php │ │ │ │ │ │ ├── status.php │ │ │ │ │ │ └── transaction_method.php │ │ │ │ ├── LOGIN │ │ │ │ │ └── cfg_params │ │ │ │ │ │ ├── sort_order.php │ │ │ │ │ │ ├── live_secret.php │ │ │ │ │ │ ├── sandbox_secret.php │ │ │ │ │ │ ├── live_client_id.php │ │ │ │ │ │ ├── sandbox_client_id.php │ │ │ │ │ │ ├── theme.php │ │ │ │ │ │ ├── content_width.php │ │ │ │ │ │ └── status.php │ │ │ │ ├── PS │ │ │ │ │ └── cfg_params │ │ │ │ │ │ ├── ewp_openssl.php │ │ │ │ │ │ ├── ewp_working_directory.php │ │ │ │ │ │ ├── page_style.php │ │ │ │ │ │ ├── ewp_private_key.php │ │ │ │ │ │ ├── sort_order.php │ │ │ │ │ │ ├── ewp_paypal_cert.php │ │ │ │ │ │ ├── ewp_public_cert.php │ │ │ │ │ │ ├── zone.php │ │ │ │ │ │ ├── ewp_public_cert_id.php │ │ │ │ │ │ ├── order_status_id.php │ │ │ │ │ │ ├── status.php │ │ │ │ │ │ ├── pdt_identity_token.php │ │ │ │ │ │ ├── ewp_status.php │ │ │ │ │ │ ├── transaction_method.php │ │ │ │ │ │ └── prepare_order_status_id.php │ │ │ │ ├── EC │ │ │ │ │ └── cfg_params │ │ │ │ │ │ ├── page_style.php │ │ │ │ │ │ ├── sort_order.php │ │ │ │ │ │ ├── zone.php │ │ │ │ │ │ ├── order_status_id.php │ │ │ │ │ │ ├── status.php │ │ │ │ │ │ ├── incontext_button_shape.php │ │ │ │ │ │ ├── checkout_image.php │ │ │ │ │ │ ├── transaction_method.php │ │ │ │ │ │ ├── account_optional.php │ │ │ │ │ │ ├── incontext_button_size.php │ │ │ │ │ │ ├── incontext_button_color.php │ │ │ │ │ │ ├── instant_update.php │ │ │ │ │ │ └── checkout_flow.php │ │ │ │ └── HS │ │ │ │ │ └── cfg_params │ │ │ │ │ ├── sort_order.php │ │ │ │ │ ├── zone.php │ │ │ │ │ ├── order_status_id.php │ │ │ │ │ ├── status.php │ │ │ │ │ ├── transaction_method.php │ │ │ │ │ └── prepare_order_status_id.php │ │ │ │ ├── cfg_params │ │ │ │ ├── proxy.php │ │ │ │ ├── gateway.php │ │ │ │ ├── transactions_order_status_id.php │ │ │ │ ├── verify_ssl.php │ │ │ │ └── log_transactions.php │ │ │ │ └── admin │ │ │ │ ├── balance.php │ │ │ │ ├── info.php │ │ │ │ └── log.php │ │ ├── admin │ │ │ ├── actions │ │ │ │ ├── log.php │ │ │ │ ├── info.php │ │ │ │ ├── start.php │ │ │ │ ├── balance.php │ │ │ │ ├── privacy.php │ │ │ │ ├── update.php │ │ │ │ ├── log │ │ │ │ │ └── deleteAll.php │ │ │ │ └── configure │ │ │ │ │ ├── install.php │ │ │ │ │ └── uninstall.php │ │ │ └── content │ │ │ │ └── privacy.php │ │ └── work │ │ │ └── paypal.pubkey │ └── braintree_cc │ │ └── Braintree │ │ ├── Descriptor.php │ │ ├── Exception │ │ ├── InvalidSignature.php │ │ ├── UpgradeRequired.php │ │ └── NotFound.php │ │ ├── MerchantAccount │ │ ├── AddressDetails.php │ │ └── FundingDetails.php │ │ ├── EqualityNode.php │ │ ├── TextNode.php │ │ ├── PartialMatchNode.php │ │ ├── KeyValueNode.php │ │ ├── IsNode.php │ │ ├── Exception.php │ │ └── SignatureService.php ├── languages │ └── english │ │ ├── images │ │ └── icon.gif │ │ ├── info.php │ │ ├── product_info.php │ │ ├── download.php │ │ ├── login.php │ │ ├── shopping_cart.php │ │ ├── create_account_success.php │ │ ├── gdpr.php │ │ ├── testimonials.php │ │ ├── modules │ │ ├── order_total │ │ │ ├── ot_tax.php │ │ │ ├── ot_total.php │ │ │ ├── ot_subtotal.php │ │ │ └── ot_loworderfee.php │ │ ├── payment │ │ │ ├── paypal_express.php │ │ │ ├── paypal_pro_dp.php │ │ │ ├── paypal_pro_hs.php │ │ │ ├── paypal_standard.php │ │ │ ├── cod.php │ │ │ └── nochex.php │ │ ├── content │ │ │ ├── info │ │ │ │ ├── cm_info_text.php │ │ │ │ └── cm_info_title.php │ │ │ ├── login │ │ │ │ ├── cm_paypal_login.php │ │ │ │ └── cm_login_title.php │ │ │ ├── header │ │ │ │ ├── cm_header_logo.php │ │ │ │ ├── cm_header_search.php │ │ │ │ └── cm_header_messagestack.php │ │ │ ├── product_info │ │ │ │ ├── cm_pi_description.php │ │ │ │ ├── cm_pi_name.php │ │ │ │ └── cm_pi_buy_button.php │ │ │ ├── index_nested │ │ │ │ ├── cm_in_category_listing.php │ │ │ │ ├── cm_in_category_description.php │ │ │ │ └── cm_in_title.php │ │ │ ├── index_products │ │ │ │ ├── cm_ip_product_listing.php │ │ │ │ └── cm_ip_title.php │ │ │ ├── index │ │ │ │ ├── cm_i_title.php │ │ │ │ └── cm_i_text_main.php │ │ │ └── account │ │ │ │ └── cm_account_title.php │ │ ├── customer_data │ │ │ ├── cd_id.php │ │ │ ├── cd_name_2.php │ │ │ ├── cd_address_book_id.php │ │ │ ├── cd_password_reset.php │ │ │ ├── cd_email_username.php │ │ │ ├── cd_informal_short_name.php │ │ │ ├── cd_traditional_address.php │ │ │ ├── cd_date_account_created.php │ │ │ ├── cd_default_address_id.php │ │ │ └── cd_sortable_name_2.php │ │ ├── shipping │ │ │ ├── flat.php │ │ │ └── item.php │ │ ├── boxes │ │ │ ├── bm_reviews.php │ │ │ ├── bm_languages.php │ │ │ ├── bm_currencies.php │ │ │ ├── bm_categories.php │ │ │ ├── bm_specials.php │ │ │ ├── bm_best_sellers.php │ │ │ ├── bm_manufacturers.php │ │ │ ├── bm_whats_new.php │ │ │ └── bm_order_history.php │ │ ├── action_recorder │ │ │ ├── ar_contact_us.php │ │ │ ├── ar_admin_login.php │ │ │ └── ar_reset_password.php │ │ └── header_tags │ │ │ ├── ht_opensearch.php │ │ │ ├── ht_robot_noindex.php │ │ │ ├── ht_datepicker_jquery.php │ │ │ ├── ht_google_analytics.php │ │ │ ├── ht_table_click_jquery.php │ │ │ ├── ht_twitter_product_card.php │ │ │ └── ht_product_meta.php │ │ ├── privacy.php │ │ ├── conditions.php │ │ ├── shipping.php │ │ ├── checkout_success.php │ │ ├── account_edit.php │ │ └── products_new.php ├── work │ └── .htaccess ├── local │ └── README ├── classes │ ├── magic │ │ ├── surface.php │ │ ├── loader.php │ │ ├── session_eraser.php │ │ ├── function_surface.php │ │ ├── pipeline_surface.php │ │ ├── checkout_surface.php │ │ └── application_surface.php │ └── actions.php ├── modules │ ├── content │ │ ├── info │ │ │ └── templates │ │ │ │ ├── tpl_cm_info_text.php │ │ │ │ └── tpl_cm_info_title.php │ │ ├── index │ │ │ └── templates │ │ │ │ ├── tpl_cm_i_text_main.php │ │ │ │ ├── tpl_cm_i_title.php │ │ │ │ └── tpl_cm_i_customer_greeting.php │ │ ├── cm_template.php │ │ ├── header │ │ │ └── templates │ │ │ │ ├── tpl_cm_header_messagestack.php │ │ │ │ └── tpl_cm_header_logo.php │ │ ├── footer_suffix │ │ │ └── templates │ │ │ │ └── tpl_cm_footer_extra_copyright.php │ │ ├── login │ │ │ └── templates │ │ │ │ └── tpl_cm_login_title.php │ │ ├── account │ │ │ └── templates │ │ │ │ └── tpl_cm_account_title.php │ │ ├── testimonials │ │ │ └── templates │ │ │ │ └── tpl_cm_t_title.php │ │ ├── create_account_success │ │ │ └── templates │ │ │ │ └── tpl_cm_cas_title.php │ │ ├── product_info │ │ │ └── templates │ │ │ │ ├── tpl_cm_pi_description.php │ │ │ │ └── tpl_cm_pi_name.php │ │ ├── checkout_success │ │ │ └── templates │ │ │ │ └── tpl_cm_cs_title.php │ │ ├── gdpr │ │ │ └── templates │ │ │ │ └── tpl_cm_gdpr_intro.php │ │ ├── index_products │ │ │ └── templates │ │ │ │ ├── tpl_cm_ip_title.php │ │ │ │ └── tpl_cm_ip_category_manufacturer_description.php │ │ ├── index_nested │ │ │ └── templates │ │ │ │ ├── tpl_cm_in_title.php │ │ │ │ └── tpl_cm_in_category_description.php │ │ ├── footer │ │ │ └── templates │ │ │ │ └── tpl_cm_footer_text.php │ │ └── product_info_not_found │ │ │ └── templates │ │ │ └── tpl_cm_pinf_message.php │ ├── navbar │ │ └── templates │ │ │ ├── tpl_nb_brand.php │ │ │ ├── tpl_nb_home.php │ │ │ ├── tpl_nb_new_products.php │ │ │ ├── tpl_nb_testimonials.php │ │ │ └── tpl_nb_special_offers.php │ ├── pi │ │ └── product_info │ │ │ └── templates │ │ │ ├── tpl_pi_gallery.php │ │ │ └── tpl_pi_img_disclaimer.php │ ├── block_template.php │ ├── boxes │ │ └── templates │ │ │ ├── tpl_bm_manufacturers.php │ │ │ ├── tpl_bm_currencies.php │ │ │ ├── tpl_bm_information.php │ │ │ └── tpl_bm_languages.php │ ├── customer_data │ │ └── templates │ │ │ └── tpl_cd_whole_row_input.php │ └── notifications │ │ └── templates │ │ └── tpl_n_create_account.php ├── system │ └── segments │ │ ├── application │ │ ├── project_version.php │ │ └── request.php │ │ ├── sortable_product_listing.php │ │ └── checkout │ │ ├── after.php │ │ └── reset.php └── hooks │ └── admin │ └── siteWide │ └── tooltip.php ├── pub └── .htaccess ├── .github └── ce-phoenix.png ├── images ├── store_logo.png ├── sample │ ├── citrus.jpg │ ├── fruit.jpg │ ├── lime-1.jpg │ ├── pear-1.jpg │ ├── apple-1.jpg │ ├── lemon-1.jpg │ ├── orange-1.jpg │ ├── tomatoes-1.jpg │ ├── apples-pears.jpg │ ├── grapefruit-1.jpg │ ├── green-apple-1.jpg │ ├── vegetables-1.jpg │ └── green-tomatoes-1.jpg ├── apps │ └── paypal │ │ └── paypal.png └── .htaccess ├── install ├── images │ ├── phoenix.png │ └── icon_phoenix.png ├── index.php └── templates │ └── main_page │ └── stylesheet.css ├── ext ├── .htaccess ├── modules │ └── payment │ │ └── paypal │ │ └── images │ │ └── hss_load.gif ├── jquery │ └── ui │ │ └── redmond │ │ └── images │ │ ├── animated-overlay.gif │ │ ├── ui-icons_217bc0_256x240.png │ │ ├── ui-icons_2e83ff_256x240.png │ │ ├── ui-icons_469bdd_256x240.png │ │ ├── ui-icons_6da8d5_256x240.png │ │ ├── ui-icons_cd0a0a_256x240.png │ │ ├── ui-icons_d8e7f3_256x240.png │ │ ├── ui-icons_f9bd01_256x240.png │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ ├── ui-bg_flat_55_fbec88_40x100.png │ │ ├── ui-bg_glass_75_d0e5f5_1x400.png │ │ ├── ui-bg_glass_85_dfeffc_1x400.png │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ ├── ui-bg_gloss-wave_55_5c9ccc_500x100.png │ │ ├── ui-bg_inset-hard_100_f5f8f9_1x100.png │ │ └── ui-bg_inset-hard_100_fcfdfd_1x100.png └── datepicker │ └── locales │ ├── bootstrap-datepicker.kr.min.js │ ├── bootstrap-datepicker.ja.min.js │ ├── bootstrap-datepicker.zh-TW.min.js │ ├── bootstrap-datepicker.ko.min.js │ ├── bootstrap-datepicker.he.min.js │ ├── bootstrap-datepicker.zh-CN.min.js │ ├── bootstrap-datepicker.bg.min.js │ ├── bootstrap-datepicker.cy.min.js │ ├── bootstrap-datepicker.sw.min.js │ ├── bootstrap-datepicker.sl.min.js │ ├── bootstrap-datepicker.sq.min.js │ ├── bootstrap-datepicker.ms.min.js │ ├── bootstrap-datepicker.da.min.js │ ├── bootstrap-datepicker.eu.min.js │ ├── bootstrap-datepicker.hr.min.js │ ├── bootstrap-datepicker.id.min.js │ ├── bootstrap-datepicker.kk.min.js │ ├── bootstrap-datepicker.az.min.js │ ├── bootstrap-datepicker.nb.min.js │ ├── bootstrap-datepicker.is.min.js │ ├── bootstrap-datepicker.mk.min.js │ ├── bootstrap-datepicker.mn.min.js │ ├── bootstrap-datepicker.rs.min.js │ ├── bootstrap-datepicker.sr.min.js │ ├── bootstrap-datepicker.th.min.js │ ├── bootstrap-datepicker.bs.min.js │ ├── bootstrap-datepicker.fo.min.js │ ├── bootstrap-datepicker.cs.min.js │ ├── bootstrap-datepicker.lv.min.js │ ├── bootstrap-datepicker.ro.min.js │ ├── bootstrap-datepicker.tr.min.js │ ├── bootstrap-datepicker.fa.min.js │ ├── bootstrap-datepicker.gl.min.js │ ├── bootstrap-datepicker.rs-latin.min.js │ ├── bootstrap-datepicker.sk.min.js │ ├── bootstrap-datepicker.sr-latin.min.js │ ├── bootstrap-datepicker.sv.min.js │ ├── bootstrap-datepicker.ar.min.js │ ├── bootstrap-datepicker.me.min.js │ ├── bootstrap-datepicker.no.min.js │ ├── bootstrap-datepicker.pt.min.js │ ├── bootstrap-datepicker.ru.min.js │ ├── bootstrap-datepicker.it-CH.min.js │ ├── bootstrap-datepicker.pt-BR.min.js │ ├── bootstrap-datepicker.uk.min.js │ ├── bootstrap-datepicker.vi.min.js │ ├── bootstrap-datepicker.eo.min.js │ ├── bootstrap-datepicker.es.min.js │ ├── bootstrap-datepicker.fr-CH.min.js │ ├── bootstrap-datepicker.ca.min.js │ ├── bootstrap-datepicker.de.min.js │ ├── bootstrap-datepicker.hy.min.js │ └── bootstrap-datepicker.ka.min.js ├── download └── .htaccess ├── templates ├── default │ ├── static │ │ └── user.css │ ├── .htaccess │ └── includes │ │ └── components │ │ └── box.php └── override │ └── static │ └── .htaccess ├── checkout_process.php ├── index.php ├── info.php ├── privacy.php ├── conditions.php ├── shipping.php ├── ssl_check.php ├── cookie_usage.php ├── testimonials.php ├── advanced_search.php ├── shopping_cart.php ├── create_account_success.php ├── logoff.php ├── account.php ├── address_book.php └── account_history.php /admin/.htpasswd_oscommerce: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /admin/includes/stylesheet.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /includes/version.php: -------------------------------------------------------------------------------- 1 | 1.0.8.0 2 | -------------------------------------------------------------------------------- /includes/apps/paypal/version.txt: -------------------------------------------------------------------------------- 1 | 5.018 -------------------------------------------------------------------------------- /includes/apps/paypal/req_api_countries.txt: -------------------------------------------------------------------------------- 1 | US 2 | GB 3 | -------------------------------------------------------------------------------- /pub/.htaccess: -------------------------------------------------------------------------------- 1 | Options +FollowSymLinks -Indexes 2 | 3 | -------------------------------------------------------------------------------- /.github/ce-phoenix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburton/CE-Phoenix/HEAD/.github/ce-phoenix.png -------------------------------------------------------------------------------- /images/store_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburton/CE-Phoenix/HEAD/images/store_logo.png -------------------------------------------------------------------------------- /images/sample/citrus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburton/CE-Phoenix/HEAD/images/sample/citrus.jpg -------------------------------------------------------------------------------- /images/sample/fruit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburton/CE-Phoenix/HEAD/images/sample/fruit.jpg -------------------------------------------------------------------------------- /images/sample/lime-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburton/CE-Phoenix/HEAD/images/sample/lime-1.jpg -------------------------------------------------------------------------------- /images/sample/pear-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburton/CE-Phoenix/HEAD/images/sample/pear-1.jpg -------------------------------------------------------------------------------- /admin/images/CE-Phoenix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburton/CE-Phoenix/HEAD/admin/images/CE-Phoenix.png -------------------------------------------------------------------------------- /admin/images/oscommerce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburton/CE-Phoenix/HEAD/admin/images/oscommerce.png -------------------------------------------------------------------------------- /images/sample/apple-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburton/CE-Phoenix/HEAD/images/sample/apple-1.jpg -------------------------------------------------------------------------------- /images/sample/lemon-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburton/CE-Phoenix/HEAD/images/sample/lemon-1.jpg -------------------------------------------------------------------------------- /images/sample/orange-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburton/CE-Phoenix/HEAD/images/sample/orange-1.jpg -------------------------------------------------------------------------------- /install/images/phoenix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburton/CE-Phoenix/HEAD/install/images/phoenix.png -------------------------------------------------------------------------------- /admin/images/cal_date_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburton/CE-Phoenix/HEAD/admin/images/cal_date_up.gif -------------------------------------------------------------------------------- /admin/images/icon_phoenix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburton/CE-Phoenix/HEAD/admin/images/icon_phoenix.png -------------------------------------------------------------------------------- /admin/images/icon_twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburton/CE-Phoenix/HEAD/admin/images/icon_twitter.png -------------------------------------------------------------------------------- /images/apps/paypal/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburton/CE-Phoenix/HEAD/images/apps/paypal/paypal.png -------------------------------------------------------------------------------- /images/sample/tomatoes-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburton/CE-Phoenix/HEAD/images/sample/tomatoes-1.jpg -------------------------------------------------------------------------------- /admin/images/cal_close_small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburton/CE-Phoenix/HEAD/admin/images/cal_close_small.gif -------------------------------------------------------------------------------- /admin/images/cal_date_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburton/CE-Phoenix/HEAD/admin/images/cal_date_down.gif -------------------------------------------------------------------------------- /admin/images/cal_date_over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburton/CE-Phoenix/HEAD/admin/images/cal_date_over.gif -------------------------------------------------------------------------------- /admin/images/cal_del_small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburton/CE-Phoenix/HEAD/admin/images/cal_del_small.gif -------------------------------------------------------------------------------- /admin/images/icon_oscommerce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburton/CE-Phoenix/HEAD/admin/images/icon_oscommerce.png -------------------------------------------------------------------------------- /images/sample/apples-pears.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburton/CE-Phoenix/HEAD/images/sample/apples-pears.jpg -------------------------------------------------------------------------------- /images/sample/grapefruit-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburton/CE-Phoenix/HEAD/images/sample/grapefruit-1.jpg -------------------------------------------------------------------------------- /images/sample/green-apple-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburton/CE-Phoenix/HEAD/images/sample/green-apple-1.jpg -------------------------------------------------------------------------------- /images/sample/vegetables-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburton/CE-Phoenix/HEAD/images/sample/vegetables-1.jpg -------------------------------------------------------------------------------- /install/images/icon_phoenix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburton/CE-Phoenix/HEAD/install/images/icon_phoenix.png -------------------------------------------------------------------------------- /admin/images/CE-Phoenix-30-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburton/CE-Phoenix/HEAD/admin/images/CE-Phoenix-30-30.png -------------------------------------------------------------------------------- /images/sample/green-tomatoes-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburton/CE-Phoenix/HEAD/images/sample/green-tomatoes-1.jpg -------------------------------------------------------------------------------- /includes/apps/braintree_cc/Braintree/Descriptor.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | Require all denied 4 | 5 | 6 | 7 | Order Deny,Allow 8 | Deny from all 9 | 10 | 11 | -------------------------------------------------------------------------------- /admin/includes/header.php: -------------------------------------------------------------------------------- 1 | 13 | -------------------------------------------------------------------------------- /includes/apps/paypal/languages/english/modules/PS/cfg_params/ewp_private_key.php: -------------------------------------------------------------------------------- 1 | cfg_ps_ewp_private_key_title = Your Private Key 2 | cfg_ps_ewp_private_key_desc = The location and filename of your Private Key to use for encrypting the parameters. (*.pem) 3 | -------------------------------------------------------------------------------- /includes/languages/english/info.php: -------------------------------------------------------------------------------- 1 | 13 | -------------------------------------------------------------------------------- /includes/languages/english/download.php: -------------------------------------------------------------------------------- 1 | 13 | -------------------------------------------------------------------------------- /includes/apps/braintree_cc/Braintree/EqualityNode.php: -------------------------------------------------------------------------------- 1 | searchTerms['is_not'] = strval($value); 8 | return $this; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /includes/apps/paypal/languages/english/cfg_params/transactions_order_status_id.php: -------------------------------------------------------------------------------- 1 | cfg_transactions_order_status_id_title = Transactions Order Status 2 | cfg_transactions_order_status_id_desc = Set this to the private order status level where transaction information should be stored. 3 | -------------------------------------------------------------------------------- /includes/apps/paypal/languages/english/cfg_params/verify_ssl.php: -------------------------------------------------------------------------------- 1 | cfg_verify_ssl_title = Verify SSL 2 | cfg_verify_ssl_desc = Set this to True to verify the SSL certificate when making API calls to PayPal's servers. 3 | 4 | cfg_verify_ssl_true = True 5 | cfg_verify_ssl_false = False 6 | -------------------------------------------------------------------------------- /includes/apps/braintree_cc/Braintree/TextNode.php: -------------------------------------------------------------------------------- 1 | searchTerms["contains"] = strval($value); 8 | return $this; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /includes/apps/paypal/languages/english/modules/PS/cfg_params/ewp_public_cert_id.php: -------------------------------------------------------------------------------- 1 | cfg_ps_ewp_public_cert_id_title = Your PayPal Public Certificate ID 2 | cfg_ps_ewp_public_cert_id_desc = The Certificate ID assigned to your certificate shown in your PayPal Encrypted Payment Settings Profile page. 3 | -------------------------------------------------------------------------------- /includes/apps/paypal/languages/english/modules/DP/cfg_params/order_status_id.php: -------------------------------------------------------------------------------- 1 | cfg_dp_order_status_id_title = Order Status 2 | cfg_dp_order_status_id_desc = Set this to the order status level that is assigned to new orders. 3 | 4 | cfg_dp_order_status_id_default = -- Store Default Order Status -- 5 | -------------------------------------------------------------------------------- /includes/apps/paypal/languages/english/modules/EC/cfg_params/order_status_id.php: -------------------------------------------------------------------------------- 1 | cfg_ec_order_status_id_title = Order Status 2 | cfg_ec_order_status_id_desc = Set this to the order status level that is assigned to new orders. 3 | 4 | cfg_ec_order_status_id_default = -- Store Default Order Status -- 5 | -------------------------------------------------------------------------------- /includes/apps/paypal/languages/english/modules/HS/cfg_params/order_status_id.php: -------------------------------------------------------------------------------- 1 | cfg_hs_order_status_id_title = Order Status 2 | cfg_hs_order_status_id_desc = Set this to the order status level that is assigned to new orders. 3 | 4 | cfg_hs_order_status_id_default = -- Store Default Order Status -- 5 | -------------------------------------------------------------------------------- /includes/apps/paypal/languages/english/modules/PS/cfg_params/order_status_id.php: -------------------------------------------------------------------------------- 1 | cfg_ps_order_status_id_title = Order Status 2 | cfg_ps_order_status_id_desc = Set this to the order status level that is assigned to new orders. 3 | 4 | cfg_ps_order_status_id_default = -- Store Default Order Status -- 5 | -------------------------------------------------------------------------------- /includes/local/README: -------------------------------------------------------------------------------- 1 | This directory contains local configuration information. 2 | 3 | It also must contain a file named configure.php that can be used to override 4 | the defaults set in application_top.php 5 | 6 | Remember to execute PHP commands the file needs to start with 7 | -------------------------------------------------------------------------------- /admin/includes/local/README: -------------------------------------------------------------------------------- 1 | This directory contains local configuration information. 2 | 3 | It also must contain a file named configure.php that can be used to override 4 | the defaults set in application_top.php 5 | 6 | Remember to execute PHP commands the file needs to start with 7 | -------------------------------------------------------------------------------- /includes/languages/english/login.php: -------------------------------------------------------------------------------- 1 | 15 | -------------------------------------------------------------------------------- /includes/apps/paypal/languages/english/modules/LOGIN/cfg_params/content_width.php: -------------------------------------------------------------------------------- 1 | cfg_login_content_width_title = Content Width 2 | cfg_login_content_width_desc = Should the content be shown in a full or half width container? 3 | 4 | cfg_login_content_width_half = Half 5 | cfg_login_content_width_full = Full 6 | -------------------------------------------------------------------------------- /includes/languages/english/shopping_cart.php: -------------------------------------------------------------------------------- 1 | 15 | -------------------------------------------------------------------------------- /includes/apps/paypal/admin/actions/start.php: -------------------------------------------------------------------------------- 1 | 15 | -------------------------------------------------------------------------------- /includes/apps/paypal/languages/english/modules/DP/cfg_params/status.php: -------------------------------------------------------------------------------- 1 | cfg_dp_status_title = Status 2 | cfg_dp_status_desc = Set this to Live to start accepting payments or to Sandbox to perform test orders. 3 | 4 | cfg_dp_status_live = Live 5 | cfg_dp_status_sandbox = Sandbox 6 | cfg_dp_status_disabled = Disabled 7 | -------------------------------------------------------------------------------- /includes/apps/paypal/languages/english/modules/EC/cfg_params/status.php: -------------------------------------------------------------------------------- 1 | cfg_ec_status_title = Status 2 | cfg_ec_status_desc = Set this to Live to start accepting payments or to Sandbox to perform test orders. 3 | 4 | cfg_ec_status_live = Live 5 | cfg_ec_status_sandbox = Sandbox 6 | cfg_ec_status_disabled = Disabled 7 | -------------------------------------------------------------------------------- /includes/apps/paypal/languages/english/modules/HS/cfg_params/status.php: -------------------------------------------------------------------------------- 1 | cfg_hs_status_title = Status 2 | cfg_hs_status_desc = Set this to Live to start accepting payments or to Sandbox to perform test orders. 3 | 4 | cfg_hs_status_live = Live 5 | cfg_hs_status_sandbox = Sandbox 6 | cfg_hs_status_disabled = Disabled 7 | -------------------------------------------------------------------------------- /includes/apps/paypal/languages/english/modules/PS/cfg_params/status.php: -------------------------------------------------------------------------------- 1 | cfg_ps_status_title = Status 2 | cfg_ps_status_desc = Set this to Live to start accepting payments or to Sandbox to perform test orders. 3 | 4 | cfg_ps_status_live = Live 5 | cfg_ps_status_sandbox = Sandbox 6 | cfg_ps_status_disabled = Disabled 7 | -------------------------------------------------------------------------------- /includes/apps/paypal/admin/actions/balance.php: -------------------------------------------------------------------------------- 1 | 15 | -------------------------------------------------------------------------------- /includes/apps/paypal/admin/actions/privacy.php: -------------------------------------------------------------------------------- 1 | 15 | -------------------------------------------------------------------------------- /includes/apps/paypal/admin/actions/update.php: -------------------------------------------------------------------------------- 1 | 15 | -------------------------------------------------------------------------------- /admin/includes/boxes/layout.php: -------------------------------------------------------------------------------- 1 | BOX_HEADING_LAYOUT, 'apps' => []]; 14 | -------------------------------------------------------------------------------- /includes/apps/paypal/languages/english/modules/PS/cfg_params/pdt_identity_token.php: -------------------------------------------------------------------------------- 1 | cfg_ps_pdt_identity_token_title = PDT Identity Token 2 | cfg_ps_pdt_identity_token_desc = Your Payment Data Transfer (PDT) Identity Token. This is shown on your PayPal Account Website Payment Preferences page and is used to verify transactions with. 3 | -------------------------------------------------------------------------------- /admin/includes/boxes/tools.php: -------------------------------------------------------------------------------- 1 | BOX_HEADING_TOOLS, 'apps' => array()); 14 | -------------------------------------------------------------------------------- /includes/apps/paypal/languages/english/cfg_params/log_transactions.php: -------------------------------------------------------------------------------- 1 | cfg_log_transactions_title = Log Transactions 2 | cfg_log_transactions_desc = Set this to the level of transactions that should be logged. 3 | 4 | cfg_log_transactions_all = All 5 | cfg_log_transactions_errors = Errors 6 | cfg_log_transactions_disabled = Disabled 7 | -------------------------------------------------------------------------------- /includes/apps/paypal/languages/english/modules/EC/cfg_params/incontext_button_shape.php: -------------------------------------------------------------------------------- 1 | cfg_ec_incontext_button_shape_title = Checkout Button Shape 2 | cfg_ec_incontext_button_shape_desc = The shape of the Checkout with PayPal button. 3 | 4 | cfg_ec_incontext_button_shape_pill = Pill 5 | cfg_ec_incontext_button_shape_rect = Rectangular 6 | -------------------------------------------------------------------------------- /admin/includes/boxes/catalog.php: -------------------------------------------------------------------------------- 1 | BOX_HEADING_CATALOG, 'apps' => array()); 14 | -------------------------------------------------------------------------------- /admin/includes/boxes/orders.php: -------------------------------------------------------------------------------- 1 | BOX_HEADING_ORDERS, 'apps' => array()); 14 | -------------------------------------------------------------------------------- /admin/includes/boxes/reports.php: -------------------------------------------------------------------------------- 1 | BOX_HEADING_REPORTS, 'apps' => array()); 14 | -------------------------------------------------------------------------------- /admin/includes/languages/english/modules/boxes/taxes_zones.php: -------------------------------------------------------------------------------- 1 | BOX_HEADING_CUSTOMERS, 'apps' => array()); 14 | -------------------------------------------------------------------------------- /admin/includes/languages/english/modules/boxes/layout_pi.php: -------------------------------------------------------------------------------- 1 | BOX_HEADING_LOCALIZATION, 'apps' => array()); 14 | -------------------------------------------------------------------------------- /admin/includes/boxes/taxes.php: -------------------------------------------------------------------------------- 1 | BOX_HEADING_LOCATION_AND_TAXES, 'apps' => array()); 14 | -------------------------------------------------------------------------------- /admin/includes/languages/english/modules/boxes/catalog_reviews.php: -------------------------------------------------------------------------------- 1 | 15 | -------------------------------------------------------------------------------- /admin/includes/languages/english/modules/cfg_modules/cfgm_customer_data.php: -------------------------------------------------------------------------------- 1 | 15 | -------------------------------------------------------------------------------- /admin/includes/languages/english/modules/cfg_modules/cfgm_shipping.php: -------------------------------------------------------------------------------- 1 | 15 | -------------------------------------------------------------------------------- /ext/datepicker/locales/bootstrap-datepicker.kr.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.kr={days:["일요일","월요일","화요일","수요일","목요일","금요일","토요일"],daysShort:["일","월","화","수","목","금","토"],daysMin:["일","월","화","수","목","금","토"],months:["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"],monthsShort:["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"]}}(jQuery); -------------------------------------------------------------------------------- /includes/apps/braintree_cc/Braintree/Exception/UpgradeRequired.php: -------------------------------------------------------------------------------- 1 | 15 | -------------------------------------------------------------------------------- /admin/includes/languages/english/modules/newsletters/newsletter.php: -------------------------------------------------------------------------------- 1 | 15 | -------------------------------------------------------------------------------- /admin/includes/languages/english/modules/cfg_modules/cfgm_order_total.php: -------------------------------------------------------------------------------- 1 | 15 | -------------------------------------------------------------------------------- /includes/apps/paypal/languages/english/modules/EC/cfg_params/incontext_button_color.php: -------------------------------------------------------------------------------- 1 | cfg_ec_incontext_button_color_title = Checkout Button Color 2 | cfg_ec_incontext_button_color_desc = The color of the Checkout with PayPal button. 3 | 4 | cfg_ec_incontext_button_color_gold = Gold 5 | cfg_ec_incontext_button_color_blue = Blue 6 | cfg_ec_incontext_button_color_silver = Silver 7 | -------------------------------------------------------------------------------- /admin/includes/languages/english/modules/boxes/catalog_products_attributes.php: -------------------------------------------------------------------------------- 1 | 15 | -------------------------------------------------------------------------------- /install/index.php: -------------------------------------------------------------------------------- 1 | 19 | -------------------------------------------------------------------------------- /includes/classes/magic/loader.php: -------------------------------------------------------------------------------- 1 | cm-info-text"> 2 | 3 | 4 | 5 | 17 | -------------------------------------------------------------------------------- /includes/modules/navbar/templates/tpl_nb_brand.php: -------------------------------------------------------------------------------- 1 | ' . MODULE_NAVBAR_BRAND_PUBLIC_TEXT . ''; 14 | -------------------------------------------------------------------------------- /includes/languages/english/modules/order_total/ot_tax.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /includes/languages/english/modules/payment/paypal_express.php: -------------------------------------------------------------------------------- 1 | 16 | -------------------------------------------------------------------------------- /includes/languages/english/modules/payment/paypal_pro_dp.php: -------------------------------------------------------------------------------- 1 | 16 | -------------------------------------------------------------------------------- /includes/languages/english/modules/payment/paypal_pro_hs.php: -------------------------------------------------------------------------------- 1 | 16 | -------------------------------------------------------------------------------- /includes/system/segments/application/project_version.php: -------------------------------------------------------------------------------- 1 | 16 | -------------------------------------------------------------------------------- /includes/languages/english/modules/content/info/cm_info_text.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /includes/languages/english/modules/content/info/cm_info_title.php: -------------------------------------------------------------------------------- 1 | 16 | -------------------------------------------------------------------------------- /includes/languages/english/modules/payment/cod.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /includes/modules/content/index/templates/tpl_cm_i_text_main.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 | 17 | -------------------------------------------------------------------------------- /ext/datepicker/locales/bootstrap-datepicker.ja.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.ja={days:["日曜","月曜","火曜","水曜","木曜","金曜","土曜"],daysShort:["日","月","火","水","木","金","土"],daysMin:["日","月","火","水","木","金","土"],months:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],monthsShort:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],today:"今日",format:"yyyy/mm/dd",titleFormat:"yyyy年mm月",clear:"クリア"}}(jQuery); -------------------------------------------------------------------------------- /includes/languages/english/privacy.php: -------------------------------------------------------------------------------- 1 | Tools > Info Pages 18 | */ 19 | -------------------------------------------------------------------------------- /includes/apps/paypal/admin/content/privacy.php: -------------------------------------------------------------------------------- 1 | 13 | 14 |

getDef('privacy_title'); ?>

15 | 16 | getDef('privacy_body'); ?> 17 | -------------------------------------------------------------------------------- /includes/languages/english/conditions.php: -------------------------------------------------------------------------------- 1 | Tools > Info Pages 18 | */ 19 | -------------------------------------------------------------------------------- /includes/modules/content/info/templates/tpl_cm_info_title.php: -------------------------------------------------------------------------------- 1 |
2 |

3 |
4 | 5 | 17 | -------------------------------------------------------------------------------- /admin/includes/languages/english/modules/dashboard/d_paypal_app.php: -------------------------------------------------------------------------------- 1 | 16 | -------------------------------------------------------------------------------- /ext/datepicker/locales/bootstrap-datepicker.zh-TW.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates["zh-TW"]={days:["星期日","星期一","星期二","星期三","星期四","星期五","星期六"],daysShort:["週日","週一","週二","週三","週四","週五","週六"],daysMin:["日","一","二","三","四","五","六"],months:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],monthsShort:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],today:"今天",format:"yyyy年mm月dd日",weekStart:1,clear:"清除"}}(jQuery); -------------------------------------------------------------------------------- /includes/languages/english/modules/order_total/ot_subtotal.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /includes/languages/english/shipping.php: -------------------------------------------------------------------------------- 1 | Tools > Info Pages 18 | */ 19 | -------------------------------------------------------------------------------- /includes/modules/pi/product_info/templates/tpl_pi_gallery.php: -------------------------------------------------------------------------------- 1 | 7 | 8 | 20 | -------------------------------------------------------------------------------- /includes/system/segments/sortable_product_listing.php: -------------------------------------------------------------------------------- 1 | map_to_template('product_listing.php', 'component'); 15 | -------------------------------------------------------------------------------- /includes/languages/english/checkout_success.php: -------------------------------------------------------------------------------- 1 | map_to_template($tpl_data['file'])); 15 | 16 | $GLOBALS['oscTemplate']->addContent(ob_get_clean(), $tpl_data['group']); 17 | -------------------------------------------------------------------------------- /includes/modules/content/header/templates/tpl_cm_header_messagestack.php: -------------------------------------------------------------------------------- 1 |
2 | output('header'); ?> 3 |
4 | 5 | 17 | -------------------------------------------------------------------------------- /includes/modules/navbar/templates/tpl_nb_home.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 17 | -------------------------------------------------------------------------------- /admin/includes/languages/english/modules/security_check/file_uploads.php: -------------------------------------------------------------------------------- 1 | Warning: File uploads are disabled in the php.ini configuration file.'); 14 | ?> 15 | -------------------------------------------------------------------------------- /ext/datepicker/locales/bootstrap-datepicker.ko.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.ko={days:["일요일","월요일","화요일","수요일","목요일","금요일","토요일"],daysShort:["일","월","화","수","목","금","토"],daysMin:["일","월","화","수","목","금","토"],months:["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"],monthsShort:["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"],today:"오늘",clear:"삭제",format:"yyyy-mm-dd",titleFormat:"yyyy년mm월",weekStart:0}}(jQuery); -------------------------------------------------------------------------------- /includes/classes/magic/function_surface.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /includes/languages/english/modules/payment/nochex.php: -------------------------------------------------------------------------------- 1 | Requires the GBP currency.'); 15 | ?> 16 | -------------------------------------------------------------------------------- /includes/system/segments/checkout/after.php: -------------------------------------------------------------------------------- 1 | register_pipeline('after'); 16 | -------------------------------------------------------------------------------- /includes/system/segments/checkout/reset.php: -------------------------------------------------------------------------------- 1 | register_pipeline('reset'); 16 | -------------------------------------------------------------------------------- /includes/apps/braintree_cc/Braintree/PartialMatchNode.php: -------------------------------------------------------------------------------- 1 | searchTerms["starts_with"] = strval($value); 8 | return $this; 9 | } 10 | 11 | function endsWith($value) 12 | { 13 | $this->searchTerms["ends_with"] = strval($value); 14 | return $this; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /includes/apps/paypal/languages/english/admin/balance.php: -------------------------------------------------------------------------------- 1 | heading_live_account = Live: :account 2 | heading_sandbox_account = Sandbox: :account 3 | 4 | retrieving_balance_progress = Retrieving balance … 5 | 6 | error_no_accounts_configured = Error: No PayPal Live or Sandbox account has yet been configured. Please set up a PayPal account and try again. 7 | error_balance_retrieval = Error: The PayPal balance could not be retrieved. Please try again. 8 | -------------------------------------------------------------------------------- /includes/classes/magic/pipeline_surface.php: -------------------------------------------------------------------------------- 1 | register_pipeline($name, $arguments); 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /includes/languages/english/modules/customer_data/cd_name_2.php: -------------------------------------------------------------------------------- 1 | map_to_template($tpl_data['file'], $tpl_data['type'] ?? 'module'); 15 | 16 | $GLOBALS['oscTemplate']->addBlock(ob_get_clean(), $tpl_data['group']); 17 | -------------------------------------------------------------------------------- /ext/datepicker/locales/bootstrap-datepicker.zh-CN.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates["zh-CN"]={days:["星期日","星期一","星期二","星期三","星期四","星期五","星期六"],daysShort:["周日","周一","周二","周三","周四","周五","周六"],daysMin:["日","一","二","三","四","五","六"],months:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],monthsShort:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],today:"今日",clear:"清除",format:"yyyy年mm月dd日",titleFormat:"yyyy年mm月",weekStart:1}}(jQuery); -------------------------------------------------------------------------------- /includes/classes/magic/checkout_surface.php: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 18 | -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 | map_to_template(__FILE__, 'page'); 18 | 19 | require 'includes/application_bottom.php'; 20 | -------------------------------------------------------------------------------- /info.php: -------------------------------------------------------------------------------- 1 | map_to_template(__FILE__, 'page'); 18 | 19 | require 'includes/application_bottom.php'; 20 | -------------------------------------------------------------------------------- /install/templates/main_page/stylesheet.css: -------------------------------------------------------------------------------- 1 | Tools'); 14 | -------------------------------------------------------------------------------- /admin/includes/languages/english/modules/security_check/session_auto_start.php: -------------------------------------------------------------------------------- 1 | 15 | -------------------------------------------------------------------------------- /includes/apps/braintree_cc/Braintree/KeyValueNode.php: -------------------------------------------------------------------------------- 1 | name = $name; 8 | $this->searchTerm = True; 9 | 10 | } 11 | 12 | function is($value) 13 | { 14 | $this->searchTerm = $value; 15 | return $this; 16 | } 17 | 18 | function toParam() 19 | { 20 | return $this->searchTerm; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /includes/classes/magic/application_surface.php: -------------------------------------------------------------------------------- 1 | 17 | -------------------------------------------------------------------------------- /includes/languages/english/modules/shipping/item.php: -------------------------------------------------------------------------------- 1 | 17 | -------------------------------------------------------------------------------- /includes/modules/content/footer_suffix/templates/tpl_cm_footer_extra_copyright.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 17 | -------------------------------------------------------------------------------- /includes/modules/content/login/templates/tpl_cm_login_title.php: -------------------------------------------------------------------------------- 1 |
2 |

3 |
4 | 5 | 17 | -------------------------------------------------------------------------------- /privacy.php: -------------------------------------------------------------------------------- 1 | map_to_template(__FILE__, 'page'); 18 | 19 | require 'includes/application_bottom.php'; 20 | -------------------------------------------------------------------------------- /admin/includes/languages/english/modules/boxes/orders.php: -------------------------------------------------------------------------------- 1 | Orders'); 14 | -------------------------------------------------------------------------------- /conditions.php: -------------------------------------------------------------------------------- 1 | map_to_template(__FILE__, 'page'); 18 | 19 | require 'includes/application_bottom.php'; 20 | -------------------------------------------------------------------------------- /ext/datepicker/locales/bootstrap-datepicker.bg.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.bg={days:["Неделя","Понеделник","Вторник","Сряда","Четвъртък","Петък","Събота"],daysShort:["Нед","Пон","Вто","Сря","Чет","Пет","Съб"],daysMin:["Н","П","В","С","Ч","П","С"],months:["Януари","Февруари","Март","Април","Май","Юни","Юли","Август","Септември","Октомври","Ноември","Декември"],monthsShort:["Ян","Фев","Мар","Апр","Май","Юни","Юли","Авг","Сеп","Окт","Ное","Дек"],today:"днес"}}(jQuery); -------------------------------------------------------------------------------- /includes/apps/braintree_cc/Braintree/IsNode.php: -------------------------------------------------------------------------------- 1 | name = $name; 8 | $this->searchTerms = array(); 9 | } 10 | 11 | function is($value) 12 | { 13 | $this->searchTerms['is'] = strval($value); 14 | return $this; 15 | } 16 | 17 | function toParam() 18 | { 19 | return $this->searchTerms; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /includes/apps/paypal/languages/english/modules/EC/cfg_params/instant_update.php: -------------------------------------------------------------------------------- 1 | cfg_ec_instant_update_title = Instant Update 2 | cfg_ec_instant_update_desc = Enable this to have PayPal retrieve a list of shipping rates after the customer has selected their shipping address during the Express Checkout flow.

Instant Update requires SSL to be enabled on your store. 3 | 4 | cfg_ec_instant_update_enabled = Enabled 5 | cfg_ec_instant_update_disabled = Disabled 6 | -------------------------------------------------------------------------------- /includes/languages/english/modules/boxes/bm_reviews.php: -------------------------------------------------------------------------------- 1 | cm-account-title"> 2 |

3 | 4 | 5 | 17 | -------------------------------------------------------------------------------- /includes/modules/content/testimonials/templates/tpl_cm_t_title.php: -------------------------------------------------------------------------------- 1 |
2 |

3 |
4 | 5 | 17 | -------------------------------------------------------------------------------- /includes/modules/navbar/templates/tpl_nb_new_products.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 17 | -------------------------------------------------------------------------------- /includes/modules/navbar/templates/tpl_nb_testimonials.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 17 | -------------------------------------------------------------------------------- /shipping.php: -------------------------------------------------------------------------------- 1 | map_to_template(__FILE__, 'page'); 18 | 19 | require 'includes/application_bottom.php'; 20 | -------------------------------------------------------------------------------- /ssl_check.php: -------------------------------------------------------------------------------- 1 | map_to_template(__FILE__, 'page'); 18 | 19 | require 'includes/application_bottom.php'; 20 | -------------------------------------------------------------------------------- /admin/images/.htaccess: -------------------------------------------------------------------------------- 1 | # $Id$ 2 | # 3 | # This is used to restrict access to this folder to anything other 4 | # than images 5 | 6 | # Prevents any script files from being accessed from the images folder 7 | 8 | 9 | Require all denied 10 | 11 | 12 | 13 | Order Deny,Allow 14 | Deny from all 15 | 16 | 17 | -------------------------------------------------------------------------------- /admin/includes/languages/english/modules/boxes/catalog.php: -------------------------------------------------------------------------------- 1 | Catalog'); 14 | -------------------------------------------------------------------------------- /admin/includes/languages/english/modules/boxes/modules.php: -------------------------------------------------------------------------------- 1 | Modules'); 14 | -------------------------------------------------------------------------------- /admin/includes/languages/english/modules/boxes/reports.php: -------------------------------------------------------------------------------- 1 | Reports'); 14 | -------------------------------------------------------------------------------- /admin/includes/languages/english/modules/security_check/download_directory.php: -------------------------------------------------------------------------------- 1 | map_to_template(__FILE__, 'page'); 18 | 19 | require 'includes/application_bottom.php'; 20 | -------------------------------------------------------------------------------- /ext/datepicker/locales/bootstrap-datepicker.cy.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.cy={days:["Sul","Llun","Mawrth","Mercher","Iau","Gwener","Sadwrn"],daysShort:["Sul","Llu","Maw","Mer","Iau","Gwe","Sad"],daysMin:["Su","Ll","Ma","Me","Ia","Gwe","Sa"],months:["Ionawr","Chewfror","Mawrth","Ebrill","Mai","Mehefin","Gorfennaf","Awst","Medi","Hydref","Tachwedd","Rhagfyr"],monthsShort:["Ion","Chw","Maw","Ebr","Mai","Meh","Gor","Aws","Med","Hyd","Tach","Rha"],today:"Heddiw"}}(jQuery); -------------------------------------------------------------------------------- /ext/datepicker/locales/bootstrap-datepicker.sw.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.sw={days:["Jumapili","Jumatatu","Jumanne","Jumatano","Alhamisi","Ijumaa","Jumamosi"],daysShort:["J2","J3","J4","J5","Alh","Ij","J1"],daysMin:["2","3","4","5","A","I","1"],months:["Januari","Februari","Machi","Aprili","Mei","Juni","Julai","Agosti","Septemba","Oktoba","Novemba","Desemba"],monthsShort:["Jan","Feb","Mac","Apr","Mei","Jun","Jul","Ago","Sep","Okt","Nov","Des"],today:"Leo"}}(jQuery); -------------------------------------------------------------------------------- /includes/modules/content/create_account_success/templates/tpl_cm_cas_title.php: -------------------------------------------------------------------------------- 1 |
2 |

3 |
4 | 5 | 17 | -------------------------------------------------------------------------------- /includes/modules/content/product_info/templates/tpl_cm_pi_description.php: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 |
5 |
6 | 7 | 19 | -------------------------------------------------------------------------------- /includes/modules/navbar/templates/tpl_nb_special_offers.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 17 | -------------------------------------------------------------------------------- /testimonials.php: -------------------------------------------------------------------------------- 1 | map_to_template(__FILE__, 'page'); 18 | 19 | require 'includes/application_bottom.php'; 20 | -------------------------------------------------------------------------------- /admin/includes/languages/english/modules/boxes/customers.php: -------------------------------------------------------------------------------- 1 | Customers'); 14 | -------------------------------------------------------------------------------- /admin/includes/languages/english/modules/security_check/install_directory.php: -------------------------------------------------------------------------------- 1 | 15 | -------------------------------------------------------------------------------- /advanced_search.php: -------------------------------------------------------------------------------- 1 | map_to_template(__FILE__, 'page'); 18 | 19 | require 'includes/application_bottom.php'; 20 | -------------------------------------------------------------------------------- /ext/datepicker/locales/bootstrap-datepicker.sl.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.sl={days:["Nedelja","Ponedeljek","Torek","Sreda","Četrtek","Petek","Sobota"],daysShort:["Ned","Pon","Tor","Sre","Čet","Pet","Sob"],daysMin:["Ne","Po","To","Sr","Če","Pe","So"],months:["Januar","Februar","Marec","April","Maj","Junij","Julij","Avgust","September","Oktober","November","December"],monthsShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Avg","Sep","Okt","Nov","Dec"],today:"Danes"}}(jQuery); -------------------------------------------------------------------------------- /ext/datepicker/locales/bootstrap-datepicker.sq.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.sq={days:["E Diel","E Hënë","E Martē","E Mërkurë","E Enjte","E Premte","E Shtunë"],daysShort:["Die","Hën","Mar","Mër","Enj","Pre","Shtu"],daysMin:["Di","Hë","Ma","Më","En","Pr","Sht"],months:["Janar","Shkurt","Mars","Prill","Maj","Qershor","Korrik","Gusht","Shtator","Tetor","Nëntor","Dhjetor"],monthsShort:["Jan","Shk","Mar","Pri","Maj","Qer","Korr","Gu","Sht","Tet","Nën","Dhjet"],today:"Sot"}}(jQuery); -------------------------------------------------------------------------------- /includes/modules/content/checkout_success/templates/tpl_cm_cs_title.php: -------------------------------------------------------------------------------- 1 |
2 |

3 |
4 | 5 | 17 | -------------------------------------------------------------------------------- /includes/modules/content/index/templates/tpl_cm_i_title.php: -------------------------------------------------------------------------------- 1 |
2 |

3 |
4 | 5 | 17 | -------------------------------------------------------------------------------- /includes/modules/content/product_info/templates/tpl_cm_pi_name.php: -------------------------------------------------------------------------------- 1 |
2 |

3 |
4 | 5 | 17 | -------------------------------------------------------------------------------- /shopping_cart.php: -------------------------------------------------------------------------------- 1 | map_to_template(__FILE__, 'page'); 18 | 19 | require 'includes/application_bottom.php'; 20 | -------------------------------------------------------------------------------- /includes/languages/english/modules/action_recorder/ar_contact_us.php: -------------------------------------------------------------------------------- 1 | 16 | -------------------------------------------------------------------------------- /includes/languages/english/modules/content/product_info/cm_pi_description.php: -------------------------------------------------------------------------------- 1 | 16 | -------------------------------------------------------------------------------- /includes/languages/english/modules/header_tags/ht_robot_noindex.php: -------------------------------------------------------------------------------- 1 | 16 | -------------------------------------------------------------------------------- /includes/modules/content/gdpr/templates/tpl_cm_gdpr_intro.php: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 |
5 |
6 | 7 | 19 | 20 | -------------------------------------------------------------------------------- /includes/modules/pi/product_info/templates/tpl_pi_img_disclaimer.php: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 |
5 |
6 | 7 | 19 | -------------------------------------------------------------------------------- /admin/includes/languages/english/modules/boxes/layout.php: -------------------------------------------------------------------------------- 1 | Layout Modules'); 14 | -------------------------------------------------------------------------------- /admin/includes/languages/english/stats_products_viewed.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /create_account_success.php: -------------------------------------------------------------------------------- 1 | map_to_template(__FILE__, 'page'); 17 | 18 | require 'includes/application_bottom.php'; 19 | -------------------------------------------------------------------------------- /ext/datepicker/locales/bootstrap-datepicker.ms.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.ms={days:["Ahad","Isnin","Selasa","Rabu","Khamis","Jumaat","Sabtu"],daysShort:["Aha","Isn","Sel","Rab","Kha","Jum","Sab"],daysMin:["Ah","Is","Se","Ra","Kh","Ju","Sa"],months:["Januari","Februari","Mac","April","Mei","Jun","Julai","Ogos","September","Oktober","November","Disember"],monthsShort:["Jan","Feb","Mar","Apr","Mei","Jun","Jul","Ogo","Sep","Okt","Nov","Dis"],today:"Hari Ini",clear:"Bersihkan"}}(jQuery); -------------------------------------------------------------------------------- /includes/languages/english/modules/boxes/bm_languages.php: -------------------------------------------------------------------------------- 1 | 16 | -------------------------------------------------------------------------------- /includes/languages/english/modules/header_tags/ht_google_analytics.php: -------------------------------------------------------------------------------- 1 | 16 | -------------------------------------------------------------------------------- /includes/modules/content/index_products/templates/tpl_cm_ip_title.php: -------------------------------------------------------------------------------- 1 |
2 |

3 |
4 | 5 | -------------------------------------------------------------------------------- /admin/includes/languages/english/modules/boxes/configuration.php: -------------------------------------------------------------------------------- 1 | Configuration'); 14 | -------------------------------------------------------------------------------- /admin/includes/languages/english/modules/boxes/localization.php: -------------------------------------------------------------------------------- 1 | Localization'); 14 | -------------------------------------------------------------------------------- /admin/includes/languages/english/modules/security_check/default_language.php: -------------------------------------------------------------------------------- 1 | Error: There is currently no default language set. Please set one at: Administration Tool->Localization->Languages'); 14 | ?> 15 | -------------------------------------------------------------------------------- /ext/datepicker/locales/bootstrap-datepicker.da.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.da={days:["søndag","mandag","tirsdag","onsdag","torsdag","fredag","lørdag"],daysShort:["søn","man","tir","ons","tor","fre","lør"],daysMin:["sø","ma","ti","on","to","fr","lø"],months:["januar","februar","marts","april","maj","juni","juli","august","september","oktober","november","december"],monthsShort:["jan","feb","mar","apr","maj","jun","jul","aug","sep","okt","nov","dec"],today:"I Dag",clear:"Nulstil"}}(jQuery); -------------------------------------------------------------------------------- /ext/datepicker/locales/bootstrap-datepicker.eu.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.eu={days:["Igandea","Astelehena","Asteartea","Asteazkena","Osteguna","Ostirala","Larunbata"],daysShort:["Ig","Al","Ar","Az","Og","Ol","Lr"],daysMin:["Ig","Al","Ar","Az","Og","Ol","Lr"],months:["Urtarrila","Otsaila","Martxoa","Apirila","Maiatza","Ekaina","Uztaila","Abuztua","Iraila","Urria","Azaroa","Abendua"],monthsShort:["Urt","Ots","Mar","Api","Mai","Eka","Uzt","Abu","Ira","Urr","Aza","Abe"],today:"Gaur"}}(jQuery); -------------------------------------------------------------------------------- /ext/datepicker/locales/bootstrap-datepicker.hr.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.hr={days:["Nedjelja","Ponedjeljak","Utorak","Srijeda","Četvrtak","Petak","Subota"],daysShort:["Ned","Pon","Uto","Sri","Čet","Pet","Sub"],daysMin:["Ne","Po","Ut","Sr","Če","Pe","Su"],months:["Siječanj","Veljača","Ožujak","Travanj","Svibanj","Lipanj","Srpanj","Kolovoz","Rujan","Listopad","Studeni","Prosinac"],monthsShort:["Sij","Velj","Ožu","Tra","Svi","Lip","Srp","Kol","Ruj","Lis","Stu","Pro"],today:"Danas"}}(jQuery); -------------------------------------------------------------------------------- /ext/datepicker/locales/bootstrap-datepicker.id.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.id={days:["Minggu","Senin","Selasa","Rabu","Kamis","Jumat","Sabtu"],daysShort:["Mgu","Sen","Sel","Rab","Kam","Jum","Sab"],daysMin:["Mg","Sn","Sl","Ra","Ka","Ju","Sa"],months:["Januari","Februari","Maret","April","Mei","Juni","Juli","Agustus","September","Oktober","November","Desember"],monthsShort:["Jan","Feb","Mar","Apr","Mei","Jun","Jul","Ags","Sep","Okt","Nov","Des"],today:"Hari Ini",clear:"Kosongkan"}}(jQuery); -------------------------------------------------------------------------------- /ext/datepicker/locales/bootstrap-datepicker.kk.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.kk={days:["Жексенбі","Дүйсенбі","Сейсенбі","Сәрсенбі","Бейсенбі","Жұма","Сенбі"],daysShort:["Жек","Дүй","Сей","Сәр","Бей","Жұм","Сен"],daysMin:["Жк","Дс","Сс","Ср","Бс","Жм","Сн"],months:["Қаңтар","Ақпан","Наурыз","Сәуір","Мамыр","Маусым","Шілде","Тамыз","Қыркүйек","Қазан","Қараша","Желтоқсан"],monthsShort:["Қаң","Ақп","Нау","Сәу","Мам","Мау","Шіл","Там","Қыр","Қаз","Қар","Жел"],today:"Бүгін",weekStart:1}}(jQuery); -------------------------------------------------------------------------------- /images/.htaccess: -------------------------------------------------------------------------------- 1 | # $Id$ 2 | # 3 | # This is used to restrict access to this folder to anything other 4 | # than images 5 | 6 | # Prevents any script files from being accessed from the images folder 7 | 8 | 9 | Require all denied 10 | 11 | 12 | 13 | Order Deny,Allow 14 | Deny from all 15 | 16 | 17 | 18 | Options -Indexes 19 | -------------------------------------------------------------------------------- /includes/languages/english/modules/boxes/bm_currencies.php: -------------------------------------------------------------------------------- 1 | cm-i-customer-greeting"> 2 | 5 | 6 | 7 | 19 | -------------------------------------------------------------------------------- /includes/modules/content/index_nested/templates/tpl_cm_in_title.php: -------------------------------------------------------------------------------- 1 |
2 |

3 |
4 | 5 | 17 | -------------------------------------------------------------------------------- /admin/includes/languages/english/modules/security_check/default_currency.php: -------------------------------------------------------------------------------- 1 | Error: There is currently no default currency set. Please set one at: Administration Tool->Localization->Currencies'); 14 | ?> 15 | -------------------------------------------------------------------------------- /admin/includes/languages/english/stats_products_purchased.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ext/datepicker/locales/bootstrap-datepicker.az.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.az={days:["Bazar","Bazar ertəsi","Çərşənbə axşamı","Çərşənbə","Cümə axşamı","Cümə","Şənbə"],daysShort:["B.","B.e","Ç.a","Ç.","C.a","C.","Ş."],daysMin:["B.","B.e","Ç.a","Ç.","C.a","C.","Ş."],months:["Yanvar","Fevral","Mart","Aprel","May","İyun","İyul","Avqust","Sentyabr","Oktyabr","Noyabr","Dekabr"],monthsShort:["Yan","Fev","Mar","Apr","May","İyun","İyul","Avq","Sen","Okt","Noy","Dek"],today:"Bu gün",weekStart:1}}(jQuery); -------------------------------------------------------------------------------- /ext/datepicker/locales/bootstrap-datepicker.nb.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.nb={days:["Søndag","Mandag","Tirsdag","Onsdag","Torsdag","Fredag","Lørdag"],daysShort:["Søn","Man","Tir","Ons","Tor","Fre","Lør"],daysMin:["Sø","Ma","Ti","On","To","Fr","Lø"],months:["Januar","Februar","Mars","April","Mai","Juni","Juli","August","September","Oktober","November","Desember"],monthsShort:["Jan","Feb","Mar","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Des"],today:"I Dag",format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /includes/languages/english/modules/content/index/cm_i_title.php: -------------------------------------------------------------------------------- 1 | 16 | -------------------------------------------------------------------------------- /includes/languages/english/modules/header_tags/ht_twitter_product_card.php: -------------------------------------------------------------------------------- 1 | 16 | -------------------------------------------------------------------------------- /includes/languages/english/modules/boxes/bm_categories.php: -------------------------------------------------------------------------------- 1 | cm-footer-text"> 2 |

3 | 4 | 5 | 6 | 18 | -------------------------------------------------------------------------------- /includes/system/segments/application/request.php: -------------------------------------------------------------------------------- 1 | 8 | 9 | Require all denied 10 | 11 | 12 | 13 | Order Deny,Allow 14 | Deny from all 15 | 16 | 17 | 18 | Options -Indexes 19 | -------------------------------------------------------------------------------- /admin/includes/languages/english/modules/boxes/taxes.php: -------------------------------------------------------------------------------- 1 | Locations & Taxes'); 14 | -------------------------------------------------------------------------------- /includes/apps/paypal/admin/actions/log/deleteAll.php: -------------------------------------------------------------------------------- 1 | addAlert($OSCOM_PayPal->getDef('alert_delete_success'), 'success'); 16 | 17 | tep_redirect(tep_href_link('paypal.php', 'action=log')); 18 | ?> 19 | -------------------------------------------------------------------------------- /includes/languages/english/modules/action_recorder/ar_reset_password.php: -------------------------------------------------------------------------------- 1 | 16 | -------------------------------------------------------------------------------- /includes/languages/english/modules/boxes/bm_specials.php: -------------------------------------------------------------------------------- 1 | Specials'); 17 | -------------------------------------------------------------------------------- /admin/includes/application_bottom.php: -------------------------------------------------------------------------------- 1 | timer_stop(DISPLAY_PAGE_PARSE_TIME); 19 | } 20 | ?> -------------------------------------------------------------------------------- /ext/datepicker/locales/bootstrap-datepicker.bs.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.bs={days:["Nedjelja","Ponedjeljak","Utorak","Srijeda","Četvrtak","Petak","Subota"],daysShort:["Ned","Pon","Uto","Sri","Čet","Pet","Sub"],daysMin:["N","Po","U","Sr","Č","Pe","Su"],months:["Januar","Februar","Mart","April","Maj","Juni","Juli","August","Septembar","Oktobar","Novembar","Decembar"],monthsShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Aug","Sep","Okt","Nov","Dec"],today:"Danas",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /ext/datepicker/locales/bootstrap-datepicker.fo.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.fo={days:["Sunnudagur","Mánadagur","Týsdagur","Mikudagur","Hósdagur","Fríggjadagur","Leygardagur"],daysShort:["Sun","Mán","Týs","Mik","Hós","Frí","Ley"],daysMin:["Su","Má","Tý","Mi","Hó","Fr","Le"],months:["Januar","Februar","Marts","Apríl","Mei","Juni","Juli","August","Septembur","Oktobur","Novembur","Desembur"],monthsShort:["Jan","Feb","Mar","Apr","Mei","Jun","Jul","Aug","Sep","Okt","Nov","Des"],today:"Í Dag",clear:"Reinsa"}}(jQuery); -------------------------------------------------------------------------------- /includes/languages/english/modules/content/product_info/cm_pi_name.php: -------------------------------------------------------------------------------- 1 | register_pipeline('reset'); 18 | 19 | require $oscTemplate->map_to_template(__FILE__, 'page'); 20 | 21 | require 'includes/application_bottom.php'; 22 | -------------------------------------------------------------------------------- /templates/default/includes/components/box.php: -------------------------------------------------------------------------------- 1 |
> 2 |
3 | 4 | map_to_template(...$box['parameters']) ?> 5 |
6 | 7 | 19 | -------------------------------------------------------------------------------- /templates/override/static/.htaccess: -------------------------------------------------------------------------------- 1 | # $Id$ 2 | # 3 | # This is used to restrict access to this folder to anything other 4 | # than images 5 | 6 | # Prevents any script files from being accessed from the images folder 7 | 8 | 9 | Require all denied 10 | 11 | 12 | 13 | Order Deny,Allow 14 | Deny from all 15 | 16 | 17 | 18 | Options -Indexes 19 | -------------------------------------------------------------------------------- /admin/includes/boxes/paypal.php: -------------------------------------------------------------------------------- 1 | MODULES_ADMIN_MENU_PAYPAL_HEADING, 16 | 'apps' => app_paypal_get_admin_box_links()); 17 | -------------------------------------------------------------------------------- /admin/includes/languages/english/modules/dashboard/d_customers.php: -------------------------------------------------------------------------------- 1 | Online documentation is available at the Library website:

4 |

:button_online_documentation

5 | 6 | button_online_documentation = Online Documentation 7 | 8 | online_forum_title = Online Forum 9 | 10 | online_forum_body =

Support enquiries can be posted at the Phoenix Club:

11 |

:button_online_forum

12 | 13 | button_online_forum = Phoenix Club 14 | -------------------------------------------------------------------------------- /includes/languages/english/modules/boxes/bm_best_sellers.php: -------------------------------------------------------------------------------- 1 | What\'s New?'); 17 | -------------------------------------------------------------------------------- /includes/modules/boxes/templates/tpl_bm_currencies.php: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 |
5 |
6 | 7 |
8 |
9 | 10 | 22 | -------------------------------------------------------------------------------- /includes/modules/content/header/templates/tpl_cm_header_logo.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 17 | 18 | -------------------------------------------------------------------------------- /ext/datepicker/locales/bootstrap-datepicker.fa.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.fa={days:["یک‌شنبه","دوشنبه","سه‌شنبه","چهارشنبه","پنج‌شنبه","جمعه","شنبه","یک‌شنبه"],daysShort:["یک","دو","سه","چهار","پنج","جمعه","شنبه","یک"],daysMin:["ی","د","س","چ","پ","ج","ش","ی"],months:["ژانویه","فوریه","مارس","آوریل","مه","ژوئن","ژوئیه","اوت","سپتامبر","اکتبر","نوامبر","دسامبر"],monthsShort:["ژان","فور","مار","آور","مه","ژون","ژوی","اوت","سپت","اکت","نوا","دسا"],today:"امروز",clear:"پاک کن",weekStart:1,format:"yyyy/mm/dd"}}(jQuery); -------------------------------------------------------------------------------- /ext/datepicker/locales/bootstrap-datepicker.gl.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.gl={days:["Domingo","Luns","Martes","Mércores","Xoves","Venres","Sábado"],daysShort:["Dom","Lun","Mar","Mér","Xov","Ven","Sáb"],daysMin:["Do","Lu","Ma","Me","Xo","Ve","Sa"],months:["Xaneiro","Febreiro","Marzo","Abril","Maio","Xuño","Xullo","Agosto","Setembro","Outubro","Novembro","Decembro"],monthsShort:["Xan","Feb","Mar","Abr","Mai","Xun","Xul","Ago","Sep","Out","Nov","Dec"],today:"Hoxe",clear:"Limpar",weekStart:1,format:"dd/mm/yyyy"}}(jQuery); -------------------------------------------------------------------------------- /ext/datepicker/locales/bootstrap-datepicker.rs-latin.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates["rs-latin"]={days:["Nedelja","Ponedeljak","Utorak","Sreda","Četvrtak","Petak","Subota"],daysShort:["Ned","Pon","Uto","Sre","Čet","Pet","Sub"],daysMin:["N","Po","U","Sr","Č","Pe","Su"],months:["Januar","Februar","Mart","April","Maj","Jun","Jul","Avgust","Septembar","Oktobar","Novembar","Decembar"],monthsShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Avg","Sep","Okt","Nov","Dec"],today:"Danas",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /ext/datepicker/locales/bootstrap-datepicker.sk.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.sk={days:["Nedeľa","Pondelok","Utorok","Streda","Štvrtok","Piatok","Sobota"],daysShort:["Ned","Pon","Uto","Str","Štv","Pia","Sob"],daysMin:["Ne","Po","Ut","St","Št","Pia","So"],months:["Január","Február","Marec","Apríl","Máj","Jún","Júl","August","September","Október","November","December"],monthsShort:["Jan","Feb","Mar","Apr","Máj","Jún","Júl","Aug","Sep","Okt","Nov","Dec"],today:"Dnes",clear:"Vymazať",weekStart:1,format:"d.m.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /ext/datepicker/locales/bootstrap-datepicker.sr-latin.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates["sr-latin"]={days:["Nedelja","Ponedeljak","Utorak","Sreda","Četvrtak","Petak","Subota"],daysShort:["Ned","Pon","Uto","Sre","Čet","Pet","Sub"],daysMin:["N","Po","U","Sr","Č","Pe","Su"],months:["Januar","Februar","Mart","April","Maj","Jun","Jul","Avgust","Septembar","Oktobar","Novembar","Decembar"],monthsShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Avg","Sep","Okt","Nov","Dec"],today:"Danas",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /ext/datepicker/locales/bootstrap-datepicker.sv.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.sv={days:["Söndag","Måndag","Tisdag","Onsdag","Torsdag","Fredag","Lördag"],daysShort:["Sön","Mån","Tis","Ons","Tor","Fre","Lör"],daysMin:["Sö","Må","Ti","On","To","Fr","Lö"],months:["Januari","Februari","Mars","April","Maj","Juni","Juli","Augusti","September","Oktober","November","December"],monthsShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Aug","Sep","Okt","Nov","Dec"],today:"Idag",format:"yyyy-mm-dd",weekStart:1,clear:"Rensa"}}(jQuery); -------------------------------------------------------------------------------- /includes/apps/paypal/languages/english/modules/EC/cfg_params/checkout_flow.php: -------------------------------------------------------------------------------- 1 | cfg_ec_checkout_flow_title = Checkout Flow 2 | cfg_ec_checkout_flow_desc = Use the new pop-up In-Context checkout flow and have PayPal automatically choose the best checkout flow to use, or use standard full-page Classic checkout flow.

In-Context does not yet support all of the features of the Classic checkout flow such as Instant Update. 3 | 4 | cfg_ec_checkout_flow_default = Classic 5 | cfg_ec_checkout_flow_in_context = In-Context 6 | -------------------------------------------------------------------------------- /includes/apps/paypal/work/paypal.pubkey: -------------------------------------------------------------------------------- 1 | -----BEGIN PUBLIC KEY----- 2 | MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAr+deEmd0qZ5cblxIr+JX 3 | C6ESN8Rsl05R+gXC6+tm7F479vq/sLF+DqSWhNQ/bydyGTP7s4NvWzY06e3ywzzq 4 | b4RIIWw+87K6R59KHAR8/oltICCZiI26yP0fjE4g/zgZ5FNN+ccC0drCCEM5S+8a 5 | II7FCd9b5UdAL1FkfMlKCn3DCzD/zuj/e4+3iQLans/vZnrOjFtGRNuiCGPoZF9O 6 | q6rKfTXVl+QBoCrO5Qsm+wv5MghX9ehQ0VxxW6H9R3cRVCwXGr6FNHsPb1VxIoxB 7 | Qct8YDXqp22gmb5Crjy3DeTh/v9jy5XKSoVz74cG2b/SwMipGtGc/qa8mRIjncjB 8 | AQIDAQAB 9 | -----END PUBLIC KEY----- 10 | -------------------------------------------------------------------------------- /includes/languages/english/account_edit.php: -------------------------------------------------------------------------------- 1 | cm-pinf-message"> 2 | 5 | 6 | 7 | 19 | -------------------------------------------------------------------------------- /account.php: -------------------------------------------------------------------------------- 1 | register_pipeline('loginRequired'); 16 | 17 | require language::map_to_translation('account.php'); 18 | 19 | require $oscTemplate->map_to_template(__FILE__, 'page'); 20 | 21 | require 'includes/application_bottom.php'; 22 | -------------------------------------------------------------------------------- /ext/datepicker/locales/bootstrap-datepicker.ar.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.ar={days:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت","الأحد"],daysShort:["أحد","اثنين","ثلاثاء","أربعاء","خميس","جمعة","سبت","أحد"],daysMin:["ح","ن","ث","ع","خ","ج","س","ح"],months:["يناير","فبراير","مارس","أبريل","مايو","يونيو","يوليو","أغسطس","سبتمبر","أكتوبر","نوفمبر","ديسمبر"],monthsShort:["يناير","فبراير","مارس","أبريل","مايو","يونيو","يوليو","أغسطس","سبتمبر","أكتوبر","نوفمبر","ديسمبر"],today:"هذا اليوم",rtl:!0}}(jQuery); -------------------------------------------------------------------------------- /ext/datepicker/locales/bootstrap-datepicker.me.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.me={days:["Nedjelja","Ponedjeljak","Utorak","Srijeda","Četvrtak","Petak","Subota"],daysShort:["Ned","Pon","Uto","Sri","Čet","Pet","Sub"],daysMin:["Ne","Po","Ut","Sr","Če","Pe","Su"],months:["Januar","Februar","Mart","April","Maj","Jun","Jul","Avgust","Septembar","Oktobar","Novembar","Decembar"],monthsShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Avg","Sep","Okt","Nov","Dec"],today:"Danas",weekStart:1,clear:"Izbriši",format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /ext/datepicker/locales/bootstrap-datepicker.no.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.no={days:["Søndag","Mandag","Tirsdag","Onsdag","Torsdag","Fredag","Lørdag"],daysShort:["Søn","Man","Tir","Ons","Tor","Fre","Lør"],daysMin:["Sø","Ma","Ti","On","To","Fr","Lø"],months:["Januar","Februar","Mars","April","Mai","Juni","Juli","August","September","Oktober","November","Desember"],monthsShort:["Jan","Feb","Mar","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Des"],today:"I dag",clear:"Nullstill",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /includes/languages/english/modules/content/index_nested/cm_in_title.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 | 5 |
6 | 7 | 8 | 20 | -------------------------------------------------------------------------------- /includes/modules/content/index_nested/templates/tpl_cm_in_category_description.php: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 |
5 |
6 | 7 | 19 | -------------------------------------------------------------------------------- /includes/modules/customer_data/templates/tpl_cd_whole_row_input.php: -------------------------------------------------------------------------------- 1 | 13 |
14 | 15 |
16 |
17 | -------------------------------------------------------------------------------- /admin/includes/languages/english/modules/security_check/extended_last_run.php: -------------------------------------------------------------------------------- 1 | 15 | -------------------------------------------------------------------------------- /ext/datepicker/locales/bootstrap-datepicker.pt.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.pt={days:["Domingo","Segunda","Terça","Quarta","Quinta","Sexta","Sábado"],daysShort:["Dom","Seg","Ter","Qua","Qui","Sex","Sáb"],daysMin:["Do","Se","Te","Qu","Qu","Se","Sa"],months:["Janeiro","Fevereiro","Março","Abril","Maio","Junho","Julho","Agosto","Setembro","Outubro","Novembro","Dezembro"],monthsShort:["Jan","Fev","Mar","Abr","Mai","Jun","Jul","Ago","Set","Out","Nov","Dez"],today:"Hoje",monthsTitle:"Meses",clear:"Limpar",format:"dd/mm/yyyy"}}(jQuery); -------------------------------------------------------------------------------- /ext/datepicker/locales/bootstrap-datepicker.ru.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.ru={days:["Воскресенье","Понедельник","Вторник","Среда","Четверг","Пятница","Суббота"],daysShort:["Вск","Пнд","Втр","Срд","Чтв","Птн","Суб"],daysMin:["Вс","Пн","Вт","Ср","Чт","Пт","Сб"],months:["Январь","Февраль","Март","Апрель","Май","Июнь","Июль","Август","Сентябрь","Октябрь","Ноябрь","Декабрь"],monthsShort:["Янв","Фев","Мар","Апр","Май","Июн","Июл","Авг","Сен","Окт","Ноя","Дек"],today:"Сегодня",clear:"Очистить",format:"dd.mm.yyyy",weekStart:1}}(jQuery); -------------------------------------------------------------------------------- /includes/apps/braintree_cc/Braintree/SignatureService.php: -------------------------------------------------------------------------------- 1 | key = $key; 9 | $this->digest = $digest; 10 | } 11 | 12 | public function sign($payload) 13 | { 14 | return $this->hash($payload) . "|" . $payload; 15 | } 16 | 17 | public function hash($data) 18 | { 19 | return call_user_func($this->digest, $this->key, $data); 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /includes/languages/english/modules/content/account/cm_account_title.php: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 |
5 |
6 | 7 |
8 | 9 | 10 | 22 | -------------------------------------------------------------------------------- /address_book.php: -------------------------------------------------------------------------------- 1 | register_pipeline('loginRequired'); 16 | 17 | require language::map_to_translation('address_book.php'); 18 | 19 | require $oscTemplate->map_to_template(__FILE__, 'page'); 20 | 21 | require 'includes/application_bottom.php'; 22 | -------------------------------------------------------------------------------- /includes/classes/actions.php: -------------------------------------------------------------------------------- 1 | register_pipeline('loginRequired'); 16 | 17 | require language::map_to_translation('account_history.php'); 18 | 19 | require $oscTemplate->map_to_template(__FILE__, 'page'); 20 | 21 | require 'includes/application_bottom.php'; 22 | -------------------------------------------------------------------------------- /admin/includes/languages/english/modules/security_check/config_file_catalog.php: -------------------------------------------------------------------------------- 1 | 15 | -------------------------------------------------------------------------------- /ext/datepicker/locales/bootstrap-datepicker.it-CH.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.it={days:["Domenica","Lunedì","Martedì","Mercoledì","Giovedì","Venerdì","Sabato"],daysShort:["Dom","Lun","Mar","Mer","Gio","Ven","Sab"],daysMin:["Do","Lu","Ma","Me","Gi","Ve","Sa"],months:["Gennaio","Febbraio","Marzo","Aprile","Maggio","Giugno","Luglio","Agosto","Settembre","Ottobre","Novembre","Dicembre"],monthsShort:["Gen","Feb","Mar","Apr","Mag","Giu","Lug","Ago","Set","Ott","Nov","Dic"],today:"Oggi",clear:"Cancella",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /ext/datepicker/locales/bootstrap-datepicker.pt-BR.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates["pt-BR"]={days:["Domingo","Segunda","Terça","Quarta","Quinta","Sexta","Sábado"],daysShort:["Dom","Seg","Ter","Qua","Qui","Sex","Sáb"],daysMin:["Do","Se","Te","Qu","Qu","Se","Sa"],months:["Janeiro","Fevereiro","Março","Abril","Maio","Junho","Julho","Agosto","Setembro","Outubro","Novembro","Dezembro"],monthsShort:["Jan","Fev","Mar","Abr","Mai","Jun","Jul","Ago","Set","Out","Nov","Dez"],today:"Hoje",monthsTitle:"Meses",clear:"Limpar",format:"dd/mm/yyyy"}}(jQuery); -------------------------------------------------------------------------------- /ext/datepicker/locales/bootstrap-datepicker.uk.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.uk={days:["Неділя","Понеділок","Вівторок","Середа","Четвер","П'ятниця","Субота"],daysShort:["Нед","Пнд","Втр","Срд","Чтв","Птн","Суб"],daysMin:["Нд","Пн","Вт","Ср","Чт","Пт","Сб"],months:["Cічень","Лютий","Березень","Квітень","Травень","Червень","Липень","Серпень","Вересень","Жовтень","Листопад","Грудень"],monthsShort:["Січ","Лют","Бер","Кві","Тра","Чер","Лип","Сер","Вер","Жов","Лис","Гру"],today:"Сьогодні",clear:"Очистити",format:"dd.mm.yyyy",weekStart:1}}(jQuery); -------------------------------------------------------------------------------- /ext/datepicker/locales/bootstrap-datepicker.vi.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.vi={days:["Chủ nhật","Thứ hai","Thứ ba","Thứ tư","Thứ năm","Thứ sáu","Thứ bảy"],daysShort:["CN","Thứ 2","Thứ 3","Thứ 4","Thứ 5","Thứ 6","Thứ 7"],daysMin:["CN","T2","T3","T4","T5","T6","T7"],months:["Tháng 1","Tháng 2","Tháng 3","Tháng 4","Tháng 5","Tháng 6","Tháng 7","Tháng 8","Tháng 9","Tháng 10","Tháng 11","Tháng 12"],monthsShort:["Th1","Th2","Th3","Th4","Th5","Th6","Th7","Th8","Th9","Th10","Th11","Th12"],today:"Hôm nay",clear:"Xóa",format:"dd/mm/yyyy"}}(jQuery); -------------------------------------------------------------------------------- /includes/apps/paypal/admin/actions/configure/install.php: -------------------------------------------------------------------------------- 1 | install($current_module); 14 | 15 | $OSCOM_PayPal->addAlert($OSCOM_PayPal->getDef('alert_module_install_success'), 'success'); 16 | 17 | tep_redirect(tep_href_link('paypal.php', 'action=configure&module=' . $current_module)); 18 | ?> 19 | -------------------------------------------------------------------------------- /includes/apps/paypal/languages/english/admin/log.php: -------------------------------------------------------------------------------- 1 | heading_log = Paypal Log 2 | heading_log_view = Log Closeup 3 | 4 | table_heading_action = Action 5 | table_heading_ip = IP 6 | table_heading_customer = Customer 7 | table_heading_date = Date 8 | 9 | guest = Guest 10 | 11 | no_entries = No log entries found. 12 | 13 | listing_number_of_log_entries = Displaying %d to %d (of %d entries) 14 | 15 | table_heading_entries_request = Request 16 | table_heading_entries_response = Response 17 | -------------------------------------------------------------------------------- /includes/hooks/admin/siteWide/tooltip.php: -------------------------------------------------------------------------------- 1 | 18 | $(function () { 19 | $('[data-toggle="tooltip"]').tooltip() 20 | }) 21 | 22 | tt; 23 | 24 | return $tooltip; 25 | } 26 | 27 | } 28 | -------------------------------------------------------------------------------- /includes/languages/english/modules/boxes/bm_order_history.php: -------------------------------------------------------------------------------- 1 | get('greeting') 14 | . MODULE_NOTIFICATIONS_CREATE_ACCOUNT_WELCOME 15 | . MODULE_NOTIFICATIONS_CREATE_ACCOUNT_TEXT 16 | . MODULE_NOTIFICATIONS_CREATE_ACCOUNT_CONTACT 17 | . MODULE_NOTIFICATIONS_CREATE_ACCOUNT_WARNING; 18 | ?> -------------------------------------------------------------------------------- /ext/datepicker/locales/bootstrap-datepicker.eo.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.eo={days:["dimanĉo","lundo","mardo","merkredo","ĵaŭdo","vendredo","sabato"],daysShort:["dim.","lun.","mar.","mer.","ĵaŭ.","ven.","sam."],daysMin:["d","l","ma","me","ĵ","v","s"],months:["januaro","februaro","marto","aprilo","majo","junio","julio","aŭgusto","septembro","oktobro","novembro","decembro"],monthsShort:["jan.","feb.","mar.","apr.","majo","jun.","jul.","aŭg.","sep.","okt.","nov.","dec."],today:"Hodiaŭ",clear:"Nuligi",weekStart:1,format:"yyyy-mm-dd"}}(jQuery); -------------------------------------------------------------------------------- /ext/datepicker/locales/bootstrap-datepicker.es.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.es={days:["Domingo","Lunes","Martes","Miércoles","Jueves","Viernes","Sábado"],daysShort:["Dom","Lun","Mar","Mié","Jue","Vie","Sáb"],daysMin:["Do","Lu","Ma","Mi","Ju","Vi","Sa"],months:["Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre"],monthsShort:["Ene","Feb","Mar","Abr","May","Jun","Jul","Ago","Sep","Oct","Nov","Dic"],today:"Hoy",monthsTitle:"Meses",clear:"Borrar",weekStart:1,format:"dd/mm/yyyy"}}(jQuery); -------------------------------------------------------------------------------- /ext/datepicker/locales/bootstrap-datepicker.fr-CH.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.fr={days:["Dimanche","Lundi","Mardi","Mercredi","Jeudi","Vendredi","Samedi"],daysShort:["Dim","Lun","Mar","Mer","Jeu","Ven","Sam"],daysMin:["D","L","Ma","Me","J","V","S"],months:["Janvier","Février","Mars","Avril","Mai","Juin","Juillet","Août","Septembre","Octobre","Novembre","Décembre"],monthsShort:["Jan","Fév","Mar","Avr","Mai","Jui","Jul","Aou","Sep","Oct","Nov","Déc"],today:"Aujourd'hui",monthsTitle:"Mois",clear:"Effacer",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /includes/apps/braintree_cc/Braintree/Exception/NotFound.php: -------------------------------------------------------------------------------- 1 | uninstall($current_module); 14 | 15 | $OSCOM_PayPal->addAlert($OSCOM_PayPal->getDef('alert_module_uninstall_success'), 'success'); 16 | 17 | tep_redirect(tep_href_link('paypal.php', 'action=configure&module=' . $current_module)); 18 | ?> 19 | -------------------------------------------------------------------------------- /includes/modules/content/index_products/templates/tpl_cm_ip_category_manufacturer_description.php: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 |
5 |
6 | 7 | 19 | -------------------------------------------------------------------------------- /ext/datepicker/locales/bootstrap-datepicker.ca.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.ca={days:["Diumenge","Dilluns","Dimarts","Dimecres","Dijous","Divendres","Dissabte"],daysShort:["Diu","Dil","Dmt","Dmc","Dij","Div","Dis"],daysMin:["dg","dl","dt","dc","dj","dv","ds"],months:["Gener","Febrer","Març","Abril","Maig","Juny","Juliol","Agost","Setembre","Octubre","Novembre","Desembre"],monthsShort:["Gen","Feb","Mar","Abr","Mai","Jun","Jul","Ago","Set","Oct","Nov","Des"],today:"Avui",monthsTitle:"Mesos",clear:"Esborrar",weekStart:1,format:"dd/mm/yyyy"}}(jQuery); -------------------------------------------------------------------------------- /ext/datepicker/locales/bootstrap-datepicker.de.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.de={days:["Sonntag","Montag","Dienstag","Mittwoch","Donnerstag","Freitag","Samstag"],daysShort:["Son","Mon","Die","Mit","Don","Fre","Sam"],daysMin:["So","Mo","Di","Mi","Do","Fr","Sa"],months:["Januar","Februar","März","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember"],monthsShort:["Jan","Feb","Mär","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Dez"],today:"Heute",monthsTitle:"Monate",clear:"Löschen",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); -------------------------------------------------------------------------------- /ext/datepicker/locales/bootstrap-datepicker.hy.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.hy={days:["Կիրակի","Երկուշաբթի","Երեքշաբթի","Չորեքշաբթի","Հինգշաբթի","Ուրբաթ","Շաբաթ"],daysShort:["Կրկ","Երկ","Երք","Չրք","Հնգ","Ուր","Շբթ"],daysMin:["Կրկ","Երկ","Երք","Չրք","Հնգ","Ուր","Շբթ"],months:["Հունվար","Փետրվար","Մարտ","Ապրիլ","Մայիս","Հունիս","Հուլիս","Օգոստոս","Սեպտեմբեր","Հոկտեմբեր","Նոյեմբեր","Դեկտեմբեր"],monthsShort:["Հուն","Փետ","Մար","Ապր","Մայ","Հնս","Հլս","Օգս","Սեպ","Հոկ","Նմբ","Դեկ"],today:"Այսօր",clear:"Ջնջել",format:"dd.mm.yyyy",weekStart:1}}(jQuery); -------------------------------------------------------------------------------- /ext/datepicker/locales/bootstrap-datepicker.ka.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.fn.datepicker.dates.ka={days:["კვირა","ორშაბათი","სამშაბათი","ოთხშაბათი","ხუთშაბათი","პარასკევი","შაბათი"],daysShort:["კვი","ორშ","სამ","ოთხ","ხუთ","პარ","შაბ"],daysMin:["კვ","ორ","სა","ოთ","ხუ","პა","შა"],months:["იანვარი","თებერვალი","მარტი","აპრილი","მაისი","ივნისი","ივლისი","აგვისტო","სექტემბერი","ოქტომები","ნოემბერი","დეკემბერი"],monthsShort:["იან","თებ","მარ","აპრ","მაი","ივნ","ივლ","აგვ","სექ","ოქტ","ნოე","დეკ"],today:"დღეს",clear:"გასუფთავება",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); --------------------------------------------------------------------------------