Production release

This commit is contained in:
“VeLiTi”
2025-08-12 15:04:56 +02:00
parent 580f835fff
commit 60a32a7ff9
33 changed files with 2030 additions and 5494 deletions

View File

@@ -5,12 +5,12 @@ define('security_key','MorvalWatches');
define('site_name','MorvalWatches');
// This will change the title on browser TAB
define('site_title','MorvalWatches');
// Currency code, default is USD, you can view the list here: http://cactus.io/resources/toolbox/html-currency-symbol-codes
// Currency code, default is USD
define('currency_code','€');
//Default Countrycode during checkout
define('country_default','');
define('country_default','nl');
//Default language for translations -> refers to include file translations_XX.php
define('language_code','US');
define('language_code','NL');
// Default age verification
define('age_verification_enabled',false);
//Enable VeLiTi-analytics
@@ -66,10 +66,7 @@ define('default_payment_status','New');
define('account_required',false);
// Default product sort
define('default_product_sort','sort3');
// Enable automatice invoice forward to bookkeeping software
define('invoice_bookkeeping',false);
// Email of bookkeeping software
define('email_bookkeeping','morval-wat-d24506a2@facturen.moneybird.nl');
// Rewrite URL?
define('rewrite_url',true);
@@ -122,7 +119,7 @@ define('company_kvk','89442679');
define('footer_city','St Oedenrode');
define('footer_country','Netherlands');
define('footer_phone','Tel: +31 639725831');
define('footer_phone','31639725831');
define('footer_email','info@morvalwatches.com');
/* Email */
@@ -133,13 +130,17 @@ define('mail_enabled',true);
// Your email
define('email','info@morvalwatches.com');
// Receive email notifications?
define('email_notifications',true);
define('email_notifications',false);
//Additional phpmailer-settings
define('email_host_name','morvalwatches.com');
define('email_reply_to','info@morvalwatches.com');
define('email_outgoing_pw','MWTH#2024');
define('email_outgoing_port','465');
define('email_outgoing_security','ssl');
// Enable automatice invoice forward to bookkeeping software
define('invoice_bookkeeping',false);
// Email of bookkeeping software
define('email_bookkeeping','morval-wat-d24506a2@facturen.moneybird.nl');
/* Database */
// Database hostname, don't change this unless your hostname is different
@@ -154,8 +155,8 @@ define('db_name','shoppingcart_advanced'); //morvalwatches
/* API */
define('clientID','MorvalWatches'); //morvalwatches
define('clientsecret','MW2024!'); //morvalwatches
define('api_url','https://dev.veliti.nl/api.php'); //morvalwatches
define('img_url','https://dev.veliti.nl/');
define('api_url','https://cloud.soveliti.nl/api.php'); //morvalwatches
define('img_url','https://cloud.soveliti.nl');
/* Payment options */
//Pay on Delivery
@@ -163,12 +164,12 @@ define('pay_on_delivery_enabled',false);
define('pay_on_delivery_default',false);
// Mollie
define('mollie_enabled',true);
define('mollie_default',false);
define('mollie_default',true);
define('mollie_api_key','test_TBJPkq6E3Tn6kuCjqQFv9PBGu52Ac8'); //live_m2mbPTnvVzF4tUu25mtHja6D8vHkfM
// Accept payments with PayPal?
define('paypal_enabled',true);
define('paypal_default',true);
define('paypal_default',false);
define('PAYPAL_URL','https://api-m.paypal.com');
define('PAYPAL_WEBHOOK','https://www.morvalwatches.com/webhook_paypal.php');
define('PAYPAL_CLIENT_ID','Afty4hhP24gHyVDXGIh1gMNlBZRZd6H2JB4V9fxYs7sS2IdZWa_I0B5mLxCMcwdp1pNIa_cEiXYPB5PO');

View File

@@ -2,12 +2,35 @@
//COUNTRIES IN SCOPE
$countries_in_scope = array (
1 => 'Austria',
2 => 'Belgium',
3 => 'Bulgaria',
4 => 'Cyprus',
5 => 'Czech Republic',
6 => 'Germany',
7 => 'Denmark',
8 => 'Estonia',
9 => 'Greece',
10 => 'Spain',
11 => 'Finland',
12 => 'France',
13 => 'Croatia (Hrvatska)',
14 => 'Hungary',
15 => 'Ireland',
16 => 'Italy',
17 => 'Lithuania',
18 => 'Luxembourg',
19 => 'Latvia',
20 => 'Malta',
21 => 'Netherlands',
22 => 'Poland',
23 => 'Portugal',
24 => 'Romania',
25 => 'Sweden',
26 => 'Slovenia',
27 => 'Slovakia (Slovak Republic)',
28 => 'United States',
29 => 'Outside Europe',
30 => 'Other',
);
?>

View File

@@ -0,0 +1,13 @@
<?php
// Define available languages mapping from country codes
$available_languages = [
'1' => 'DE',
'2' => 'NL',
'6' => 'DE',
'10' => 'ES',
'12' => 'FR',
'21' => 'NL'
];
?>