File: //var/softaculous/clicshop/clicshop.sql
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
--
-- Database: `clicshop4121`
--
-- --------------------------------------------------------
--
-- Table structure for table `clic_action_recorder`
--
CREATE TABLE `clic_action_recorder` (
`id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each recorded action',
`module` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Module name that triggered the action - e.g. login, password_reset, api_access',
`user_id` int DEFAULT NULL COMMENT 'FK to customers or administrators table - user who performed action, null for anonymous',
`user_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Username or email of user who performed action',
`identifier` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Unique identifier for tracking - IP address, session ID, or user identifier',
`success` char(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Action result - 1: success, 0: failure',
`date_added` datetime NOT NULL COMMENT 'Timestamp when action was recorded',
PRIMARY KEY (`id`),
KEY `idx_action_recorder_module` (`module`),
KEY `idx_action_recorder_user_id` (`user_id`),
KEY `idx_action_recorder_identifier` (`identifier`),
KEY `idx_action_recorder_date_added` (`date_added`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `clic_address_book`
--
CREATE TABLE `clic_address_book` (
`address_book_id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each address',
`customers_id` int NOT NULL COMMENT 'FK to customers table - customer who owns this address',
`entry_gender` char(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Gender for address - m: male, f: female, o: other',
`entry_company` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Company name for business addresses',
`entry_siret` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'French SIRET business registration number',
`entry_ape` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'French APE business activity code',
`entry_tva_intracom` varchar(14) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Intra-community VAT number for EU businesses',
`entry_cf` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Italian Codice Fiscale - tax identification number',
`entry_piva` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Italian Partita IVA - VAT number',
`entry_firstname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'First name of address recipient',
`entry_lastname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Last name of address recipient',
`entry_street_address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Street address line',
`entry_suburb` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Suburb or district',
`entry_postcode` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Postal code or ZIP code',
`entry_city` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'City name',
`entry_state` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'State or province name',
`entry_country_id` int NOT NULL DEFAULT '0' COMMENT 'FK to countries table - country identifier',
`entry_zone_id` int NOT NULL DEFAULT '0' COMMENT 'FK to zones table - zone/region identifier',
`entry_telephone` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Contact telephone number for this address',
PRIMARY KEY (`address_book_id`),
KEY `idx_address_book_customers_id` (`customers_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Customer address book entries for shipping and billing addresses';
-- --------------------------------------------------------
--
-- Table structure for table `clic_address_format`
--
CREATE TABLE `clic_address_format` (
`address_format_id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each address format',
`address_format` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Template for formatting full addresses - uses placeholders for address components',
`address_summary` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Template for formatting short address summaries',
PRIMARY KEY (`address_format_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Address formatting templates for different countries and regions' AUTO_INCREMENT=7 ;
--
-- Dumping data for table `clic_address_format`
--
INSERT INTO `clic_address_format` VALUES
(1, '$firstname $lastname$cr$streets$cr$city, $postcode$cr$statecomma$country', '$city / $country'),
(2, '$firstname $lastname$cr$streets$cr$city, $state $postcode$cr$country', '$city, $state / $country'),
(3, '$firstname $lastname$cr$streets$cr$city$cr$postcode - $statecomma$country', '$state / $country'),
(4, '$firstname $lastname$cr$streets$cr$city ($postcode)$cr$country', '$postcode / $country'),
(5, '$firstname $lastname$cr$streets$cr$postcode $city$cr$country', '$city / $country'),
(6, '$firstname $lastname$cr$streets$cr$postcode $city$cr$statecomma$country', '$city / $country');
-- --------------------------------------------------------
--
-- Table structure for table `clic_administrators`
--
CREATE TABLE `clic_administrators` (
`id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each administrator',
`user_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Administrator username for login - must be unique',
`user_password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Hashed administrator password',
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Administrator last name',
`first_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Administrator first name',
`access` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Access level - 0: limited, 1: full access',
`double_authentification_secret` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Secret key for two-factor authentication - TOTP',
`status` tinyint(1) NOT NULL DEFAULT '1' COMMENT 'Administrator account status - 0: disabled, 1: active',
`date_added` datetime NOT NULL COMMENT 'Timestamp when administrator account was created',
`last_modified` datetime DEFAULT NULL COMMENT 'Timestamp of last account modification',
`email_verification` tinyint(1) NOT NULL DEFAULT '1' COMMENT 'Email verification requirement - 0: not required, 1: required',
`email_verification_code` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Temporary code for email verification',
`email_verification_expiry` datetime DEFAULT NULL COMMENT 'Expiration timestamp for verification code',
PRIMARY KEY (`id`),
KEY `idx_id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Administrator accounts with authentication and access control' AUTO_INCREMENT=2 ;
--
-- Dumping data for table `clic_administrators`
--
INSERT INTO `clic_administrators` VALUES
(1, '[[admin_email]]', '[[admin_pass]]', '[[admin_username]]', '[[admin_fname]]', 1, NULL, 1, '[[regtime]]', NULL, 1, NULL, NULL);
-- --------------------------------------------------------
--
-- Table structure for table `clic_administrator_menu`
--
CREATE TABLE `clic_administrator_menu` (
`id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each menu item',
`link` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'URL or route for the menu item',
`parent_id` int NOT NULL DEFAULT '0' COMMENT 'FK to administrator_menu.id - parent menu item for hierarchical structure, 0 for top-level',
`sort_order` int DEFAULT NULL COMMENT 'Display order of menu items within same parent level',
`access` tinyint(1) DEFAULT NULL COMMENT 'Access control flag - 0: no special access required, 1: restricted access',
`image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Icon or image path for menu item display',
`b2b_menu` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'B2B visibility flag - 0: all users, 1: B2B users only',
`app_code` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Application module code this menu item belongs to',
`status` tinyint(1) DEFAULT '1' COMMENT 'Menu item status - 0: disabled, 1: enabled',
PRIMARY KEY (`id`),
KEY `idx_categories_parent_id` (`parent_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=810 ;
--
-- Dumping data for table `clic_administrator_menu`
--
INSERT INTO `clic_administrator_menu` VALUES
(1, '', 0, 0, 0, '', 0, NULL, 1),
(2, '', 0, 1, 1, '', 0, NULL, 1),
(3, '', 0, 2, 0, NULL, 0, NULL, 1),
(4, '', 0, 3, 0, NULL, 0, NULL, 1),
(5, '', 0, 4, 0, NULL, 0, NULL, 1),
(6, '', 0, 5, 0, NULL, 0, NULL, 1),
(7, '', 0, 6, 0, NULL, 0, NULL, 1),
(8, '', 0, 7, 0, NULL, 0, NULL, 1),
(11, 'index.php', 1, 0, 0, 'configuration_admin.gif', 0, NULL, 1),
(12, '../', 1, 0, 0, 'configuration.gif', 0, NULL, 1),
(13, '', 2, 0, 0, 'configuration.gif', 0, NULL, 1),
(14, '', 2, 1, 0, 'configuration_admin.gif', 0, NULL, 1),
(15, '', 2, 2, 0, 'configuration_b2c.gif', 0, NULL, 1),
(16, '', 2, 3, 0, 'configuration_b2b.gif', 1, NULL, 1),
(18, '', 2, 5, 0, 'referencement.gif', 0, NULL, 1),
(19, '', 2, 6, 0, 'configuration_lieu_taxe.gif', 0, NULL, 1),
(20, '', 2, 7, 0, 'configuration_localisation.gif', 0, NULL, 1),
(21, '', 2, 8, 1, 'configuration_session.gif', 0, NULL, 1),
(22, 'index.php?A&Configuration\\Settings&Settings&gID=1', 13, 0, 0, 'configuration.gif', 0, NULL, 1),
(23, 'index.php?A&Configuration\\Settings&Settings&gID=25', 13, 1, 0, 'configuration_25.gif', 0, NULL, 1),
(24, 'index.php?A&Configuration\\Settings&Settings&gID=2', 13, 2, 0, 'modules_payment.gif', 0, NULL, 1),
(25, 'index.php?A&Configuration\\Settings&Settings&gID=34', 13, 3, 0, 'configuration_34.gif', 0, NULL, 1),
(26, 'index.php?A&Configuration\\Settings&Settings&gID=3', 13, 4, 0, 'configuration_3', 0, NULL, 1),
(27, 'index.php?A&Configuration\\Settings&Settings&gID=7', 13, 5, 0, 'configuration_7.gif', 0, NULL, 1),
(28, 'index.php?A&Configuration\\Settings&Settings&gID=9', 13, 6, 0, 'configuration_9.gif', 0, NULL, 1),
(30, 'index.php?A&Configuration\\Settings&Settings&gID=12', 13, 8, 0, 'configuration_12.gif', 0, NULL, 1),
(31, 'index.php?A&Configuration\\Settings&Settings&gID=13', 13, 9, 0, 'configuration_13.gif', 0, NULL, 1),
(33, 'index.php?A&Configuration\\Modules&Modules&set=dashboard', 14, 1, 0, 'configuration_admin.gif', 0, NULL, 1),
(34, 'index.php?A&Configuration\\Settings&Settings&gID=21', 14, 2, 0, 'configuration_3.gif', 0, NULL, 1),
(35, 'index.php?A&Configuration\\Settings&Settings&gID=23', 14, 3, 0, 'configuration_4.gif', 0, NULL, 1),
(39, 'index.php?A&Configuration\\Settings&Settings&gID=26', 14, 7, 0, 'order_status_invoice.png', 0, NULL, 1),
(42, 'index.php?A&Configuration\\Settings&Settings&gID=36', 14, 10, 1, 'configuration_36.png', 0, NULL, 1),
(44, 'index.php?A&Configuration\\Settings&Settings&gID=45', 14, 12, 1, 'configuration_45.png', 0, NULL, 1),
(45, 'index.php?A&Configuration\\Settings&Settings&gID=22', 15, 0, 0, 'configuration_17.gif', 0, NULL, 1),
(46, 'index.php?A&Configuration\\Settings&Settings&gID=5', 15, 1, 0, 'configuration_5.gif', 0, NULL, 1),
(47, 'index.php?A&Configuration\\Settings&Settings&gID=16', 15, 2, 0, 'configuration_16.gif', 0, NULL, 1),
(48, 'index.php?A&Configuration\\Settings&Settings&gID=17', 16, 0, 0, 'configuration_17.gif', 0, NULL, 1),
(49, 'index.php?A&Configuration\\Settings&Settings&gID=18', 16, 1, 0, 'configuration_18.gif', 0, NULL, 1),
(50, 'index.php?A&Configuration\\Settings&Settings&gID=19', 16, 2, 0, 'configuration_19.gif', 0, NULL, 1),
(51, 'index.php?A&Configuration\\Settings&Settings&gID=20', 16, 3, 0, 'configuration_20.gif', 0, NULL, 1),
(54, 'index.php?A&Configuration\\Modules&Modules&set=shipping', 449, 2, 1, 'modules_shipping.gif', 0, NULL, 1),
(55, 'index.php?A&Configuration\\Modules&Modules&set=order_total', 451, 0, 1, 'modules_order_total.gif', 0, NULL, 1),
(59, 'index.php?A&Configuration\\Modules&Modules&set=header_tags', 18, 2, 0, 'referencement.gif', 0, NULL, 1),
(69, 'index.php?A&Configuration\\Settings&Settings&gID=14', 21, 1, 0, 'configuration_14.gif', 0, NULL, 1),
(70, 'index.php?A&Configuration\\Settings&Settings&gID=10', 21, 2, 0, 'configuration_10.gif', 0, NULL, 1),
(71, 'index.php?A&Configuration\\Settings&Settings&gID=15', 21, 3, 0, 'configuration_15.gif', 0, NULL, 1),
(75, 'index.php?A&Catalog\\ProductsAttributes&ProductsAttributes', 3, 7, 0, 'products_option.gif', 0, 'app_catalog_products_attributes', 1),
(98, '', 7, 0, 0, 'stats_products.png', 0, NULL, 1),
(103, '', 7, 1, 0, 'stats_financial.png', 0, NULL, 1),
(107, '', 7, 2, 0, 'wharehouse.png', 0, NULL, 1),
(116, '', 8, 0, 0, 'configuration_43.gif', 0, NULL, 1),
(117, '', 8, 1, 0, 'configuration_session.gif', 0, NULL, 1),
(118, '', 8, 2, 0, 'page_manager.gif', 0, NULL, 1),
(119, '', 8, 3, 0, 'client.gif', 0, NULL, 1),
(120, '', 8, 4, 0, 'order_process.png', 0, NULL, 1),
(121, 'index.php?A&Configuration\\Modules&Modules&set=modules_products_info', 8, 5, 0, 'categorie_produit.gif', 0, NULL, 1),
(122, '', 8, 6, 0, 'communication.png', 0, NULL, 1),
(123, '', 8, 7, 0, 'miscellaneous.png', 0, NULL, 1),
(124, '', 8, 8, 0, 'layout.png', 0, NULL, 1),
(125, 'index.php?A&Configuration\\Settings&Settings&gID=43', 116, 0, 0, 'configuration_43.gif', 0, NULL, 1),
(126, 'index.php?A&Configuration\\Settings&Settings&gID=4', 116, 1, 0, 'configuration_4.gif', 0, NULL, 1),
(127, 'index.php?A&Configuration\\Modules&Modules&set=modules_products_new', 117, 0, 0, 'listing_products_new.gi', 0, NULL, 1),
(130, 'index.php?A&Configuration\\Modules&Modules&set=modules_products_special', 117, 3, 0, 'specials.gif', 0, NULL, 1),
(131, 'index.php?A&Configuration\\Modules&Modules&set=modules_products_search', 117, 4, 0, 'icon_search.png', 0, NULL, 1),
(132, 'index.php?A&Configuration\\Modules&Modules&set=modules_products_listing', 117, 5, 0, 'configuration_session.gif', 0, NULL, 1),
(133, 'index.php?A&Configuration\\Modules&Modules&set=modules_products_listing', 132, 0, 0, 'products_listing.gif', 0, NULL, 1),
(134, 'index.php?A&Configuration\\Settings&Settings&gID=8', 132, 1, 0, 'configuration_8.png', 0, NULL, 1),
(135, 'index.php?A&Configuration\\Modules&Modules&set=modules_front_page', 118, 0, 0, 'page_manager.gif', 0, NULL, 1),
(136, 'index.php?A&Configuration\\Modules&Modules&set=modules_index_categories', 118, 1, 0, 'categorie.gif', 0, NULL, 1),
(137, 'index.php?A&Configuration\\Modules&Modules&set=modules_create_account', 119, 0, 0, 'client.gif', 0, NULL, 1),
(138, 'index.php?A&Configuration\\Modules&Modules&set=modules_create_account_pro', 119, 1, 0, 'whos_online.gif', 0, NULL, 1),
(139, 'index.php?A&Configuration\\Modules&Modules&set=modules_login', 119, 2, 0, 'client.gif', 0, NULL, 1),
(140, 'index.php?A&Configuration\\Modules&Modules&set=modules_account_customers', 119, 3, 0, 'whos_online.gif', 0, NULL, 1),
(141, 'index.php?A&Configuration\\Modules&Modules&set=modules_shopping_cart', 120, 0, 0, 'shopping_cart.png', 0, NULL, 1),
(142, 'index.php?A&Configuration\\Modules&Modules&set=modules_checkout_shipping', 120, 1, 0, 'modules_shipping.gif', 0, NULL, 1),
(143, 'index.php?A&Configuration\\Modules&Modules&set=modules_checkout_payment', 120, 2, 0, 'modules_payment.gif', 0, NULL, 1),
(144, 'index.php?A&Configuration\\Modules&Modules&set=modules_checkout_confirmation', 120, 3, 0, 'modules_checkout_confirmation.png', 0, NULL, 1),
(145, 'index.php?A&Configuration\\Modules&Modules&set=modules_checkout_success', 120, 4, 0, 'modules_checkout_sucess.png', 0, NULL, 1),
(146, 'index.php?A&Configuration\\Modules&Modules&set=modules_contact_us', 122, 0, 0, 'email.gif', 0, NULL, 1),
(150, 'index.php?A&Configuration\\Modules&Modules&set=modules_tell_a_friend', 122, 2, 0, 'tellafriend.png', 0, NULL, 1),
(152, 'index.php?A&Configuration\\Modules&Modules&set=modules_products_reviews', 122, 4, 0, 'reviews.gif', 0, NULL, 1),
(153, 'index.php?A&Configuration\\Settings&Settings&gID=32', 122, 5, 0, 'reviews.gif', 0, NULL, 1),
(154, 'index.php?A&Configuration\\Modules&Modules&set=modules_advanced_search', 123, 0, 0, 'advanced_search.png', 0, NULL, 1),
(155, 'index.php?A&Configuration\\Modules&Modules&set=modules_sitemap', 123, 1, 0, 'sitemap.png', 0, NULL, 1),
(156, 'index.php?A&Configuration\\Modules&Modules&set=modules_boxes', 124, 0, 0, 'blockmenu.gif', 0, NULL, 1),
(157, 'index.php?A&Configuration\\Modules&Modules&set=modules_header', 124, 1, 0, 'header.png', 0, NULL, 1),
(158, 'index.php?A&Configuration\\Modules&Modules&set=modules_footer', 124, 2, 0, 'footer.png', 0, NULL, 1),
(163, '', 0, 8, 0, '', 0, NULL, 1),
(164, '', 163, 0, 1, 'backup.gif', 0, NULL, 1),
(170, '', 163, 2, 1, 'editor_html.png', 0, NULL, 1),
(175, '', 163, 3, 1, 'configuration_36_over.png', 0, NULL, 1),
(178, '', 163, 20, 1, 'server_info.gif', 0, NULL, 1),
(186, '', 2, 4, 1, 'modules_payment.gif', 0, NULL, 1),
(449, '', 2, 4, 1, 'modules_shipping.gif', 0, NULL, 1),
(451, '', 2, 4, 1, 'modules_order_total.gif', 0, NULL, 1),
(452, 'index.php?A&Payment\\COD&Configure', 186, 4, 1, 'modules_payment.gif', 0, 'app_payment_cod', 1),
(461, 'index.php?A&OrderTotal\\TotalShipping&Configure', 451, 4, 1, 'modules_order_total.gif', 0, 'app_order_total_shipping', 1),
(463, 'index.php?A&OrderTotal\\Total&Configure&module=TO', 451, 6, 1, 'modules_order_total.gif', 0, 'app_order_total_total', 1),
(464, 'index.php?A&OrderTotal\\TotalTax&Configure&module=TX', 451, 5, 1, 'modules_order_total.gif', 0, 'app_order_total_tax', 1),
(465, 'index.php?A&OrderTotal\\SubTotal&Configure', 451, 1, 1, 'modules_order_total.gif', 0, 'app_order_total_subtotal', 1),
(504, '', 163, 11, 1, 'configuration_44.png', 0, NULL, 1),
(581, 'index.php?A&Communication\\Newsletter&Newsletter', 6, 6, 0, 'newsletters.gif', 0, 'app_communication_newsletter', 1),
(583, 'index.php?A&Customers\\Customers&Customers', 4, 1, 0, 'client.gif', 0, 'app_customers_customers', 1),
(586, 'index.php?A&Communication\\EMail&EMail', 6, 6, 0, 'email.gif', 0, 'app_communication_email', 1),
(587, '', 4, 6, 0, 'reviews.gif', 0, 'app_customers_reviews', 1),
(589, 'index.php?A&Customers\\Groups&Groups', 4, 3, 0, 'group_client.gif', 0, 'app_customers_groups', 1),
(590, 'index.php?A&Catalog\\Archive&Archive', 3, 8, 0, 'archive.gif', 0, 'app_catalog_archive', 1),
(592, 'index.php?A&Orders\\Orders&Orders', 4, 0, 0, 'orders.gif', 0, 'app_orders_orders', 1),
(593, 'index.php?A&Customers\\Members&Members', 4, 4, 0, 'group_client.gif', 0, 'app_customers_members', 1),
(594, 'index.php?A&Marketing\\SEO&SEO', 5, 8, 0, 'referencement.gif', 0, 'app_marketing_seo', 1),
(595, 'index.php?A&Communication\\PageManager&PageManager', 6, 0, 0, 'page_manager.gif', 0, 'app_communication_page_manager', 1),
(596, 'index.php?A&Marketing\\BannerManager&BannerManager', 5, 6, 0, 'banner_manager.gif', 0, 'app_marketing_banner_manager', 1),
(598, 'index.php?A&Customers\\Customers&StatsCustomers', 103, 0, 0, 'stats_customers.gif', 0, 'app_report_stats_customers', 1),
(605, 'index.php?A&Catalog\\Products&StatsProductsLowStock', 107, 5, 0, 'stats_customers.gif', 0, 'app_report_stats_low_stock', 1),
(608, 'index.php?A&Catalog\\Products&StatsProductsPurchased', 98, 5, 0, 'stats_products_purchased.gif', 0, 'app_report_stats_products_purchased', 1),
(609, 'index.php?A&Catalog\\Products&StatsProductsViewed', 98, 5, 0, 'stats_products_viewed.gif', 0, 'app_report_stats_products_viewed', 1),
(616, 'index.php?A&Report\\StatsProductsNotification&StatsProductsNotification', 107, 5, 0, 'client.gif', 0, 'app_report_stats_products_notification', 1),
(617, 'index.php?A&Catalog\\Products&StatsProductsExpected', 107, 5, 0, 'products_expected.gif', 0, 'app_report_stats_products_expected', 1),
(626, 'index.php?A&Catalog\\Suppliers&Suppliers', 3, 7, 0, 'suppliers.gif', 0, 'app_catalog_suppliers', 1),
(627, 'index.php?A&Catalog\\Manufacturers&Manufacturers', 3, 6, 0, 'manufacturers.gif', 0, 'app_catalog_manufacturers', 1),
(632, 'index.php?A&Configuration\\TemplateEmail&TemplateEmail', 20, 3, 0, 'mail.gif', 0, 'app_configuration_template_email', 1),
(633, 'index.php?A&Tools\\WhosOnline&WhosOnline', 163, 30, 0, 'whos_online.gif', 0, 'app_tools_whos_online', 1),
(638, 'index.php?A&Tools\\AdministratorMenu&AdministratorMenu', 170, 1, 1, 'menu.png', 0, 'app_configuration_administrator_menu', 1),
(644, '', 163, 1, 1, 'modules_modules_products_featured.gif', 0, 'app_tools_upgrade', 1),
(647, 'index.php?A&Configuration\\ProductsQuantityUnit&ProductsQuantityUnit', 13, 8, 0, 'products_unit.png', 0, 'app_configuration_products_quantity_unit', 1),
(650, 'index.php?A&Configuration\\OrdersStatusInvoice&OrdersStatusInvoice', 14, 7, 0, 'configuration_26.gif', 0, 'app_configuration_orders_status_invoice', 1),
(651, 'index.php?A&Configuration\\OrdersStatus&OrdersStatus', 14, 6, 0, 'order_status.gif', 0, 'app_configuration_orders_status', 1),
(652, 'index.php?A&Configuration\\Countries&Countries', 19, 1, 0, 'countries.gif', 0, 'app_configuration_countries', 1),
(653, 'index.php?A&Configuration\\TaxClass&TaxClass', 19, 2, 0, 'tax_classes.gif', 0, 'app_configuration_tax_class', 1),
(654, 'index.php?A&Configuration\\Zones&Zones', 19, 3, 0, 'zones.gif', 0, 'app_configuration_zones', 1),
(655, 'index.php?A&Configuration\\TaxRates&TaxRates', 19, 4, 0, 'tax_rates.gif', 0, 'app_configuration_tax_rates', 1),
(656, 'index.php?A&Configuration\\TaxGeoZones&TaxGeoZones', 19, 5, 0, 'geo_zones.gif', 0, 'app_configuration_tax_geo_zones', 1),
(657, 'index.php?A&Configuration\\Currency&Currency', 20, 1, 0, 'currencies.gif', 0, 'app_configuration_currency', 1),
(658, 'index.php?A&Tools\\DataBaseTables&DataBaseTables', 164, 3, 1, 'database_analyse.gif', 0, 'app_tools_data_base_tables', 1),
(659, 'index.php?A&Configuration\\Administrators&Administrators', 14, 0, 1, 'administrators.gif', 0, 'app_configuration_administrators', 1),
(663, 'index.php?A&Tools\\Backup&Backup', 164, 3, 1, 'backup.gif', 0, 'app_tools_backup', 1),
(664, 'index.php?A&Tools\\EditLogError&LogError', 178, 5, 1, 'log.png', 0, 'app_tools_edit_log_error', 1),
(665, 'index.php?A&Tools\\SecDirPermissions&SecDirPermissions', 178, 30, 1, 'file_manager.gif', 0, 'app_tools_sec_dir_permissions', 1),
(681, 'index.php?A&Catalog\\Products&Products', 3, 1, 0, 'priceupdate.gif', 0, 'app_catalog_products', 1),
(719, 'index.php?A&Tools\\SecurityCheck&SecurityCheck', 178, 1, 1, 'cybermarketing.gif', 0, 'app_tools_security_check', 1),
(725, 'index.php?A&Tools\\ServiceAPP&ServiceAPP', 727, 3, 0, 'apps.png', 0, 'app_tools_apps', 1),
(727, '', 163, 5, 1, 'modules.gif', 0, NULL, 1),
(728, 'index.php?A&Tools\\ModulesHooks&ModulesHooks', 727, 2, 1, 'hooks.png', 0, 'app_tools_modules_hooks', 1),
(730, 'index.php?A&Configuration\\Modules&Modules&set=payment', 186, 0, 1, 'modules_payment.gif', 0, NULL, 1),
(732, 'index.php?A&Configuration\\Languages&Languages', 19, 1, 1, 'languages.gif', 0, 'app_configuration_languages', 1),
(736, 'index.php?A&Configuration\\Langues&Langues', 20, 1, 1, 'languages.gif', 0, 'app_configuration_langues', 1),
(737, 'index.php?A&Tools\\ActionsRecorder&ActionsRecorder', 178, 1, 1, 'cadenas.gif', 0, 'app_tools_actions_recorder', 1),
(738, 'index.php?A&Configuration\\Cache&Cache', 21, 4, 1, 'cache.gif', 0, 'app_configuration_cache', 1),
(739, 'index.php?A&Tools\\DefineLanguage&DefineLanguage', 170, 1, 1, 'define_language.gif', 0, 'app_tools_define_language', 1),
(742, 'index.php?A&Tools\\ServiceAPP&ServiceAPP', 727, 2, 1, 'service.png', 0, 'app_tools_modules_service', 1),
(756, 'index.php?A&Configuration\\Weight&Weight', 20, 4, 1, 'weight.png', 0, 'app_configuration_weight', 1),
(758, 'index.php?A&Catalog\\Categories&Categories', 3, 0, 0, 'categorie.gif', 0, 'app_catalog_categories', 1),
(766, 'index.php?A&Configuration\\Modules&Modules&set=order_total&list=new', 451, 0, 1, 'modules_order_total.gif', 0, '', NULL),
(767, 'index.php?A&Configuration\\Modules&Modules&set=payment&list=new', 186, 0, 1, 'modules_payment.gif', 0, '', NULL),
(768, 'index.php?A&Configuration\\Modules&Modules&set=shipping&list=new', 449, 0, 1, 'modules_shipping.gif', 0, '', NULL),
(769, '', 2, 4, 1, 'cadenas.gif', 0, '', 1),
(770, 'index.php?A&Configuration%5CModules&Modules&set=action_recorder&list=new', 769, 1, 1, 'cadenas.gif', 0, '', 1),
(771, 'index.php?A&Configuration%5CModules&Modules&set=action_recorder&module=ar_admin_login', 769, 2, 1, 'cadenas.gif', 0, '', 1),
(776, 'index.php?A&Configuration\\ProductsLength&ProductsLength', 20, 4, 1, 'products_length.png', 0, 'app_configuration_products_length', 1),
(777, 'index.php?A&Marketing\\Specials&Specials', 5, 1, 0, 'specials.gif', 0, 'app_marketing_specials', 1),
(778, 'index.php?A&Marketing\\Favorites&Favorites', 5, 1, 0, 'products_favorites.png', 0, 'app_marketing_favorites', 1),
(779, 'index.php?A&Configuration\\Modules&Modules&set=modules_products_favorites', 117, 1, 0, 'products_favorites.png', 0, 'app_marketing_favorites', 1),
(780, 'index.php?A&Marketing\\Featured&Featured', 5, 1, 0, 'products_featured.png', 0, 'app_marketing_featured', 1),
(781, 'index.php?A&Configuration\\Modules&Modules&set=modules_products_featured', 117, 1, 0, 'products_featured.png', 0, 'app_marketing_featured', 1),
(782, 'index.php?A&Tools\\EditLogError&LogErrorPhpMailer', 664, 0, 1, 'log.png', 1, 'app_tools_php_mailer_edit_log_error', 1),
(783, 'index.php?A&Tools\\SecurityCheck&IpRestriction', 178, 1, 1, 'cybermarketing.gif', 1, 'app_tools_security_check', 1),
(784, 'index.php?A&Customers\\Gdpr&Gdpr', 4, 8, 1, 'gdpr.gif', 1, 'app_customers_gdpr', 1),
(785, 'index.php?A&Tools\\EditDesign&EditDesign', 116, 0, 1, '', 0, 'app_tools_design', 1),
(786, 'index.php?A&Orders\\ReturnOrders&ReturnOrders', 4, 2, 0, 'return_orders.png', 0, 'app_orders_return_orders', 1),
(787, 'index.php?A&Orders\\ReturnOrders&Configure', 14, 8, 1, '', 1, 'app_orders_return_orders', 1),
(788, 'index.php?A&Tools\\Cronjob&Cronjob', 163, 2, 0, 'return_orders.png', 0, 'app_tools_cronjob', 1),
(789, 'index.php?A&Configuration\\Settings&Settings&gID=46', 13, 11, 0, '', 1, NULL, 1),
(790, 'index.php?A&Configuration\\Api&Api', 14, 14, 1, 'api.png', 0, 'app_configuration_api', 1),
(791, 'index.php?A&Configuration\\Antispam&Configure', 13, 15, 0, 'antispam.png', 0, 'app_configuration_antispam', 1),
(792, 'index.php?A&Tools\\Upgrade&Upgrade', 644, 5, 1, '', 0, 'app_tools_upgrade', 1),
(793, 'index.php?A&Tools\\Upgrade&Marketplace', 644, 10, 1, NULL, 0, 'app_tools_upgrade', 1),
(794, 'index.php?A&Configuration\\ChatGpt&DashBoard', 14, 15, 1, 'chatgpt.gif', 1, 'app_configuration_chatgpt', 1),
(795, 'index.php?A&Catalog\\Products&StatsProductsNoPurchased', 98, 3, 0, 'stats_products_purchased.gif', 0, 'app_catalog_products', 1),
(796, 'index.php?A&Shipping\\Item&Configure&module=IT', 449, 4, 1, 'modules_shipping.gif', 0, 'app_shipping_item', 1),
(797, 'index.php?A&Marketing\\Recommendations&Recommendations', 107, 1, 0, 'products_recommendations.png', 0, 'app_marketing_recommendations', 1),
(798, 'index.php?A&Configuration\\Modules&Modules&set=modules_products_recommendations', 117, 1, 0, 'products_recommendations.png', 0, 'app_marketing_recommendations', 1),
(799, 'index.php?A&Catalog\\Products&StatsProductsSafetyStock', 107, 0, 0, '', 0, 'app_catalog_products', 1),
(800, 'index.php?A&Marketing\\Recommendations&ProductsRecommendation', 5, 1, 0, 'products_recommendations.png', 1, 'app_marketing_recommendations', 1),
(801, 'index.php?A&Customers\\Reviews&Reviews', 587, 1, 0, '', 0, 'app_customers_reviews', 1),
(802, 'index.php?A&Customers\\Reviews&ReviewsSentiment', 587, 2, 0, '', 0, 'app_customers_reviews', 1),
(803, 'index.php?A&Customers\\Reviews&StatsCustomersVote', 98, 4, 0, '', 0, 'app_customers_reviews', 1),
(804, 'index.php?A&Configuration\\Settings&Settings&gID=11', 21, 5, 0, '', 1, 'app_configuration_cache', 1),
(805, 'index.php?A&Configuration\\Cache&OpCache', 21, 7, 1, '', 0, 'app_configuration_cache', 1),
(806, 'index.php?A&Configuration\\Cache&Memcached', 21, 8, 1, '', 0, 'app_configuration_cache', 1),
(807, 'index.php?A&Catalog\\Products&DynamicPricingRules', 5, 3, 0, '', 1, 'app_catalog_products', 1),
(808, 'index.php?A&Catalog\\Products&StatsDynamicPricing', 98, 5, 0, '', 0, 'app_catalog_products', 1),
(809, 'index.php?A&Tools\\MCP&MCP', 163, 3, 1, '', 0, 'app_tools_mcp', 1);
-- --------------------------------------------------------
--
-- Table structure for table `clic_administrator_menu_description`
--
CREATE TABLE `clic_administrator_menu_description` (
`id` int NOT NULL DEFAULT '0' COMMENT 'FK to administrator_menu table - menu item identifier',
`label` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Translated menu label text for display',
`language_id` int NOT NULL DEFAULT '1' COMMENT 'FK to languages table - language for this translation',
PRIMARY KEY (`id`,`language_id`),
KEY `idx_label` (`label`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `clic_administrator_menu_description`
--
INSERT INTO `clic_administrator_menu_description` VALUES
(0, '', 1),
(0, '', 2),
(138, 'Account subscriptions B2B', 1),
(137, 'Account subscriptions B2C', 1),
(1, 'Accueil', 2),
(135, 'Accueil', 2),
(769, 'Action recorder', 1),
(770, 'Action recorder install', 1),
(771, 'Action recorder modules', 1),
(737, 'Actions recorder', 1),
(737, 'Actions sur les connexions', 2),
(11, 'Administration', 2),
(35, 'Administration images', 1),
(33, 'Administration tableau de bord', 2),
(638, 'Administrator menu', 1),
(638, 'Administrator menu', 2),
(659, 'Administrators', 1),
(659, 'Administrators', 2),
(154, 'Advanced search', 1),
(658, 'Analyse BD', 2),
(791, 'Antispam', 1),
(791, 'Antispam', 2),
(790, 'API management', 1),
(725, 'Apps', 1),
(725, 'Apps', 2),
(768, 'Apps Expédition', 2),
(766, 'Apps Order total', 1),
(767, 'Apps Paiement', 2),
(767, 'Apps Payment', 1),
(768, 'Apps Shipping', 1),
(766, 'Apps Total commande', 2),
(590, 'Archive products', 1),
(590, 'Archive products', 2),
(75, 'Attributs produit', 2),
(789, 'Authentification double', 2),
(20, 'Autres', 2),
(727, 'Autres modules', 2),
(11, 'Back Office', 1),
(164, 'Backup', 1),
(663, 'Backup BD', 1),
(663, 'Backup BD', 2),
(596, 'Banner Manager', 1),
(158, 'Bas de page du site', 2),
(608, 'Best Products Purchased', 1),
(12, 'Boutique', 2),
(118, 'Boutique Index & catégories', 2),
(156, 'Boxes droites & gauches', 2),
(627, 'Brands', 1),
(804, 'Cache Setup', 1),
(24, 'Cartes de crédit', 2),
(155, 'Cartographie', 2),
(3, 'Catalog', 1),
(3, 'Catalogue', 2),
(136, 'Categories', 1),
(136, 'Catégories', 2),
(758, 'Categories', 1),
(758, 'Catégories', 2),
(44, 'Certificats SSL / Proxy', 2),
(653, 'Classes de Taxes', 2),
(4, 'Clients', 2),
(583, 'Clients', 2),
(16, 'Clients B2B', 2),
(15, 'Clients B2C', 2),
(633, 'Clients en ligne', 1),
(633, 'Clients en ligne', 2),
(452, 'COD Payment', 1),
(452, 'COD Payment', 2),
(592, 'Commandes', 2),
(152, 'Commentaires', 2),
(587, 'Commentaires', 2),
(801, 'Commentaires', 2),
(6, 'Communication', 1),
(6, 'Communication', 2),
(122, 'Communication', 1),
(122, 'Communication', 2),
(69, 'Compression Site internet & optimisation', 2),
(119, 'Compte clients', 2),
(140, 'Compte clients', 2),
(2, 'Configuration', 1),
(2, 'Configuration', 2),
(45, 'Configuration', 1),
(45, 'Configuration', 2),
(48, 'Configuration', 1),
(48, 'Configuration', 2),
(125, 'Configuration', 1),
(125, 'Configuration', 2),
(116, 'Configuration Design', 2),
(22, 'Configuration générale', 2),
(144, 'Confirmation', 1),
(144, 'Confirmation', 2),
(139, 'Connexion clients', 2),
(146, 'Contact us', 1),
(738, 'Contrôle du cache Db', 2),
(792, 'Core Information', 1),
(792, 'Core information', 2),
(652, 'Countries', 1),
(778, 'Coups de coeur', 2),
(779, 'Coups de coeur', 2),
(138, 'Création compte B2B', 2),
(137, 'Création de compte B2C', 2),
(24, 'Credit Card', 1),
(788, 'Cronjob', 1),
(788, 'Cronjob', 2),
(657, 'Currencies', 1),
(589, 'Customer groups', 1),
(598, 'Customer Orders-Total', 1),
(598, 'Customer Orders-Total', 2),
(4, 'Customers', 1),
(583, 'Customers', 1),
(119, 'Customers Account', 1),
(140, 'Customers account', 1),
(16, 'Customers B2B', 1),
(15, 'Customers B2C', 1),
(46, 'Customers details', 1),
(49, 'Customers details', 1),
(139, 'Customers login', 1),
(797, 'Customers recommendations', 1),
(798, 'Customers recommendations', 1),
(800, 'Customers Recommendations', 1),
(33, 'Dashboard administration', 1),
(658, 'Db analyse', 1),
(738, 'Db Cache control', 1),
(739, 'DefineLanguage', 1),
(121, 'Description produits', 2),
(8, 'Design', 1),
(8, 'Design', 2),
(116, 'Design Configuration', 1),
(785, 'Design Studio', 1),
(46, 'Détails Clients', 2),
(49, 'Détails clients', 2),
(657, 'Devises', 2),
(776, 'Dimension produits', 2),
(123, 'Divers', 2),
(789, 'Double authentification', 1),
(31, 'Download', 1),
(807, 'Dynamic Pricing', 1),
(808, 'Dynamic Pricing', 1),
(586, 'E-mail', 1),
(586, 'E-mail', 2),
(739, 'Editeur de langues', 2),
(170, 'Editeurs', 2),
(39, 'Edition commandes / factures', 2),
(170, 'Editors', 1),
(30, 'Emails', 1),
(30, 'Emails', 2),
(769, 'Enregistrements actions', 2),
(770, 'Enregistrements actions installation', 2),
(157, 'Entête du site', 2),
(150, 'Envoyer à un ami', 2),
(782, 'Erreurs Log phpMailer', 2),
(796, 'Expédition par produit', 2),
(142, 'Expéditions', 2),
(27, 'Expéditions & Bons de commande', 2),
(175, 'Exports / Imports', 1),
(175, 'Exports / Imports', 2),
(42, 'Exports Security', 1),
(644, 'Extensions / Mise à jour', 1),
(644, 'Extensions / Update', 2),
(778, 'Favorites', 1),
(779, 'Favorites', 1),
(780, 'Featured products', 1),
(781, 'Featured products', 1),
(103, 'Financial statistics', 1),
(626, 'Fournisseurs', 2),
(784, 'Gdpr', 1),
(784, 'Gdpr', 2),
(22, 'General configuration', 1),
(790, 'Gestion API', 2),
(126, 'Gestion des images', 2),
(804, 'Gestion du Cache', 2),
(107, 'Gestion produits', 2),
(596, 'Gestionnaire de bannières', 2),
(595, 'Gestionnaire de page', 2),
(794, 'Gpt', 1),
(794, 'Gpt', 2),
(589, 'Groupes Client', 2),
(1, 'Home', 1),
(135, 'Home', 1),
(35, 'Images de l''administration', 2),
(126, 'Images management', 1),
(806, 'Informations Memcached', 2),
(805, 'Informations OpCache', 2),
(650, 'Invoices Status PDF', 1),
(783, 'Ip Restrictions', 1),
(736, 'Langages', 2),
(736, 'Languages', 1),
(23, 'Laws & regulations', 1),
(124, 'Layout', 1),
(156, 'Left & right boxes', 1),
(117, 'Listing produits', 2),
(132, 'Listing Produits', 2),
(19, 'Location & taxes', 1),
(19, 'Location & taxes', 2),
(664, 'Log Editor', 1),
(664, 'Log Editor', 2),
(70, 'Logging', 1),
(70, 'Logging', 2),
(23, 'Lois & Réglementations', 2),
(13, 'Ma boutique', 2),
(5, 'Marketing', 1),
(5, 'Marketing', 2),
(793, 'Marketplace', 1),
(793, 'Marketplace', 2),
(627, 'Marques', 2),
(26, 'Maximum / minimum values', 1),
(34, 'Maximum / minimum values', 1),
(51, 'Maximum values', 1),
(809, 'MCP', 1),
(809, 'MCP', 2),
(608, 'Meilleurs produits achetés', 2),
(593, 'Members B2B', 1),
(593, 'Membres B2B', 2),
(806, 'Memcached information', 1),
(59, 'Metas modules', 1),
(47, 'Minimum values', 1),
(50, 'Minimum values', 1),
(123, 'Miscellaneous', 1),
(451, 'Modules Commandes Total', 2),
(771, 'Modules enregistrements actions', 2),
(449, 'Modules Expéditions', 2),
(728, 'Modules Hooks', 1),
(728, 'Modules Hooks', 2),
(59, 'Modules metas', 2),
(186, 'Modules Paiement', 2),
(58, 'Modules réseaux sociaux', 2),
(742, 'Modules Services', 1),
(742, 'Modules Services', 2),
(14, 'Mon administration', 2),
(14, 'My backoffice', 1),
(13, 'My store', 1),
(127, 'News', 1),
(581, 'Newsletter', 1),
(581, 'Newsletter', 2),
(146, 'Nous contacter', 2),
(127, 'Nouveautés', 2),
(805, 'OpCache information', 1),
(120, 'Order process', 1),
(145, 'Order success', 1),
(451, 'Order Total Modules', 1),
(592, 'Orders', 1),
(39, 'Orders / invoices edition', 1),
(651, 'Orders Status', 1),
(134, 'Ordre affichage listing produits', 2),
(730, 'Ordre de tri des paiements / Installation', 2),
(54, 'Ordre de tri expéditions / Installation', 2),
(55, 'Ordre de tri total commandes / Installation', 2),
(727, 'Other modules', 1),
(20, 'Others', 1),
(163, 'Outils', 2),
(595, 'Page Manager', 1),
(143, 'Paiement', 2),
(141, 'Panier client', 2),
(143, 'Payment', 1),
(186, 'Payment Modules', 1),
(730, 'Payment sort order / Install', 1),
(652, 'Pays', 2),
(782, 'PhpMailer Log errors', 1),
(756, 'Poids', 2),
(799, 'Predictive safety stock', 1),
(120, 'Processus de commande', 2),
(75, 'Product attributs', 1),
(681, 'Products', 1),
(121, 'Products description', 1),
(617, 'Products expected', 1),
(617, 'Products expected', 2),
(776, 'Products Length', 1),
(117, 'Products listing', 1),
(132, 'Products Listing', 1),
(134, 'Products listing sort order', 1),
(107, 'Products management', 1),
(795, 'Products no purchased', 1),
(616, 'Products notification', 1),
(616, 'Products notification', 2),
(786, 'Products return', 1),
(787, 'Products return status', 1),
(803, 'Products Reviews Vote', 1),
(98, 'Products Statistics', 1),
(605, 'Products Stock Level', 1),
(605, 'Products Stock Level', 2),
(609, 'Products viewed', 1),
(681, 'Produits', 2),
(795, 'Produits non achetés', 2),
(780, 'Produits sélectionnés', 2),
(781, 'Produits sélectionnés', 2),
(609, 'Produits vus', 2),
(130, 'Promotions', 2),
(777, 'Promotions', 2),
(44, 'Proxy / SSL certificates', 1),
(7, 'Rapports', 2),
(131, 'Recherche', 2),
(154, 'Recherche avancées', 2),
(797, 'Recommandations clients', 2),
(798, 'Recommandations clients', 2),
(800, 'Recommandations clients', 2),
(7, 'Reports', 1),
(783, 'Restrictions IP', 2),
(786, 'Retour produits', 2),
(587, 'Reviews', 1),
(801, 'Reviews', 1),
(152, 'Reviews modules', 1),
(802, 'Reviews sentiment', 1),
(164, 'Sauvegarde', 2),
(131, 'Search', 1),
(178, 'Sécurité', 2),
(42, 'Sécurité exports', 2),
(665, 'Sécurité répertoires', 2),
(178, 'Securities', 1),
(719, 'Security check', 1),
(665, 'Security Directories', 1),
(802, 'Sentiments commentaires', 2),
(594, 'SEO', 1),
(594, 'SEO', 2),
(18, 'SEO / Réseaux Sociaux', 2),
(18, 'SEO / Social networking', 1),
(25, 'Seo Url', 1),
(71, 'Sessions', 1),
(71, 'Sessions', 2),
(21, 'Sessions & cache', 1),
(21, 'Sessions & Cache', 2),
(142, 'Shipping', 1),
(27, 'Shipping & Handling', 1),
(796, 'Shipping by item', 1),
(449, 'Shipping Modules', 1),
(54, 'Shipping sort order / Install', 1),
(141, 'Shopping Cart', 1),
(158, 'Site footer', 1),
(157, 'Site header', 1),
(155, 'Sitemap', 1),
(58, 'Social network modules', 1),
(55, 'Sort Order total order / Install', 1),
(130, 'Specials', 1),
(777, 'Specials', 1),
(103, 'Statistiques financières', 2),
(98, 'Statistiques produits', 2),
(650, 'Statut des commandes PDF', 2),
(651, 'Statuts commandes', 2),
(787, 'Statuts des retours produits', 2),
(28, 'Stock', 1),
(28, 'Stock', 2),
(799, 'Stock de sécurité prédictif', 2),
(12, 'Store', 1),
(118, 'Store index & categories', 1),
(785, 'Studio Design', 2),
(465, 'SubTotal', 1),
(465, 'SubTotal', 2),
(145, 'Succès de commande', 2),
(626, 'Suppliers', 1),
(807, 'Tarification dynamique', 2),
(808, 'Tarification dynamique', 2),
(655, 'Taux de taxe', 2),
(653, 'Tax Classes', 1),
(656, 'Tax geo zones', 1),
(655, 'Tax Rates', 1),
(656, 'Taxes geo zones', 2),
(31, 'Téléchargement', 2),
(150, 'Tell a friend', 1),
(124, 'Template', 2),
(632, 'Template E-mail', 1),
(632, 'Template E-mail', 2),
(163, 'Tools', 1),
(463, 'Total', 1),
(463, 'Total', 2),
(461, 'TotalShipping', 1),
(461, 'TotalShipping', 2),
(464, 'TotalTax', 1),
(464, 'TotalTax', 2),
(647, 'Units quantities status', 1),
(647, 'Units quantities status', 2),
(25, 'Url Seo', 2),
(26, 'Valeur maximum / minimum', 2),
(51, 'Valeurs maximum', 2),
(34, 'Valeurs maximum / minimum', 2),
(47, 'Valeurs minimum', 2),
(50, 'Valeurs minimum', 2),
(719, 'Vérification Sécurité', 2),
(803, 'Vote commentaires produits', 2),
(504, 'Web Service', 1),
(504, 'Web Service', 2),
(69, 'Website compression & optimization', 1),
(756, 'Weight', 1),
(654, 'Zones', 1),
(654, 'Zones', 2);
-- --------------------------------------------------------
--
-- Table structure for table `clic_api`
--
CREATE TABLE `clic_api` (
`api_id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each API configuration',
`username` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'API username for authentication',
`api_key` text COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'API key for authentication - should be securely hashed',
`status` tinyint(1) NOT NULL COMMENT 'API status - 0: disabled, 1: enabled',
`date_added` datetime NOT NULL COMMENT 'Timestamp when API configuration was created',
`date_modified` datetime NOT NULL COMMENT 'Timestamp of last modification',
`get_product_status` tinyint(1) NOT NULL COMMENT 'Permission to read product data - 0: denied, 1: allowed',
`update_product_status` tinyint(1) NOT NULL COMMENT 'Permission to update product data - 0: denied, 1: allowed',
`insert_product_status` tinyint(1) NOT NULL COMMENT 'Permission to create product data - 0: denied, 1: allowed',
`delete_product_status` tinyint(1) NOT NULL COMMENT 'Permission to delete product data - 0: denied, 1: allowed',
`get_categories_status` tinyint(1) NOT NULL COMMENT 'Permission to read category data - 0: denied, 1: allowed',
`update_categories_status` tinyint(1) NOT NULL COMMENT 'Permission to update category data - 0: denied, 1: allowed',
`insert_categories_status` tinyint(1) NOT NULL COMMENT 'Permission to create category data - 0: denied, 1: allowed',
`delete_categories_status` tinyint(1) NOT NULL COMMENT 'Permission to delete category data - 0: denied, 1: allowed',
`get_customer_status` tinyint(1) NOT NULL COMMENT 'Permission to read customer data - 0: denied, 1: allowed',
`update_customer_status` tinyint(1) NOT NULL COMMENT 'Permission to update customer data - 0: denied, 1: allowed',
`insert_customer_status` tinyint(1) NOT NULL COMMENT 'Permission to create customer data - 0: denied, 1: allowed',
`delete_customer_status` tinyint(1) NOT NULL COMMENT 'Permission to delete customer data - 0: denied, 1: allowed',
`get_order_status` tinyint(1) NOT NULL COMMENT 'Permission to read order data - 0: denied, 1: allowed',
`update_order_status` tinyint(1) NOT NULL COMMENT 'Permission to update order data - 0: denied, 1: allowed',
`insert_order_status` tinyint(1) NOT NULL COMMENT 'Permission to create order data - 0: denied, 1: allowed',
`delete_order_status` tinyint(1) NOT NULL COMMENT 'Permission to delete order data - 0: denied, 1: allowed',
`get_manufacturer_status` tinyint(1) NOT NULL COMMENT 'Permission to read manufacturer data - 0: denied, 1: allowed',
`update_manufacturer_status` tinyint(1) NOT NULL COMMENT 'Permission to update manufacturer data - 0: denied, 1: allowed',
`insert_manufacturer_status` tinyint(1) NOT NULL COMMENT 'Permission to create manufacturer data - 0: denied, 1: allowed',
`delete_manufacturer_status` tinyint(1) NOT NULL COMMENT 'Permission to delete manufacturer data - 0: denied, 1: allowed',
`get_supplier_status` tinyint(1) NOT NULL COMMENT 'Permission to read supplier data - 0: denied, 1: allowed',
`update_supplier_status` tinyint(1) NOT NULL COMMENT 'Permission to update supplier data - 0: denied, 1: allowed',
`insert_supplier_status` tinyint(1) NOT NULL COMMENT 'Permission to create supplier data - 0: denied, 1: allowed',
`delete_supplier_status` tinyint(1) NOT NULL COMMENT 'Permission to delete supplier data - 0: denied, 1: allowed',
PRIMARY KEY (`api_id`),
KEY `idx_api_id` (`api_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='REST API configurations with granular permission control for external integrations' AUTO_INCREMENT=2 ;
--
-- Dumping data for table `clic_api`
--
INSERT INTO `clic_api` VALUES
(1, 'Default', 'd0a36b839700b60727fe13998e22aa0af197c61d8b371e26114c133ca51c4864bd0da73ad6d1e5090b02b55cff42b8a0cd23866e64e78fc8884eb6228d32f5e9d76bed468869dd89ee6bb8a3208c5077e88560d0bc238f67cfc732efcf5313a0cb361e297c29c8d82d050d770ed7dee972af6445e801fa9af12e3d478bf5346a', 0, '2022-09-18 14:25:54', '2022-09-18 14:25:54', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
-- --------------------------------------------------------
--
-- Table structure for table `clic_api_failed_attempts`
--
CREATE TABLE `clic_api_failed_attempts` (
`id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each failed attempt record',
`identifier` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Identifier being tracked - typically API key, username, or IP address',
`attempts` int DEFAULT NULL COMMENT 'Number of consecutive failed authentication attempts',
`last_attempt` int NOT NULL COMMENT 'Unix timestamp of the most recent failed attempt',
PRIMARY KEY (`id`),
KEY `idx_identifier` (`identifier`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `clic_api_ip`
--
CREATE TABLE `clic_api_ip` (
`api_ip_id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each API IP whitelist entry',
`api_id` int NOT NULL COMMENT 'FK to api table - API configuration this IP is allowed for',
`ip` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Whitelisted IP address - IPv4 or IPv6 format',
`comment` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Optional description of this IP whitelist entry',
PRIMARY KEY (`api_ip_id`),
KEY `idx_api_ip_id` (`api_ip_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='IP address whitelist for API access control and security' AUTO_INCREMENT=2 ;
--
-- Dumping data for table `clic_api_ip`
--
INSERT INTO `clic_api_ip` VALUES
(1, 1, '127.0.0.1', 'localhost');
-- --------------------------------------------------------
--
-- Table structure for table `clic_api_rate_limit`
--
CREATE TABLE `clic_api_rate_limit` (
`id` int NOT NULL COMMENT 'Primary key - unique identifier for each rate limit entry',
`identifier` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Identifier for rate limiting - typically API key or IP address',
`timestamp` int DEFAULT NULL COMMENT 'Unix timestamp of the request for rate limit tracking',
`ip` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'IP address of the requester - IPv4 or IPv6 format',
PRIMARY KEY (`id`),
KEY `idx_identifier_timestamp` (`identifier`,`timestamp`),
KEY `idx_timestamp` (`timestamp`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `clic_api_session`
--
CREATE TABLE `clic_api_session` (
`api_session_id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each API session',
`api_id` int NOT NULL COMMENT 'FK to api table - API configuration this session belongs to',
`session_id` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Unique session identifier - generated token for session tracking',
`ip` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'IP address of the session - IPv4 or IPv6 format',
`date_added` datetime NOT NULL COMMENT 'Timestamp when the session was created',
`date_modified` datetime NOT NULL COMMENT 'Timestamp of last session activity',
PRIMARY KEY (`api_session_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `clic_banners`
--
CREATE TABLE `clic_banners` (
`banners_id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each banner',
`banners_title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Banner title for display - visible to customers',
`banners_url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Target URL when banner is clicked',
`banners_image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Path to banner image file',
`banners_group` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Banner group for placement - header, sidebar, footer, etc',
`banners_target` varchar(6) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Link target - _blank for new window, _self for same window',
`banners_html_text` text COLLATE utf8mb4_unicode_ci COMMENT 'HTML content for text-based banners - alternative to image',
`expires_impressions` int DEFAULT '0' COMMENT 'Maximum number of impressions before banner expires - 0 for unlimited',
`expires_date` datetime DEFAULT NULL COMMENT 'Expiration date when banner stops displaying - null for no expiration',
`date_scheduled` datetime DEFAULT NULL COMMENT 'Future date when banner becomes active - null for immediate',
`date_added` datetime NOT NULL COMMENT 'Timestamp when banner was created',
`date_status_change` datetime DEFAULT NULL COMMENT 'Timestamp when status was last changed',
`status` int NOT NULL DEFAULT '1' COMMENT 'Banner status - 0: inactive, 1: active and displaying',
`languages_id` int NOT NULL DEFAULT '0' COMMENT 'FK to languages table - language for this banner, 0: all languages',
`customers_group_id` int NOT NULL DEFAULT '0' COMMENT 'FK to customers_groups table - customer group who sees banner, 0: all groups',
`banners_title_admin` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Internal admin title for banner management',
`banners_theme` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Theme or campaign name for banner grouping',
PRIMARY KEY (`banners_id`),
KEY `idx_banners_group` (`banners_group`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=2 ;
--
-- Dumping data for table `clic_banners`
--
INSERT INTO `clic_banners` VALUES
(1, 'Logo', '', 'logos/others/logo_clicshopping.webp', 'Default_multi_template_logo', '_self', '', 0, NULL, NULL, '2018-07-30 18:11:20', NULL, 1, 0, 99, 'Logo', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `clic_banners_history`
--
CREATE TABLE `clic_banners_history` (
`banners_history_id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each banner history entry',
`banners_id` int NOT NULL COMMENT 'FK to banners table - banner being tracked',
`banners_shown` int NOT NULL DEFAULT '0' COMMENT 'Number of times banner was displayed/shown',
`banners_clicked` int NOT NULL DEFAULT '0' COMMENT 'Number of times banner was clicked',
`banners_history_date` datetime NOT NULL COMMENT 'Date for this history entry - typically daily aggregation',
PRIMARY KEY (`banners_history_id`),
KEY `idx_banners_history_banners_id` (`banners_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `clic_categories`
--
CREATE TABLE `clic_categories` (
`categories_id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each category',
`categories_image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Path to category image file',
`parent_id` int NOT NULL DEFAULT '0' COMMENT 'FK to categories table - parent category ID for hierarchical structure, 0 for root categories',
`sort_order` int DEFAULT NULL COMMENT 'Display order for sorting categories',
`date_added` datetime DEFAULT NULL COMMENT 'Timestamp when category was created',
`last_modified` datetime DEFAULT NULL COMMENT 'Timestamp of last modification',
`virtual_categories` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Flag indicating if category is virtual - 0: physical, 1: virtual',
`status` tinyint(1) NOT NULL DEFAULT '1' COMMENT 'Category status - 0: inactive, 1: active',
`customers_group_id` int NOT NULL DEFAULT '99' COMMENT 'FK to customers_groups table - customer group with access to this category, 99: all groups',
PRIMARY KEY (`categories_id`),
KEY `idx_categories_parent_id` (`parent_id`),
KEY `idx_categories_status_virtual` (`virtual_categories`),
KEY `idx_customers_group_id` (`customers_group_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Product categories with hierarchical structure and access control' AUTO_INCREMENT=6 ;
--
-- Dumping data for table `clic_categories`
--
INSERT INTO `clic_categories` VALUES
(1, '', 0, 0, '2022-02-24 10:00:18', '2023-04-30 14:39:48', 0, 1, 99),
(2, '', 0, 0, '2023-04-30 14:40:14', NULL, 0, 1, 99),
(3, '', 0, 0, '2023-04-30 14:51:50', '2023-04-30 15:28:26', 0, 1, 99),
(4, '', 3, 0, '2023-04-30 14:52:09', NULL, 0, 1, 99),
(5, '', 3, 0, '2023-04-30 15:01:18', NULL, 0, 1, 99);
-- --------------------------------------------------------
--
-- Table structure for table `clic_categories_description`
--
CREATE TABLE `clic_categories_description` (
`categories_id` int NOT NULL DEFAULT '0' COMMENT 'FK to categories table - category identifier',
`language_id` int NOT NULL DEFAULT '1' COMMENT 'FK to languages table - language identifier for this translation',
`categories_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Category name in the specified language',
`categories_description` text COLLATE utf8mb4_unicode_ci COMMENT 'Detailed description of the category in the specified language',
`categories_seo_url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'SEO-friendly URL slug for this category',
`categories_head_title_tag` text COLLATE utf8mb4_unicode_ci COMMENT 'HTML meta title tag for SEO',
`categories_head_desc_tag` text COLLATE utf8mb4_unicode_ci COMMENT 'HTML meta description tag for SEO',
`categories_head_keywords_tag` text COLLATE utf8mb4_unicode_ci COMMENT 'HTML meta keywords tag for SEO',
PRIMARY KEY (`categories_id`,`language_id`),
KEY `idx_categories_name` (`categories_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Multi-language descriptions and SEO metadata for product categories';
--
-- Dumping data for table `clic_categories_description`
--
INSERT INTO `clic_categories_description` VALUES
(1, 1, 'Glasses', '', '', '', '', ''),
(1, 2, 'Verres', '', '', '', '', ''),
(2, 1, 'Table linens', '', '', '', '', ''),
(2, 2, 'Linges de table', '', '', '', '', ''),
(3, 1, 'Dinning & Bar', '<img alt="" src="/sources/images/categories/art-de-la-table_bandeau.jpg" style="width: 1200px; height: 300px;" />', '', '', '', ''),
(3, 2, 'Art de la table & bar', '<img alt="" src="/sources/images/categories/art-de-la-table_bandeau.jpg" style="width: 1200px; height: 300px;" />', '', '', '', ''),
(4, 1, 'Bar', '', '', '', '', ''),
(4, 2, 'Bar', '', '', '', '', ''),
(5, 1, ' Flatware', '', '', '', '', ''),
(5, 2, ' Coutellerie', '', '', '', '', '');
-- --------------------------------------------------------
--
-- Table structure for table `clic_configuration`
--
CREATE TABLE `clic_configuration` (
`configuration_id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each configuration setting',
`configuration_title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Human-readable title of the configuration setting',
`configuration_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Unique key identifier for programmatic access - e.g. STORE_NAME, TAX_DECIMAL_PLACES',
`configuration_value` text COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Current value of the configuration setting',
`configuration_description` text COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Detailed description of what this setting controls',
`configuration_group_id` int NOT NULL COMMENT 'FK to configuration_group table - groups related settings together',
`sort_order` int DEFAULT NULL COMMENT 'Display order within configuration group',
`last_modified` datetime DEFAULT NULL COMMENT 'Timestamp of last modification',
`date_added` datetime NOT NULL COMMENT 'Timestamp when configuration was created',
`use_function` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'PHP function to format value for display',
`set_function` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'PHP function or HTML for setting value in admin interface',
PRIMARY KEY (`configuration_id`),
KEY `idx_configuration_key` (`configuration_key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='System configuration settings for store behavior and features' AUTO_INCREMENT=1785 ;
--
-- Dumping data for table `clic_configuration`
--
INSERT INTO `clic_configuration` VALUES
(1, 'What is your the store Name', 'STORE_NAME', '[[site_name]]', 'Please specify the name of your store.<br /><br /><font color="#FF0000"><b>Note :</b> This name will appear in the content of e-mails</font><br>', 1, 1, '2007-06-02 15:39:18', '2006-04-09 16:13:47', NULL, NULL),
(2, 'Who is the store manager ?', 'STORE_OWNER', '[[admin_username]]', 'Please specify the name of the manager.<br />', 1, 2, '2008-09-15 09:39:27', '2006-04-09 16:13:47', NULL, NULL),
(3, 'What is your e-mail address of the store ?', 'STORE_OWNER_EMAIL_ADDRESS', '[[admin_email]]', 'Please enter the email that will be used by the store when sending emails address.', 1, 3, '2007-06-02 15:40:42', '2006-04-09 16:13:47', NULL, NULL),
(4, '''From'' field of an email sent', 'EMAIL_FROM', '"[[admin_username]]" <[[admin_email]]>', 'Field used in the headers of email.<br><br><font color="#FF0000"><b>Note :</b>The e-mail address is built as follows my_department<email@domain.com></font>', 1, 4, '2007-05-07 12:31:36', '2006-04-09 16:13:47', NULL, NULL),
(5, 'Country', 'STORE_COUNTRY', '73', 'The country of residence of the store.<br /><br /><font color="#FF0000"><b>Note :</b> Do not forget also configure zones in the following option<br /></font>', 1, 6, '2008-12-05 19:10:24', '2006-04-09 16:13:47', 'clic_cfg_use_function_get_country_name', 'clic_cfg_set_countries_pull_down_menu'),
(6, 'What is your zone ?', 'STORE_ZONE', '265', 'Zone on the location of the store.<br /><br /><font color="#FF0000"><b>Note :</b> To complete the menu, you can go to the menu "Location / Taxes"<br /></font>', 1, 7, '2008-12-05 19:10:33', '2006-04-09 16:13:47', 'clic_cfg_use_funtion_get_zone_name', 'clic_cfg_set_zones_list_pull_down_menu'),
(9, 'Automatic adjustment of currency', 'USE_DEFAULT_LANGUAGE_CURRENCY', 'false', 'Automatic change of monetary currency according to the language selected customer.<br /><br />', 1, 10, NULL, '2006-04-09 16:13:47', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(10, 'Send a copy of orders on other e-mails addresses', 'SEND_EXTRA_ORDER_EMAILS_TO', '"[[admin_email]]" <[[admin_email]]>', 'Send a copy of the order to the address specified.<br /><br /><font color="#FF0000"><b>Note :</b> You can add more with comma separation (invoice<email@domain.com>)<br></font>', 1, 11, '2007-06-02 15:44:29', '2006-04-09 16:13:47', NULL, NULL),
(12, 'Do you want to display cart after adding a product', 'DISPLAY_CART', 'true', 'In value <b><i>true</i></b> the store display the contents of the basket after adding a product.<br><br>', 1, 14, NULL, '2006-04-09 16:13:47', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(13, 'Allow visitors the recommendation of a product', 'ALLOW_GUEST_TO_TELL_A_FRIEND', 'false', 'In value <b><i>true</i></b> visitors will find a link on the product page to enable it to recommend this product to a friend by sending an email.<br /><br />', 1, 15, NULL, '2006-04-09 16:13:47', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(14, 'Default search function', 'ADVANCED_SEARCH_DEFAULT_OPERATOR', 'and', 'Please select the search operator that will be used by default.<br /><br /><i>(Value and = Word1 <b>and</b> the word2 - Value or = Word1 <b>or</b> the word2)</i><br />', 1, 17, NULL, '2006-04-09 16:13:47', NULL, 'clic_cfg_set_boolean_value(array(''and'', ''or''))'),
(15, 'Specify Name, address, country and such of the store', 'STORE_NAME_ADDRESS', 'Adresse\r\nZip Code - City\r\ntelephone', 'Name, address, country, phone of the store to be used in printing documents and online display.<br />', 1, 18, '2008-09-15 09:39:38', '2006-04-09 16:13:47', NULL, 'clic_cfg_set_textarea_field'),
(17, 'Specify Decimal tax', 'TAX_DECIMAL_PLACES', '2', 'Decimal slot the value of the amount of tax.<br />', 1, 20, '2006-05-31 01:17:46', '2006-04-09 16:13:47', NULL, NULL),
(18, 'Do you want to display Prices with taxes', 'DISPLAY_PRICE_WITH_TAX', 'true', 'in value <b><i>true</i></b> Price include all taxes is displayed in false, the price is excluding taxes.<br />', 1, 21, '2007-05-21 14:23:13', '2006-04-09 16:13:47', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(19, 'Minimum number of characters for first name', 'ENTRY_FIRST_NAME_MIN_LENGTH', '2', 'Minimum number of characters required for the firstname', 16, 1, '2006-10-23 22:49:44', '2006-04-09 16:13:47', NULL, NULL),
(20, 'Minimum number of characters for name', 'ENTRY_LAST_NAME_MIN_LENGTH', '2', 'Minimum number of characters required for the family name.', 16, 2, '2006-10-23 22:49:39', '2006-04-09 16:13:47', NULL, NULL),
(21, 'Minimum number of characters for date of birth', 'ENTRY_DOB_MIN_LENGTH', '10', 'Minimum number of characters required for the date of birth.', 16, 3, '2006-10-23 01:10:08', '2006-04-09 16:13:47', NULL, NULL),
(23, 'Minimum number of characters for address', 'ENTRY_STREET_ADDRESS_MIN_LENGTH', '4', 'Minimum number of characters required for the address.', 16, 5, '2006-10-23 01:10:20', '2006-04-09 16:13:47', NULL, NULL),
(24, 'Minimum number of characters for company', 'ENTRY_COMPANY_MIN_LENGTH', '0', 'Minimum number of characters required for the company name.', 16, 6, '2006-10-23 01:15:51', '2006-04-09 16:13:47', NULL, NULL),
(25, 'Minimum number of characters for zip code', 'ENTRY_POSTCODE_MIN_LENGTH', '4', 'Minimum number of characters required for zip code.', 16, 7, '2006-10-23 01:10:48', '2006-04-09 16:13:48', NULL, NULL),
(26, 'Minimum number of characters for city', 'ENTRY_CITY_MIN_LENGTH', '3', 'Minimum number of characters required for the city.', 16, 8, '2006-10-23 01:10:58', '2006-04-09 16:13:48', NULL, NULL),
(27, 'Minimum number of characters for department or state', 'ENTRY_STATE_MIN_LENGTH', '3', 'Minimum number of characters required for the department or state.', 16, 9, '2006-10-23 01:11:12', '2006-04-09 16:13:48', NULL, NULL),
(28, 'Minimum number of characters for telephone', 'ENTRY_TELEPHONE_MIN_LENGTH', '3', 'Minimum number of characters required for the phone.', 16, 10, '2006-10-23 22:49:04', '2006-04-09 16:13:48', NULL, NULL),
(29, 'Minimum number of characters for password', 'ENTRY_PASSWORD_MIN_LENGTH', '5', 'Minimum number of characters required for the user password.', 16, 11, '2006-10-23 00:37:27', '2006-04-09 16:13:48', NULL, NULL),
(30, 'Minimum number of characters for owner of the credit card', 'CC_OWNER_MIN_LENGTH', '3', 'Minimum number of characters required for the name of the owner of the credit card.', 2, 12, NULL, '2006-04-09 16:13:48', NULL, NULL),
(31, 'Minimum number of characters for number of credit cards', 'CC_NUMBER_MIN_LENGTH', '10', 'Minimum number of characters required for the number of the credit card.', 2, 13, NULL, '2006-04-09 16:13:48', NULL, NULL),
(32, 'Please specify the minimum number of words that the client must insert in the comments', 'REVIEW_TEXT_MIN_LENGTH', '50', 'Minimum number of characters required for the product reviewed.<br><i> - 10 comments for a minimum of 10 characters</i><br>', 3, 9, NULL, '2006-04-09 16:13:48', NULL, NULL),
(35, 'Maximum number of characters for number of entries in the address book', 'MAX_ADDRESS_BOOK_ENTRIES', '5', 'Maximum number of entries in the address book for a client.', 3, 1, '2006-10-14 15:45:07', '2006-04-09 16:13:48', NULL, NULL),
(36, 'Search Result', 'MAX_DISPLAY_SEARCH_RESULTS', '20', 'Quantity of items to display per page.', 3, 2, '2007-04-24 19:02:41', '2006-04-09 16:13:48', NULL, NULL),
(53, 'Page View Order History', 'MAX_DISPLAY_ORDER_HISTORY', '10', 'Maximum number of historic command to display the page.', 3, 18, NULL, '2006-04-09 16:13:48', NULL, NULL),
(54, 'Thumbnail or small image: please specify the width', 'SMALL_IMAGE_WIDTH', '130', 'Please specify the number of pixels for the width of the thumbnails or small images', 4, 1, '2007-05-19 16:34:40', '2006-04-09 16:13:48', NULL, NULL),
(55, 'Thumbnail or small image: Please specify height', 'SMALL_IMAGE_HEIGHT', '', 'Please specify the number of pixels for the height of the thumbnails or small images', 4, 2, '2007-05-19 16:34:35', '2006-04-09 16:13:48', NULL, NULL),
(56, 'Image header, Width', 'HEADING_IMAGE_WIDTH', '100', 'The number of pixels for the width of the image header.', 4, 3, '2007-05-19 16:34:44', '2006-04-09 16:13:48', NULL, NULL),
(57, 'Image header, Height', 'HEADING_IMAGE_HEIGHT', '', 'Number of pixels for the height of the header image.', 4, 4, '2007-05-19 16:34:49', '2006-04-09 16:13:48', NULL, NULL),
(58, 'Image subcategory, Width', 'SUBCATEGORY_IMAGE_WIDTH', '150', 'Number of pixels for the width of subcategory images.', 4, 5, '2007-05-19 16:34:53', '2006-04-09 16:13:48', NULL, NULL),
(59, 'Image subcategory, Height', 'SUBCATEGORY_IMAGE_HEIGHT', '', 'Number of pixels for the height images subcategory.', 4, 6, '2007-05-19 16:34:58', '2006-04-09 16:13:48', NULL, NULL),
(60, 'Auto calculation of the size of the images', 'CONFIG_CALCULATE_IMAGE_SIZE', 'false', 'Automatically calculate the image size.<br />', 4, 7, '2007-05-18 05:21:07', '2006-04-09 16:13:48', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(61, 'Do you want to enable broken image', 'IMAGE_REQUIRED', 'false', 'Display of broken images links (for development).<br />', 4, 8, '2007-05-19 03:31:22', '2006-04-09 16:13:48', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(62, 'civility <i>(Man & Woman)</i>', 'ACCOUNT_GENDER', 'true', 'Show two checkboxes on civility in the registration form customers.<br />', 5, 1, '2006-10-23 01:15:03', '2006-04-09 16:13:48', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(63, 'Date of birth', 'ACCOUNT_DOB', 'true', 'Display the date of birth in the registration form for customers.<br />', 5, 2, '2006-10-23 01:15:20', '2006-04-09 16:13:48', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(64, 'Company', 'ACCOUNT_COMPANY', 'false', 'View company field in the "My Account" and the registration form for customers.<br />', 5, 3, '2006-10-23 01:16:20', '2006-04-09 16:13:48', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(65, 'Additional address', 'ACCOUNT_SUBURB', 'true', 'Show address further in the registration form for customers.<br>', 5, 4, '2006-10-23 01:16:30', '2006-04-09 16:13:48', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(66, 'State and / or Department', 'ACCOUNT_STATE', 'true', 'Show the department field (state) in the registration form<br>', 5, 5, '2006-10-23 01:17:10', '2006-04-09 16:13:48', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(84, 'Default currency', 'DEFAULT_CURRENCY', 'EUR', 'Default currency.', 6, 0, NULL, '2006-04-09 16:13:48', NULL, NULL),
(85, 'Default language', 'DEFAULT_LANGUAGE', 'en', 'Default language.', 6, 0, NULL, '2006-04-09 16:13:48', NULL, NULL),
(86, 'Default status for new order', 'DEFAULT_ORDERS_STATUS_ID', '1', 'When a new order is created, this order status will be assigned to him.', 6, 0, NULL, '2006-04-09 16:13:48', NULL, NULL),
(98, 'Country code store', 'SHIPPING_ORIGIN_COUNTRY', '73', 'Insert the code "ISO 3166" Country to calculate shipping costs.', 7, 1, '2016-10-12 17:50:09', '2006-04-09 16:13:48', 'clic_cfg_use_function_get_country_name', 'clic_cfg_set_countries_pull_down_menu'),
(99, 'Postcode store', 'SHIPPING_ORIGIN_ZIP', '93410', 'Enter the zip code of the store to calculate shipping.', 7, 2, '2016-10-12 17:50:00', '2006-04-09 16:13:48', NULL, NULL),
(100, 'Maximum weight for the shipping (in Kg)', 'SHIPPING_MAX_WEIGHT', '50', 'Carriers have a maximum weight limit per package. This limitation is common to all.', 7, 3, NULL, '2006-04-09 16:13:48', NULL, NULL),
(101, 'Tare packaging', 'SHIPPING_BOX_WEIGHT', '0', 'What is the average weight of packaging and packaging parcels small to medium size ?', 7, 4, '2008-09-13 14:57:27', '2006-04-09 16:13:48', NULL, NULL),
(102, 'Large packages - Percentage surcharge', 'SHIPPING_BOX_PADDING', '10', '10% surcharge, enter 10.', 7, 5, NULL, '2006-04-09 16:13:48', NULL, NULL),
(103, 'Do you want to display the product image? ?', 'PRODUCT_LIST_IMAGE', '1', 'In the list of items, do you want to display the product image? ?<br />Please specify a sort order<br /><br /><i>- 0 for no display<br />- 1 for example the first position</i><br />', 0, 1, NULL, '2006-04-09 16:13:48', NULL, NULL),
(104, 'Do you want to display the sort order for the brand ?', 'PRODUCT_LIST_MANUFACTURER', '0', 'In the products listing, do you want to display the sort order for the brand ?<br />Please specify the sort order<br /><br /><i>- 0 to hide the sort order<br />- 1 to display the sort order</i><br>', 8, 2, NULL, '2006-04-09 16:13:48', NULL, NULL),
(105, 'Do you want to display the sort order for product model ?', 'PRODUCT_LIST_MODEL', '0', 'In the products listing, do you want to display the sort order for product model ?<br />Please specify the sort order<br /><br /><i>- 0 to hide the sort order<br />- 1 to display the sort order</i><br />', 8, 3, NULL, '2006-04-09 16:13:48', NULL, NULL),
(106, 'Do you want to display the sort order for the product name ?', 'PRODUCT_LIST_NAME', '2', 'In the products listing, do you want to display the sort order for the product name ?<br />Please specify the sort order<br /><br /><i>- 0 to hide the sort order<br>- 1 to display the sort order</i><br />', 8, 4, NULL, '2006-04-09 16:13:48', NULL, NULL),
(107, 'Do you want to display the sort order for the product price ?', 'PRODUCT_LIST_PRICE', '3', 'In the products listing, do you want to display the sort order for the product price ?<br />Please specify the sort order<br /><br /><i>- 0 to hide the sort order<br />- 1 to display the sort order</i><br />', 8, 5, NULL, '2006-04-09 16:13:48', NULL, NULL),
(108, 'Do you want to display the sort order for product stock ?', 'PRODUCT_LIST_QUANTITY', '0', 'In the products listing, do you want to display the sort order for product stock ?<br />Please specify the sort order<br /><br /><i>- 0 to hide the sort order<br />- 1 to display the sort order</i><br />', 8, 6, NULL, '2006-04-09 16:13:48', NULL, NULL),
(109, 'Do you want to display the sort order for the product weight ?', 'PRODUCT_LIST_WEIGHT', '0', 'In the products listing, do you want to display the sort order for the product weight ?<br />Please specify the sort order<br /><br /><i>- 0 to hide the sort order<br />- 1 to display the sort order</i><br />', 8, 7, NULL, '2006-04-09 16:13:48', NULL, NULL),
(112, 'Location of Prev/Next Navigation Bar (1-top, 2-bottom, 3-both)', 'PREV_NEXT_BAR_LOCATION', '2', 'Sets the location of the Prev/Next Navigation Bar (1-top, 2-bottom, 3-both)?<br /><br /><i>- 1 en haut<br>- 2 pour le bas<br>- 3 pour le haut et le bas</i><br>', 3, 3, NULL, '2006-04-09 16:13:48', NULL, NULL),
(113, 'Stock Check', 'STOCK_CHECK', 'true', 'Check if the stock level is sufficient.<br />', 9, 1, NULL, '2006-04-09 16:13:48', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(114, 'Count of stock', 'STOCK_LIMITED', 'true', 'Count of stock items ordered.<br />', 9, 2, NULL, '2006-04-09 16:13:48', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(115, 'Authorization purchase out of stock', 'STOCK_ALLOW_CHECKOUT', 'false', 'Allows the customer to order even if an item is not in stock.<br />', 9, 3, '2008-09-14 18:46:31', '2006-04-09 16:13:48', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(116, 'Showing out of stock the products', 'STOCK_MARK_PRODUCT_OUT_OF_STOCK', '***', 'Displays the following note if the product is no longer in stock.', 9, 4, NULL, '2006-04-09 16:13:48', NULL, NULL),
(117, 'Stock level warning', 'STOCK_REORDER_LEVEL', '5', 'Level alert stock replenishment.', 9, 5, NULL, '2006-04-09 16:13:48', NULL, NULL),
(118, 'Storage runtime', 'STORE_PAGE_PARSE_TIME', 'false', 'Stores the execution time of a page.<br />', 10, 1, '2007-05-20 01:00:47', '2006-04-09 16:13:48', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(119, 'File location for the execution stores', 'STORE_PAGE_PARSE_TIME_LOG', '/home/www/site/shop/Core/Work/Log/admin.log', 'Path and file name of the runtime.', 10, 2, '2008-09-15 10:07:36', '2006-04-09 16:13:48', NULL, NULL),
(120, 'Date format executions', 'STORE_PARSE_DATE_TIME_FORMAT', '%d/%m/%Y %H:%M:%S', 'Date format executions.', 10, 3, NULL, '2006-04-09 16:13:48', NULL, NULL),
(121, 'Display runtime', 'DISPLAY_PAGE_PARSE_TIME', 'false', 'displays the execution time of a page (storage runtime must be enabled and the selected location in the file for the execution storage).<br />', 10, 4, '2007-06-03 16:58:14', '2006-04-09 16:13:48', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(123, 'Use the file cache', 'USE_CACHE', 'false', 'Use the cache functionalities', 11, 1, '2006-07-18 00:13:26', '2006-04-09 16:13:48', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(125, 'Method of transmission of email', 'EMAIL_TRANSPORT', 'sendmail', 'Specifies whether the server uses a local connection to sendmail or SMTP connection via TCP / IP. For Windows Servers and MacOS, you should select SMTP.', 12, 1, NULL, '2006-04-09 16:13:48', NULL, 'clic_cfg_set_boolean_value(array(''sendmail'', ''gmail'', ''smtp''))'),
(126, 'Newline header emails', 'EMAIL_LINEFEED', 'LF', 'Set the characters used to separate headers emails.', 12, 2, NULL, '2006-04-09 16:13:48', NULL, 'clic_cfg_set_boolean_value(array(''LF'', ''CRLF''))'),
(127, 'Use MIME HTML for sending emails', 'EMAIL_USE_HTML', 'false', 'Send emails in html or plain text.<br />', 12, 3, '2008-09-15 22:57:14', '2006-04-09 16:13:48', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(128, 'Check the email address by the DNS', 'ENTRY_EMAIL_ADDRESS_CHECK', 'false', 'Check the email address through a DNS server.<br />', 12, 4, NULL, '2006-04-09 16:13:48', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(129, 'Activation emails', 'SEND_EMAILS', 'true', 'Allow sending emails.<br />', 12, 5, '2008-09-16 10:52:38', '2006-04-09 16:13:48', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(130, 'Allow downloading', 'DOWNLOAD_ENABLED', 'false', 'Validate the download function of the products.<br />', 13, 1, NULL, '2006-04-09 16:13:48', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(131, 'Download by redirect', 'DOWNLOAD_BY_REDIRECT', 'false', 'Use redirection for download. Turn off non-UNIX systems.<br />', 13, 2, NULL, '2006-04-09 16:13:48', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(132, 'Timeouts downloads', 'DOWNLOAD_MAX_DAYS', '7', 'Number of days before expiration of download link.<br />(0 for no limit)', 13, 3, NULL, '2006-04-09 16:13:48', NULL, ''),
(133, 'Maximum number of downloads', 'DOWNLOAD_MAX_COUNT', '5', 'Maximum number of downloads allowed.<br />(0 for none)', 13, 4, NULL, '2006-04-09 16:13:48', NULL, ''),
(134, 'Enable GZip compression', 'GZIP_COMPRESSION', 'true', 'Enable HTTP Compression GZip.<br />', 14, 1, '2006-09-23 01:42:33', '2006-04-09 16:13:48', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(135, 'Level Compression', 'GZIP_LEVEL', '5', 'Determine the level of compression between 0-9.<br />(0 = minimum, 9 = maximum)<br>Recommended : 5.', 14, 2, NULL, '2006-04-09 16:13:48', NULL, NULL),
(138, 'Check the session ID', 'SESSION_CHECK_SSL_SESSION_ID', 'false', 'Confirm SSL_SESSION_ID on each page request secure HTTPS.<br />', 15, 3, NULL, '2006-04-09 16:13:48', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(139, 'Check the user', 'SESSION_CHECK_USER_AGENT', 'false', 'Confirm the client browser on each page request.<br />', 15, 4, NULL, '2006-04-09 16:13:48', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(140, 'Check the IP address', 'SESSION_CHECK_IP_ADDRESS', 'false', 'Confirm the IP address of the client on each page request.<br />', 15, 5, NULL, '2006-04-09 16:13:48', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(141, 'Prevent spider sessions', 'SESSION_BLOCK_SPIDERS', 'true', 'Prevent known spiders from starting a session.<br />', 15, 6, NULL, '2006-04-09 16:13:48', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(143, 'Please select the website template', 'SITE_THEMA', 'Default', 'Please select template.<br><br><font color="#FF0000"><b>Note :</b> To customize your template, you must change the default boostrap template and override by css<br /></font>', 43, 1, '2016-10-15 16:36:55', '2006-04-09 18:20:19', NULL, 'clic_cfg_set_all_template_directory_list_pull_down'),
(144, 'Hide the price for visitors', 'PRICES_LOGGED_IN', 'false', 'Hide the price unregistered visitors.<br />', 17, 3, '2006-04-26 19:36:44', '2001-11-17 11:22:55', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(145, 'Method on price (Discount or Surcharge)', 'B2B', 'false', 'Option <i><b>false</b></i> allows a discount on the price, <i><b>true</b></i> allows a price increase.', 17, 2, '2006-04-11 18:32:13', '2003-10-06 17:24:00', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(146, 'Approval of professional members', 'MEMBER', 'true', 'Option <i><b>true</b></i> allows a control to approve the creation of new professionals accounts <br /><br /><font color="FF0000"><b>Note :</b> The approval takes place from the Clients menu -> Pending clients</font>', 17, 4, '2006-10-20 00:49:26', '2004-02-26 19:30:00', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(147, 'Get an e-mail to the registration of a new customer', 'EMAIL_CREAT_ACCOUNT_PRO', 'true', 'Get an email when registering a new customer Business.<br />', 17, 5, '2007-05-05 13:23:32', '2006-04-29 00:00:00', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(148, 'Display the civility <i>(man & woman)</i>', 'ACCOUNT_GENDER_PRO', 'true', 'Display two checkboxes on civility in the registration form.<br />', 18, 1, '2006-10-29 19:49:55', '2006-04-09 16:13:48', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(149, 'Display the Date of birth', 'ACCOUNT_DOB_PRO', 'true', 'Display the date of birth in the registration form.<br />', 18, 2, '2006-10-29 16:07:10', '2006-04-09 16:13:48', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(150, 'Display the Company', 'ACCOUNT_COMPANY_PRO', 'true', 'Display company field in the "My Account" and the registration form.<br />', 18, 3, '2006-10-29 19:49:34', '2006-04-09 16:13:48', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(151, 'Display an additional address', 'ACCOUNT_SUBURB_PRO', 'true', 'Display address further in the registration form.<br />', 18, 4, '2006-10-29 19:50:30', '2006-04-09 16:13:48', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(152, 'Display the state and / or Department', 'ACCOUNT_STATE_PRO', 'true', 'Display the department field (state) in the registration form<br />', 18, 5, '2006-10-29 19:50:57', '2006-04-09 16:13:48', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(153, 'Display the registration number of the company', 'ACCOUNT_SIRET_PRO', 'false', 'Display the registration number of the company in the registration form des clients <i>(eg for RCS France or Quebec NEQ)</i>.<br />', 18, 6, '2006-10-29 16:04:49', '2006-04-26 14:44:07', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(154, 'Display the nomenclature number of society', 'ACCOUNT_APE_PRO', 'false', 'Display the number of the nomenclature of the company in the registration form <i>(eg : 721Z for APE code in France)</i>.<br />', 18, 7, '2006-10-29 16:05:35', '2006-04-27 00:00:00', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(155, 'Display the VAT number (EU only)', 'ACCOUNT_TVA_INTRACOM_PRO', 'false', 'Display the VAT number in the registration form des clients.<br><br><font color="#FF0000"><b> Note :</b> Valid only for Europe</font>', 18, 8, '2006-10-29 16:05:56', '2006-04-26 14:43:56', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(156, 'Default country to display the dropdown menu', 'ACCOUNT_COUNTRY_PRO', '73', 'Please select the country default to display in the drop-down menu on the registration form.<br />', 18, 9, '2007-03-18 21:43:58', '2006-04-29 00:00:00', 'clic_cfg_use_function_get_country_name', 'clic_cfg_set_countries_pull_down_menu'),
(157, 'Customer group to assign default to new business customers', 'ACCOUNT_GROUP_DEFAULT_PRO', '1', 'Please select customer group assigned by default to new customers.', 18, 10, '2008-08-30 11:55:02', '2006-10-16 00:00:00', 'clic_cfg_use_function_get_customers_group_name', 'clic_cfg_set_customers_group_list_pull_down'),
(158, 'Allow editing on the information society', 'ACCOUNT_MODIFY_PRO', 'true', 'Allow default customers to change <b> <i> Name, Siret number, APE code and VAT number Intracom</i></b> of this company.<br />', 18, 11, '2006-10-15 22:50:18', '2006-04-29 00:00:00', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(159, 'Allow editing of primary billing address', 'ACCOUNT_MODIFY_ADRESS_DEFAULT_PRO', 'true', 'Allow default customers to change the address of its primary address book.<br />', 18, 12, '2006-10-15 22:43:28', '1000-01-01 00:00:00', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(160, 'Allow adding in the address book', 'ACCOUNT_ADRESS_BOOK_PRO', 'true', 'Allow default customers add addresses in his book.<br />', 18, 13, '2006-10-15 22:50:21', '2006-05-01 00:00:00', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(161, 'Minimum number of characters for the first name', 'ENTRY_FIRST_NAME_PRO_MIN_LENGTH', '2', 'Minimum number of characters required for the first.', 19, 1, '2006-10-29 22:51:30', '2006-10-19 00:00:00', NULL, NULL),
(162, 'Minimum number of characters for the name', 'ENTRY_LAST_NAME_PRO_MIN_LENGTH', '2', 'Minimum number of characters required for the name.', 19, 2, '2006-10-29 22:30:18', '2006-10-19 00:00:00', NULL, NULL),
(163, 'Minimum number of characters for the date of birth', 'ENTRY_DOB_PRO_MIN_LENGTH', '10', 'Minimum number of characters for the date of birth.', 19, 3, NULL, '2006-10-19 00:00:00', NULL, NULL),
(165, 'Minimum number of characters for the address', 'ENTRY_STREET_ADDRESS_PRO_MIN_LENGTH', '3', 'Minimum number of characters for the address.', 19, 5, '2006-10-29 22:30:35', '2006-10-19 00:00:00', NULL, NULL),
(166, 'Minimum number of characters for the company', 'ENTRY_COMPANY_PRO_MIN_LENGTH', '4', 'Minimum number of characters for the company.', 19, 6, '2006-10-29 16:08:26', '2006-10-19 00:00:00', NULL, NULL),
(167, 'Minimum number of characters for the registration number of the company', 'ENTRY_SIRET_MIN_LENGTH', '14', 'Minimum number of characters required for the registration number of the company.<br><br><i>(eg for RCS France or Quebec NEQ)</i>', 19, 7, '2006-10-29 16:09:04', '2006-10-19 00:00:00', NULL, NULL),
(168, 'Minimum number of characters for the nomenclature number of the company', 'ENTRY_CODE_APE_MIN_LENGTH', '4', 'Minimum number of characters required for the nomenclature of the company.<br><br><i>(eg 721Z for APE code in France)</i>', 19, 8, '2006-10-29 16:09:50', '2006-10-19 00:00:00', NULL, NULL),
(169, 'Minimum number of characters for the VAT number (EU only)', 'ENTRY_TVA_INTRACOM_MIN_LENGTH', '14', 'Minimum number of characters required for the VAT number (excluding the ISO country code is automatically indicated).<br /><br /><font color="#FF0000"><b> Note :</b> Valid only for europe</font>', 19, 9, '2006-10-29 16:10:35', '2006-10-19 00:00:00', NULL, NULL),
(170, 'Minimum number of characters for the ZIP code', 'ENTRY_POSTCODE_PRO_MIN_LENGTH', '3', 'Minimum number of characters for the ZIP code.', 19, 10, '2006-10-29 22:31:16', '2006-10-19 00:00:00', NULL, NULL),
(171, 'Minimum number of characters for the city', 'ENTRY_CITY_PRO_MIN_LENGTH', '3', 'Minimum number of characters for the city.', 19, 11, '2006-10-29 22:31:31', '2006-10-19 00:00:00', NULL, NULL),
(172, 'Minimum number of characters for the department or state', 'ENTRY_STATE_PRO_MIN_LENGTH', '3', 'Minimum number of characters for the department or state.', 19, 12, '2006-10-29 22:31:47', '2006-10-19 00:00:00', NULL, NULL),
(173, 'Minimum number of characters for the phone', 'ENTRY_TELEPHONE_PRO_MIN_LENGTH', '3', 'Minimum number of characters for the phone.', 19, 13, '2006-10-29 16:21:09', '2006-10-19 00:00:00', NULL, NULL),
(174, 'Minimum number of characters for the password', 'ENTRY_PASSWORD_PRO_MIN_LENGTH', '5', 'Minimum number of characters for the password.', 19, 14, NULL, '2006-10-19 00:00:00', NULL, NULL),
(175, 'Maximum number of characters for the company name', 'ENTRY_COMPANY_PRO_MAX_LENGTH', '128', 'Maximum number of characters for the company name.', 20, 1, '2006-10-29 15:21:20', '2006-10-29 00:00:00', NULL, NULL),
(176, 'Maximum number of characters for the registration of the company', 'ENTRY_SIRET_MAX_LENGTH', '14', 'Maximum number of characters for the registration of the company.<br><br><i>(eg for RCS France or Quebec NEQ)</i>', 20, 2, '2006-10-29 15:21:14', '2006-10-29 00:00:00', NULL, NULL),
(177, 'Maximum number of characters for the nomenclature of the company', 'ENTRY_CODE_APE_MAX_LENGTH', '4', 'Maximum number of characters for the nomenclature of the company.<br><br><i>(eg 721Z for APE code in France)</i>', 20, 3, '2006-10-29 15:21:06', '2006-10-29 00:00:00', NULL, NULL),
(178, 'Maximum number of characters for the EU VAT (Europe only)', 'ENTRY_TVA_INTRACOM_MAX_LENGTH', '14', 'Maximum number of characters for the EU VAT (excluding the ISO country code is automatically indicated).<br><br><font color="#FF0000"><b> Note :</b> Valide uniquement pour l''europe</font>', 20, 4, '2006-10-29 15:20:57', '2006-10-29 00:00:00', NULL, NULL),
(209, 'Installed Modules', '', '', 'This is automatically updated. No need to edit.', 6, 0, NULL, '2006-08-21 23:28:24', NULL, NULL),
(234, 'Please indicate the maximum number of rows you want to displayed in the list of administration', 'MAX_DISPLAY_SEARCH_RESULTS_ADMIN', '20', 'Affiche un nombre de ligne maximale dans afficher dans les listing de l''administration', 21, NULL, '2007-06-03 13:09:14', '1000-01-01 00:00:00', NULL, NULL),
(235, 'Receive emails Registered customers', 'EMAIL_INFORMA_ACCOUNT_ADMIN', 'true', 'Do you want to receive the registration email clients in the creation of his account ?<br />', 22, 1, '2007-05-05 13:33:01', '1000-01-01 00:00:00', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(236, 'Last Database Restore', 'DB_LAST_RESTORE', 'ClicShopping_05_05_2007_v2.sql', 'Last database restore file', 6, 0, '1000-01-01 00:00:00', '2007-05-07 10:12:36', '', ''),
(318, 'Store Administration to use (B2C, B2B or B2C/B2B)', 'MODE_MANAGEMENT_B2C_B2B', 'B2C_B2B', 'Please select below the setup mode to use for the registration of your clients and the operation of the store.', 17, 1, '2008-09-14 20:47:30', '2007-06-24 02:52:29', NULL, 'clic_cfg_set_boolean_value(array(''B2C'', ''B2B'', ''B2C_B2B''))'),
(320, 'Are you in a country managing a double tax sale ?', 'DISPLAY_DOUBLE_TAXE', 'false', 'Position <i>True</i> you can manage 2 taxes (eg Federalists States - Province / Federal) on your bill. <br />', 25, 2, '2008-09-15 18:41:51', '2007-07-15 00:00:00', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(321, 'Do you want to display the "Accept the general conditions"', 'DISPLAY_CONDITIONS_ON_CHECKOUT', 'true', 'Would you like to view the terms and conditions of purchase during the checkout process ?<br />', 25, 3, NULL, '2007-07-15 00:00:00', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(322, 'Do you want to display the terms of confidentiality to create an account', 'DISPLAY_PRIVACY_CONDITIONS', 'true', 'Do you want to see the conditions of privacy during the process of account creation ?<br />', 25, 4, NULL, '2007-07-15 00:00:00', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(323, 'URL terms of sale', 'SHOP_CODE_URL_CONDITIONS_VENTE', 'index.php?Info&Content&pagesId=4', 'Please indicate the URL terms of sale.', 25, 5, NULL, '2007-07-15 00:00:00', NULL, NULL),
(324, 'URL Privacy Policy', 'SHOP_CODE_URL_CONFIDENTIALITY', 'index.php?Info&Content&pagesId=5', 'Please indicate the URL of the Privacy Policy.', 25, 6, NULL, '2007-07-15 00:00:00', NULL, NULL),
(325, 'Capital of the company', 'SHOP_CODE_CAPITAL', 'SARL au capital de 4000 €', 'Please indicate your company''s capital.', 25, 7, '2008-09-15 11:45:32', '2007-07-15 00:00:00', NULL, NULL),
(326, 'Intracommunity VAT of the Company (Europe only)', 'TVA_SHOP_INTRACOM', 'TVA Intracommunautaire : FR14568557555', 'Please indicate your company''s VAT registration.<br/ ><br />- <i>Leave blank if it does not apply to you.</i>', 25, 8, NULL, '2007-07-15 00:00:00', NULL, NULL),
(327, 'Number of provincial tax', 'TVA_SHOP_PROVINCIAL', 'TPS/GST : R127066546', 'Please indicate the administrative number of the provincial tax (ex : TPS/GST : R127066546).<br /><br />- <i>Leave blank if it does not apply to you.</i>', 25, 9, NULL, '2007-07-15 00:00:00', NULL, NULL),
(328, 'Number of federal tax', 'TVA_SHOP_FEDERAL', 'TVQ/QST : 1006197104', 'Please specify the number of administrative federal tax(ex TVQ/QST : 1006197104).<br /><br />- <i>Leave blank if it does not apply to you.</i>', 25, 10, NULL, '2007-07-15 00:00:00', NULL, NULL),
(330, 'Registration number of the company', 'SHOP_CODE_RCS', 'RCS : 1234567', 'Please specify the registration number of your company (ex RCS : 1234567).<br /><br />- <i>Leave blank if it does not apply to you.</i>', 25, 11, '2008-09-15 09:46:19', '2007-07-15 00:00:00', NULL, NULL),
(331, 'Nomenclature number (or otherwise) of the company', 'SHOP_CODE_APE', 'Code APE : 721Z', 'Please specify the number of the Nomenclature of your company (ex : Code APE : 721z).<br /><br />- <i>Leave blank if it does not apply to you.</i>', 25, 12, NULL, '2007-07-15 00:00:00', NULL, NULL),
(332, 'Legal information on invoices', 'SHOP_DIVERS', '', 'Other legal information to be included on invoices.<br /><br />- <i>Leave blank if it does not apply to you.</i>', 25, 13, NULL, '2007-07-15 00:00:00', NULL, NULL),
(333, 'Display near the price an indication of the type of tax', 'DISPLAY_PRODUCT_PRICE_VALUE_TAX', 'false', 'display after price an indication if the product price is taxed (eg VAT) or not taxed (eg VAT).<br />', 22, 2, '2018-07-31 22:28:53', '2008-04-14 00:00:00', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(334, 'Display near the price of a indiquation tax type (for customer groups)', 'DISPLAY_PRODUCT_PRICE_VALUE_TAX_PRO', 'true', 'Display near the price if the product price is taxed (eg VAT) or untaxed(ex: HT) for customer groups.<br />', 17, 6, NULL, '2008-04-14 00:00:00', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(336, 'Do you want to remove the header of PDF invoices and delivery notes', 'DISPLAY_INVOICE_HEADER', 'false', 'If yes (True) then the header will be deleted invoices.<br />', 26, 2, NULL, '2007-07-15 00:00:00', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(337, 'Do you want to remove footer of PDF invoices and delivery notes', 'DISPLAY_INVOICE_FOOTER', 'false', 'If yes (True) then the footer of invoices will be deleted.<br />', 26, 3, NULL, '2007-07-15 00:00:00', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(338, 'Filename of the logo to appear on the invoice and delivery notes', 'INVOICE_LOGO', 'invoice_logo.png', 'Please specify the name of your logo.<br /><br /><font color="#FF0000"><b>Note :</b> our logo (gif, jpg, png) must be inserted in the directory image/logo/invoice.<br />Be careful its height</font>', 7, 6, '2006-10-23 22:49:44', '2006-04-09 16:13:47', NULL, NULL),
(339, 'Order status to display invoices', 'INVOICE_DISPLAY_ORDER_STATUT', '1', 'Please select below the default status that will allow to print invoices.<br><br><font color="#FF0000"><b>Note :</b> Other articles will print a purchase order.</font><br />', 26, 5, '2008-06-23 23:42:37', '2008-06-23 00:00:00', 'clic_cfg_use_get_order_status_title', 'clic_cfg_set_order_statuses_pull_down_menu'),
(340, 'Display Method bills', 'INVOICE_DISPLAY_ORDER', 'true', 'On yes (true) you will have the ability to display purchase orders and invoices by status configured by default.<br />', 26, 4, '2008-06-23 23:15:21', '2008-06-23 00:00:00', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(341, 'ClicShopping Version', 'PROJECT_VERSION', 'ClicShopping est une marque déposée (INPI : 3810384) V2.55 - All right Reserved - ', 'Name and version ClicShopping', 0, NULL, NULL, '1000-01-01 00:00:00', NULL, NULL),
(342, 'Specify the maximum quantity that the customer can order in his basket', 'MAX_QTY_IN_CART', '99', 'Insert a maximum quantity that the customer can put in the basket for an order.<br><i> - 0 for no limit</i><br />', 3, 19, NULL, '2008-08-30 10:21:58', NULL, NULL),
(356, 'Please enter your delivery time by defaults to indicate at your customers', 'DISPLAY_SHIPPING_DELAY', '4 days', 'Please indicate your delivery time products to your customer by default<br><br>.<b>Note :</b><br /><i>- For France this information is mandatory (laws Chatel)</i>', 25, 14, '2006-10-23 22:49:44', '2006-04-09 16:13:47', NULL, NULL),
(357, 'Default state for an edition of invoice / order PDF', 'DEFAULT_ORDERS_STATUS_INVOICE_ID', '1', 'When a new generation editing invoice / order PDF is created, his order status will be assigned to it.', 6, 0, NULL, '2006-04-09 16:13:48', NULL, NULL),
(376, 'Installed Modules', 'MODULE_PAYMENT_INSTALLED', 'Payment\\COD\\CO', 'This is automatically updated. No need to edit.', 6, 0, '2016-10-12 17:47:24', '2008-09-16 16:13:41', NULL, NULL),
(377, 'Specify the minimum quantity that the customer can insert in his basket', 'MAX_MIN_IN_CART', '1', 'Insert a minimum default quantity that the customer must put in the basket for an order.<br><br><i> - 1 : for a default quantity</i></br><br><i> - 0 : prevents all orders made on the site by users (not recommended)</i>', 3, 19, NULL, '2008-08-30 10:21:58', NULL, NULL),
(399, 'Installed Modules', 'MODULE_SHIPPING_INSTALLED', ';Shipping\\Item\\IT', 'This is automatically updated. No need to edit.', 6, 0, '2018-07-30 08:58:19', '2008-12-05 19:09:42', NULL, NULL),
(433, 'Installed Modules', 'MODULE_ORDER_TOTAL_INSTALLED', 'OrderTotal\\SubTotal\\ST;OrderTotal\\TotalShipping\\SH;OrderTotal\\TotalTax\\TX;OrderTotal\\Total\\TO', 'This is automatically updated. No need to edit.', 6, 0, '2018-07-30 08:57:47', '2008-12-05 19:10:43', NULL, NULL),
(445, 'Coupon number assigned to the customer during the account creation', 'COUPON_CUSTOMER', '', 'For any change in the coupon code, please refer to the Marketing / coupon section of your menu', 0, NULL, NULL, '1000-01-01 00:00:00', ' ', NULL),
(446, 'Coupon number assigned to the customer during the account creation B2B', 'COUPON_CUSTOMER_B2B', '', 'For any change in the coupon code, please refer to the Marketing / coupon section of your menu', 0, NULL, NULL, '1000-01-01 00:00:00', ' ', NULL),
(456, 'Do you want to receive an email alert for the setting of stock Alert ?', 'STOCK_ALERT_PRODUCT_REORDER_LEVEL', 'false', 'An email alert will be sent if the stock reaches its alert level ?<br />', 9, 6, NULL, '1000-01-01 00:00:00', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(457, 'Do you want to receive an email alert for sold out products ?', 'STOCK_ALERT_PRODUCT_SOLD_OUT', 'false', 'An email alert will be sent if the stock is below 0 ?<br />', 9, 7, NULL, '1000-01-01 00:00:00', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(460, 'Do you want to insert a security code to export files xml, txt, csv generated ?', 'EXPORT_CODE', 'Gh87yDE', 'This code allows access to data import by people or robots that are allowed to perform this operation. We strongly recommend that you change the source code and create a complex (letters and numbers).', 36, 1, NULL, '1000-01-01 00:00:00', NULL, NULL),
(462, 'Specify the number of days you want to see the little icon appear next to your new products ?', 'DAY_NEW_PRODUCTS_ARRIVAL', '30', 'Please indicate the number of days you want to display a small icon "new". <br> In terms of the number of days, the icon will not be displayed<br />', 3, 9, NULL, '1000-01-01 00:00:00', NULL, NULL),
(503, 'Small image height for administration', 'SMALL_IMAGE_HEIGHT_ADMIN', '70', 'Number of pixels for the height of the small images articles.', 23, 8, '2018-07-31 16:45:06', '2006-04-09 16:13:48', NULL, NULL),
(504, 'Small Image width administration', 'SMALL_IMAGE_WIDTH_ADMIN', '70', 'The number of pixels for the width of the header image.', 23, 9, '2018-07-31 16:45:11', '2006-04-09 16:13:48', NULL, NULL),
(505, 'Modules installed', 'MODULE_ACTION_RECORDER_INSTALLED', 'ar_admin_login.php;ar_contact_us.php;ar_create_account.php;ar_create_account_pro.php;ar_reset_password.php;ar_tell_a_friend.php', 'liste des actions enregistrées concernant les modules (séparés par des points virgules). Mise à jour automatique. Ce n''est pas utile de l''editer.', 6, 0, '2019-01-16 19:05:53', '2010-07-21 19:21:01', NULL, NULL),
(531, 'Installed Template Block Groups', 'TEMPLATE_BLOCK_GROUPS', 'header_tags;modules_account_customers;modules_advanced_search;modules_boxes;modules_checkout_confirmation;modules_checkout_payment;modules_checkout_shipping;modules_checkout_success;modules_contact_us;modules_create_account;modules_create_account_pro;modules_footer;modules_footer_suffix;modules_front_page;modules_header;modules_index_categories;modules_login;modules_products_favorites;modules_products_featured;modules_products_info;modules_products_listing;modules_products_new;modules_products_reviews;modules_products_search;modules_products_special;modules_shopping_cart;modules_sitemap;modules_tell_a_friend;modules_products_recommendations', 'This is automatically updated. No need to edit.', 6, 0, '2018-07-31 15:43:58', '2010-11-12 21:28:47', NULL, NULL),
(534, 'Installed Modules', 'MODULE_BOXES_INSTALLED', '', 'List of box module filenames separated by a semi-colon. This is automatically updated. No need to edit.', 6, 0, NULL, '2011-01-17 19:45:47', NULL, NULL),
(536, 'Please indicate the type of default prefix for the model of the product', 'CONFIGURATION_PREFIX_MODEL', 'REF-', 'Please indicate the type of default prefix that you want on the product number.<br /><br /><i>ex : product model : <b>REF-</b>product number ', 7, 7, NULL, '2011-01-17 19:45:47', NULL, NULL),
(538, 'Do you want to show mobile phone', 'ACCOUNT_CELLULAR_PHONE', 'false', 'Display the the field cell phone number in the "My Account" and the registration form.<br />', 5, 6, '2006-10-23 01:16:20', '2006-04-09 16:13:48', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(540, 'Do you want to display mobile phone ?', 'ACCOUNT_CELLULAR_PHONE_PRO', 'false', 'Display the the field cell phone number in the "My Account" and the registration form.<br />', 18, 161, '2006-10-23 01:16:20', '2006-04-09 16:13:48', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(542, 'Please indicate the color in RGB text editing invoices / orders', 'INVOICE_RGB', '158,11,14', 'Veuillez indiquer la couleur du texte au format RGB<br><br><font color="#FF0000"><b>Note :</b>Each number must be separated by a comma(ex : 0,0,0 for the black)</font><br>', 26, 5, '2007-06-02 15:39:18', '2006-04-09 16:13:47', NULL, NULL),
(544, 'Default status for orders by type of quantity', 'DEFAULT_PRODUCTS_QUANTITY_UNIT_STATUS_ID', '1', 'When a new type of quantity is created, this status will be assigned.', 6, 0, NULL, '2006-04-09 16:13:48', NULL, NULL),
(562, 'Please indicate the maximum number of attributes to display in the file setting attributes', 'MAX_ROW_LISTS_OPTIONS', '17', 'Please indicate the maximum number of attributes to display', 21, 2, '1000-01-01 00:00:00', '1000-01-01 00:00:00', NULL, NULL),
(567, 'Website module installed', 'WEBSITE_MODULE_INSTALLED', '1', 'Verification si le site contient un module installe ou pas', 0, 0, NULL, '1000-01-01 00:00:00', NULL, NULL),
(577, 'Do you want to manage the manual setup of images in the product description page', 'MANUAL_IMAGE_PRODUCTS_DESCRIPTION', 'false', 'The display of the image in manual will allow you to have better manage your images in the visual part of the product description and access to a gallery of images.<br />', 23, 3, '2007-05-21 14:23:13', '2006-04-09 16:13:47', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(579, 'Image Medium: please specify the width in the product description page', 'MEDIUM_IMAGE_WIDTH', '250', 'Please indicate the number of pixels for the width of the average images in the page description of the items', 4, 11, '2007-06-02 15:39:18', '2006-04-09 16:13:47', NULL, NULL),
(580, 'Image Medium: please specify the height in the product description page', 'MEDIUM_IMAGE_HEIGHT', '', 'Please indicate the number of pixels for the height of the average images in the page description of the items', 4, 12, '2007-06-02 15:39:18', '2006-04-09 16:13:47', NULL, NULL),
(581, 'Image Zoom: please specify the width in the product description page', 'BIG_IMAGE_WIDTH', '640', 'Please indicate the number of pixels for the width of the zoom images in the page description of the items', 4, 13, '2007-06-02 15:39:18', '2006-04-09 16:13:47', NULL, NULL),
(582, 'Image Zoom: please specify the height in the product description page', 'BIG_IMAGE_HEIGHT', '', 'Please specify the number of pixels for the height of the zoom images in the page description of the items', 4, 14, '2007-06-02 15:39:18', '2006-04-09 16:13:47', NULL, NULL),
(587, 'Display a department of the company in the Contact Us form', 'CONTACT_DEPARTMENT_LIST', '', 'Please indicate which departments to contact which will be listed in the Contact Us form.<br /><br /> <font color="#FF0000"><strong>Notes :</strong></font> <br /><br />- the list of departments must be under the form <strong>Departement<departement1@mondomaine.com>, Departement2<departement2@mondomaine.com> separated by a comma</strong><br />- The default Receive email is your contact email Store</font><br />', 1, 5, NULL, '1000-01-01 00:00:00', NULL, NULL),
(589, 'Do you want allow pre-order products if the authorization off stock purchases is True (under test)', 'PRE_ORDER_AUTORISATION', 'false', 'If you allow the preorder, the button sold out product will not appear anymore and the customer will spend his pre-order.<br />', 9, 3, '2007-05-21 14:23:13', '2006-04-09 16:13:47', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(590, 'Receive an email if a customer makes a comment', 'REVIEW_COMMENT_SEND_EMAIL', 'false', 'If the client makes a comment on a product you will receive an email alert.<br />', 1, 14, NULL, '2006-04-09 16:13:47', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(594, 'Size of site columns', 'GRID_CONTAINER_WITH', '12', 'Please enter a numeric value.', 43, 5, '2007-06-02 15:39:18', '2006-04-09 16:13:47', NULL, NULL),
(595, 'Column Size Site Content', 'GRID_CONTENT_WITH', '8', 'Please enter a numeric value.', 43, 6, '2007-06-02 15:39:18', '2006-04-09 16:13:47', NULL, NULL),
(599, 'Installed Modules', 'MODULE_MODULES_PRODUCTS_NEW_INSTALLED', 'pn_products_new.php', 'This is automatically updated. No need to edit.', 6, 0, '2018-07-30 22:46:27', '2013-09-01 11:31:18', NULL, NULL),
(601, 'Do you want to display the price if it is equal to 0', 'NOT_DISPLAY_PRICE_ZERO', 'true', 'Display or not the price of the product if it is equal to 0.<br />', 22, 2, NULL, '2006-04-09 16:13:47', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(602, 'Please indicate the maximum number of scores you want to display', 'MAX_DISPLAY_NEW_REVIEWS', '5', 'Please enter a numeric value.', 3, 8, '2007-06-02 15:39:18', '2006-04-09 16:13:47', NULL, NULL),
(603, 'Installed Modules', 'MODULE_ADMIN_DASHBOARD_INSTALLED', 'Configuration\\ChatGpt\\CheckAPI;Orders\\Orders\\TotalMonth;Orders\\Orders\\TotalCaByYear;Orders\\Orders\\TotalRevenue;Customers\\Customers\\TotalCustomers;Orders\\Orders\\Orders', 'This is automatically updated. No need to edit.', 6, 0, '2023-04-30 14:22:34', '2013-12-16 18:11:51', NULL, NULL),
(623, 'Installed Modules', 'MODULE_MODULES_HEADER_INSTALLED', 'he_header_noscript.php;he_header_message_stack.php;he_header_multi_template.php;he_header_page_manager_header_menu.php', 'This is automatically updated. No need to edit.', 6, 0, '2019-01-16 19:07:19', '2014-02-07 20:01:18', NULL, NULL),
(624, 'Installed Modules', 'MODULE_MODULES_FOOTER_INSTALLED', 'fo_footer_page_manager.php;fo_footer_multi_template.php', 'This is automatically updated. No need to edit.', 6, 0, '2018-07-31 09:33:37', '2014-02-07 20:01:20', NULL, NULL),
(625, 'Installed Modules', 'MODULE_MODULES_ADVANCED_SEARCH_INSTALLED', 'as_advanced_search_criteria.php;as_advanced_search_categories.php;as_advanced_search_manufacturers.php;as_advanced_search_price.php;as_advanced_search_date.php', 'This is automatically updated. No need to edit.', 6, 0, '2018-07-31 08:52:02', '2014-02-07 20:01:23', NULL, NULL),
(626, 'Installed Modules', 'MODULE_MODULES_SITEMAP_INSTALLED', 'si_sitemap_summary.php', 'This is automatically updated. No need to edit.', 6, 0, '2018-07-31 09:06:08', '2014-02-07 20:01:25', NULL, NULL),
(627, 'Installed Modules', 'MODULE_MODULES_CONTACT_US_INSTALLED', 'co_contact_us_page_manager.php;co_contact_us_form.php;co_contact_us_privacy_condition.php;co_contact_us_form_button_process.php;co_contact_us_success.php', 'This is automatically updated. No need to edit.', 6, 0, '2018-10-10 15:13:57', '2014-02-07 20:01:28', NULL, NULL),
(630, 'Installed Modules', 'MODULE_MODULES_PRODUCTS_INFO_INSTALLED', 'pi_products_info_name.php;pi_products_info_model.php;pi_products_info_gallery_baguettebox.php;pi_products_info_description.php;pi_products_info_options.php;pi_products_info_date_available.php;pi_products_info_price.php', 'This is automatically updated. No need to edit.', 6, 0, '2018-07-31 11:52:34', '2014-02-07 20:01:42', NULL, NULL);
INSERT INTO `clic_configuration` VALUES
(631, 'Installed Modules', 'MODULE_MODULES_SHOPPING_CART_INSTALLED', 'ms_shopping_cart_products_listing.php;ms_shopping_cart_show_total.php;ms_shopping_cart_out_of_stock_message.php;ms_shopping_cart_order_button_process.php', 'This is automatically updated. No need to edit.', 6, 0, '2018-08-01 11:29:16', '2014-02-07 20:01:44', NULL, NULL),
(632, 'Installed Modules', 'MODULE_MODULES_CHECKOUT_SHIPPING_INSTALLED', 'cs_checkout_shipping_address.php;cs_checkout_shipping_listing.php;cs_checkout_shipping_comment.php;cs_checkout_shipping_button_process.php', 'This is automatically updated. No need to edit.', 6, 0, '2018-07-31 15:00:11', '2014-02-07 20:01:47', NULL, NULL),
(633, 'Installed Modules', 'MODULE_MODULES_CHECKOUT_PAYMENT_INSTALLED', 'cp_checkout_payment_address.php;cp_checkout_payment_listing.php;cp_checkout_payment_comment.php;cp_checkout_payment_agreement.php;cp_checkout_payment_button_process.php', 'This is automatically updated. No need to edit.', 6, 0, '2018-07-31 15:00:45', '2014-02-07 20:01:56', NULL, NULL),
(634, 'Installed Modules', 'MODULE_MODULES_CHECKOUT_CONFIRMATION_INSTALLED', 'cc_checkout_confirmation_delivery_address.php;cc_checkout_confirmation_billing_address.php;cc_checkout_confirmation_products_listing.php;cc_checkout_confirmation_order_total.php;cc_checkout_confirmation_customers_comment.php;cc_checkout_confirmation_payment_information.php;cc_checkout_confirmation_law_hamon.php;cc_checkout_confirmation_process_order.php', 'This is automatically updated. No need to edit.', 6, 0, '2018-07-31 15:01:47', '2014-02-07 20:02:03', NULL, NULL),
(635, 'Installed Modules', 'MODULE_MODULES_CHECKOUT_SUCCESS_INSTALLED', 'chs_thank_you.php;chs_product_notifications.php;chs_downloads.php;chs_redirect_old_order.php', 'This is automatically updated. No need to edit.', 6, 0, '2018-07-31 15:02:14', '2014-02-07 20:02:07', NULL, NULL),
(636, 'Installed Modules', 'MODULE_MODULES_FRONT_PAGE_INSTALLED', 'fp_page_manager.php;fp_new_products.php', 'This is automatically updated. No need to edit.', 6, 0, '2018-07-30 18:48:54', '2014-02-07 20:02:11', NULL, NULL),
(637, 'Installed Modules', 'MODULE_MODULES_INDEX_CATEGORIES_INSTALLED', 'mc_categories_name.php;mc_new_products.php', 'This is automatically updated. No need to edit.', 6, 0, '2018-07-30 21:35:32', '2014-02-07 20:02:13', NULL, NULL),
(638, 'Installed Modules', 'MODULE_MODULES_LOGIN_INSTALLED', 'ml_login_connexion.php;ml_login_mode_b2b_b2c.php;ml_login_mode_b2b.php;ml_login_mode_b2c.php;ml_login_password_forgotten.php;ml_login_password_reset.php', 'This is automatically updated. No need to edit.', 6, 0, '2018-07-31 14:31:52', '2014-02-07 20:02:15', NULL, NULL),
(639, 'Installed Modules', 'MODULE_MODULES_ACCOUNT_CUSTOMERS_INSTALLED', 'ac_account_customers_list_order.php;ac_account_customers_my_account.php;ac_account_customers_history_info_address.php;ac_account_customers_history_info_invoice.php;ac_account_customers_history_info_order_comment.php;ac_account_customers_history_info_invoice_pdf.php;ac_account_customers_edit.php;ac_account_customers_gdpr.php;ac_account_customers_history.php;ac_account_customers_history_info_download.php;ac_account_customers_history_info_button_back.php;ac_account_customers_mailing.php;ac_account_customers_newsletter.php;ac_account_customers_notifications.php;ac_account_customers_password.php;ac_account_product_return.php;ac_account_product_return_history.php;ac_account_product_return_history_info.php', 'This is automatically updated. No need to edit.', 6, 0, '2018-07-31 15:51:35', '2014-02-07 20:02:18', NULL, NULL),
(640, 'Installed Modules', 'MODULE_MODULES_PRODUCTS_FAVORITES_INSTALLED', 'ph_products_favorites_title.php;ph_products_favorites.php', 'This is automatically updated. No need to edit.', 6, 0, '2019-08-22 21:06:18', '2014-02-07 20:02:23', NULL, NULL),
(641, 'Installed Modules', 'MODULE_MODULES_PRODUCTS_SPECIAL_INSTALLED', 'ps_products_special.php', 'This is automatically updated. No need to edit.', 6, 0, '2018-07-30 22:48:57', '2014-02-07 20:02:26', NULL, NULL),
(642, 'Minimum number of characters for the Mobile Phone', 'ENTRY_CELLULAR_PHONE_MIN_LENGTH', '3', 'inimum number of characters for the Mobile Phone.', 16, 10, '2006-10-23 22:49:04', '2006-04-09 16:13:48', NULL, NULL),
(643, 'Minimum number of characters for the Mobile Phone', 'ENTRY_CELLULAR_PHONE_PRO_MIN_LENGTH', '3', 'Minimum number of characters for the Mobile Phone.', 19, 13, '2006-10-29 16:21:09', '2006-10-19 00:00:00', NULL, NULL),
(644, 'Minimum number of characters for the provincial tax', 'ENTRY_CODE_TAXE_PROVINCIALE_MIN_LENGTH', '3', 'Minimum number of characters for the provincial tax.', 19, 15, '2006-10-29 16:21:09', '2006-10-19 00:00:00', NULL, NULL),
(645, 'Minimum number of characters for the federal tax', 'ENTRY_CODE_TAXE_FEDERALE_MIN_LENGTH', '3', 'Minimum number of characters for the federal tax.', 19, 16, '2006-10-29 16:21:09', '2006-10-19 00:00:00', NULL, NULL),
(646, 'Installed Modules', 'MODULE_HEADER_TAGS_INSTALLED', 'ht_googlefont.php;ht_breadcrumb.php', 'This is automatically updated. No need to edit.', 6, 0, '2019-01-16 19:37:07', '2014-02-07 20:07:32', NULL, NULL),
(647, 'Do you want to display the acceptance of the order by the consumer', 'CONFIGURATION_LAW_HAMON', 'true', 'Confirmation_button_process requires the consumer to accept its order. Do you want to display ?', 25, 3, NULL, '2006-04-09 16:13:47', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(649, 'SMTP hosts', 'EMAIL_SMTP_HOSTS', 'smtp.gmail.com', 'Assign SMTP host senders', 12, 6, '2016-10-11 21:51:18', '2014-05-16 11:19:59', NULL, NULL),
(650, 'SMTP authentication', 'EMAIL_SMTP_AUTHENTICATION', 'true', 'Do you want authenticated SMTP server?', 12, 7, NULL, '2014-05-16 11:19:59', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(651, 'SMTP Password', 'EMAIL_SMTP_PASSWORD', '', 'Add SMTP Password for SMTP protocol', 12, 8, '2016-10-11 21:51:40', '2014-05-16 11:19:59', 'clic_cfg_use_function_password', 'clic_cfg_set_input_password'),
(652, 'SMTP User Name', 'EMAIL_SMTP_USER', '', 'Add a user for the SMTP protocol', 12, 9, '2016-10-11 21:51:30', '2014-05-16 11:21:13', NULL, NULL),
(653, 'SMTP Reply To', 'EMAIL_SMTP_REPLYTO', '', 'Add SMTP reply to address', 12, 10, NULL, '2014-05-16 11:19:59', NULL, NULL),
(654, 'Do you want to use the SMTP secured protocol', 'EMAIL_SMTP_SECURE', 'no', 'use a secured SMTP protocol', 12, 11, NULL, '2014-06-02 11:52:39', NULL, 'clic_cfg_set_boolean_value(array(''no'', ''ssl'', ''tls''))'),
(655, 'Do you want the SMTP port', 'EMAIL_SMTP_PORT', '465', ' In function of your provider, the smtp can another value (25, 465, 588)', 12, 12, NULL, '2014-06-02 11:52:39', NULL, NULL),
(656, 'Do you want to be in open sales ou private sales ?', 'MODE_VENTE_PRIVEE', 'false', 'If your choice is true, all the customer must create an account to access at catalog sur les mode B2B/B2C - B2C- B2C)', 22, 2, NULL, '2014-08-20 15:51:12', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(687, 'What type of container should the page content (full-size or centered)', 'BOOTSTRAP_CONTAINER', 'container-fluid', 'Please, select your preference <br />(More information on : https://getbootstrap.com/docs/4.4/examples/grid/#containers)', 43, 1, '2016-10-11 17:07:12', '2015-02-19 21:39:51', NULL, 'clic_cfg_set_boolean_value(array(''container'', ''container-fluid'', ''container-sm'', ''container-md'', ''container-lg'', ''.container-xl''))'),
(689, 'Do you want to display the sort order by the product date ?', 'PRODUCT_LIST_DATE', '0', 'In the products listing, do you want to display the sort order by product date ?<br />Please specify the sort order<br /><br /><i>- 0 to hide the sort order<br />- 1 to display the sort order</i><br />', 8, 3, NULL, '2006-04-09 16:13:48', NULL, NULL),
(690, 'Installed Modules', 'MODULE_MODULES_FOOTER_SUFFIX_INSTALLED', 'sf_footer_suffix_copyright.php', 'This is automatically updated. No need to edit.', 6, 0, '2018-07-30 12:07:12', '2015-04-05 11:16:27', NULL, NULL),
(695, 'Use Search-Engine Safe Native URLs', 'SEARCH_ENGINE_FRIENDLY_URLS', 'false', 'Use search-engine safe urls for all site links', 34, 1, NULL, '2016-07-05 18:04:07', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(698, 'Verify SSL Certificates', 'CLICSHOPPING_HTTP_VERIFY_SSL', 'True', 'Verify SSL Certificates when making HTTPS API calls', 45, 1, NULL, '2018-07-29 16:22:38', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(699, 'Proxy', 'CLICSHOPPING_HTTP_PROXY', '', 'Send API requests through this proxy server (host:port, eg: proxy-server:8080)', 45, 2, NULL, '2018-07-29 16:22:38', NULL, NULL),
(700, 'Do you want to display State / Department dropown ?', 'ACCOUNT_STATE_DROPDOWN', 'true', 'Display departments or states when you select a country<br>', 5, 5, NULL, '2018-07-29 16:22:38', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(701, 'Default Shipping Unit', 'SHIPPING_WEIGHT_UNIT', '2', 'Select the unit of weight to be used for shipping', 7, 6, '2006-10-23 01:17:10', '2006-04-09 16:13:48', 'clic_cfg_use_get_weight_title', 'clic_cfg_set_weight_classes_pulldown_menu'),
(710, 'Status', 'CLICSHOPPING_APP_PRODUCTS_QUANTITY_UNIT_PQ_STATUS', 'True', 'Set True to enable or not the module', 6, 0, NULL, '2018-07-30 08:50:01', NULL, NULL),
(711, 'Sort Order', 'CLICSHOPPING_APP_PRODUCTS_QUANTITY_UNIT_PQ_SORT_ORDER', '30', 'The sort order location of the module shown in the available methods listing (lowest is displayed first).', 6, 0, NULL, '2018-07-30 08:50:01', NULL, NULL),
(712, 'Parameter [Products Quantity Unit App]', 'MODULE_MODULES_PRODUCTS_QUANTITY_UNIT_INSTALLED', 'Configuration\\ProductsQuantityUnit\\PQ', 'Parameter [Products Quantity Unit App]', 6, 0, NULL, '2018-07-30 08:50:01', NULL, NULL),
(713, 'Status', 'CLICSHOPPING_APP_ORDERS_STATUS_OU_STATUS', 'True', 'Set True to enable or not the module', 6, 0, NULL, '2018-07-30 08:53:46', NULL, NULL),
(714, 'Sort Order', 'CLICSHOPPING_APP_ORDERS_STATUS_OU_SORT_ORDER', '30', 'The sort order location of the module shown in the available methods listing (lowest is displayed first).', 6, 0, NULL, '2018-07-30 08:53:46', NULL, NULL),
(715, 'Parameter [Orders Status App]', 'MODULE_MODULES_ORDERS_STATUS_INSTALLED', 'Configuration\\OrdersStatus\\OU', 'Parameter [Orders Status App]', 6, 0, NULL, '2018-07-30 08:53:46', NULL, NULL),
(716, 'Status', 'CLICSHOPPING_APP_ORDERS_STATUS_INVOICE_OI_STATUS', 'True', 'Set True to enable or not the module', 6, 0, NULL, '2018-07-30 08:55:02', NULL, NULL),
(717, 'Sort Order', 'CLICSHOPPING_APP_ORDERS_STATUS_INVOICE_OI_SORT_ORDER', '30', 'The sort order location of the module shown in the available methods listing (lowest is displayed first).', 6, 0, NULL, '2018-07-30 08:55:02', NULL, NULL),
(718, 'Parameter [Orders Status Invoice App]', 'MODULE_MODULES_ORDERS_STATUS_INVOICE_INSTALLED', 'Configuration\\OrdersStatusInvoice\\OI', 'Parameter [Orders Status Invoice App]', 6, 0, NULL, '2018-07-30 08:55:02', NULL, NULL),
(719, 'Status', 'CLICSHOPPING_APP_SETTINGS_ST_STATUS', 'True', 'Set True to enable or not the module', 6, 0, NULL, '2018-07-30 08:55:24', NULL, NULL),
(720, 'Sort Order', 'CLICSHOPPING_APP_SETTINGS_ST_SORT_ORDER', '30', 'The sort order location of the module shown in the available methods listing (lowest is displayed first).', 6, 0, NULL, '2018-07-30 08:55:24', NULL, NULL),
(721, 'Parameter [Settings App]', 'MODULE_MODULES_SETTINGS_INSTALLED', 'Configuration\\Settings\\ST', 'Parameter [Settings App]', 6, 0, NULL, '2018-07-30 08:55:24', NULL, NULL),
(730, 'Status', 'CLICSHOPPING_APP_ORDER_TOTAL_SUBTOTAL_ST_STATUS', 'True', 'Set True to enable or not the module', 6, 0, NULL, '2018-07-30 08:59:08', NULL, NULL),
(731, 'Sort Order', 'CLICSHOPPING_APP_ORDER_TOTAL_SUBTOTAL_ST_SORT_ORDER', '200', 'The sort order location of the module shown in the available methods listing (lowest is displayed first).', 6, 0, NULL, '2018-07-30 08:59:08', NULL, NULL),
(732, 'Status', 'CLICSHOPPING_APP_ORDER_TOTAL_SHIPPING_SH_STATUS', 'True', 'Set True to enable or not the module', 6, 0, NULL, '2018-07-30 09:00:59', NULL, NULL),
(733, 'Provide free shipping for orders over the set amount', 'CLICSHOPPING_APP_ORDER_TOTAL_SHIPPING_SH_FREE_SHIPPING_OVER', '50', 'Free Shipping For Orders Over', 6, 0, NULL, '2018-07-30 09:00:59', NULL, NULL),
(734, 'Do you want to allow free shipping ?', 'CLICSHOPPING_APP_ORDER_TOTAL_SHIPPING_SH_FREE_SHIPPING', 'False', 'Allow Free Shipping', 6, 0, NULL, '2018-07-30 09:00:59', NULL, NULL),
(735, 'Sort Order', 'CLICSHOPPING_APP_ORDER_TOTAL_SHIPPING_SH_SORT_ORDER', '500', 'The sort order location of the module shown in the available methods listing (lowest is displayed first).', 6, 0, NULL, '2018-07-30 09:00:59', NULL, NULL),
(736, 'Provide free shipping for orders sent to the set destination', 'CLICSHOPPING_APP_ORDER_TOTAL_SHIPPING_SH_DESTINATION', 'national', 'Provide Free Shipping For Orders Made', 6, 0, NULL, '2018-07-30 09:00:59', NULL, NULL),
(737, 'Status', 'CLICSHOPPING_APP_ORDER_TOTAL_TAX_TX_STATUS', 'True', 'Set True to enable or not the module', 6, 0, NULL, '2018-07-30 09:01:47', NULL, NULL),
(738, 'Sort Order', 'CLICSHOPPING_APP_ORDER_TOTAL_TAX_TX_SORT_ORDER', '900', 'The sort order location of the module shown in the available methods listing (lowest is displayed first).', 6, 0, NULL, '2018-07-30 09:01:47', NULL, NULL),
(739, 'Status', 'CLICSHOPPING_APP_ORDER_TOTAL_TOTAL_TO_STATUS', 'True', 'Set True to enable or not the module', 6, 0, NULL, '2018-07-30 09:04:30', NULL, NULL),
(740, 'Sort Order', 'CLICSHOPPING_APP_ORDER_TOTAL_TOTAL_TO_SORT_ORDER', '1500', 'The sort order location of the module shown in the available payment method listing (lowest is displayed first).', 6, 0, NULL, '2018-07-30 09:04:30', NULL, NULL),
(741, 'Payment Zone', 'CLICSHOPPING_APP_COD_CO_ZONE', '0', 'Enable this payment module globally or limit it to customers shipping to the selected zone only.', 6, 0, NULL, '2018-07-30 09:07:07', NULL, NULL),
(742, 'Order Status', 'CLICSHOPPING_APP_COD_CO_PREPARE_ORDER_STATUS_ID', '1', 'Set this to the order status level that is assigned to new orders.', 6, 0, NULL, '2018-07-30 09:07:07', NULL, NULL),
(743, 'Do you want to display the payment module for B2C customer ?', 'CLICSHOPPING_APP_COD_CO_NO_AUTHORIZE', 'True', 'Display the payment module for B2C customer ?', 6, 0, NULL, '2018-07-30 09:07:07', NULL, NULL),
(744, 'Status', 'CLICSHOPPING_APP_COD_CO_STATUS', 'True', 'Set True to enable or not the module', 6, 0, NULL, '2018-07-30 09:07:07', NULL, NULL),
(745, 'Payment Logo', 'CLICSHOPPING_APP_COD_CO_LOGO', 'paiement_livraison.jpg', 'Please, indicate the file of the logo with the extension(.gif, .jpg, etc...) to display in the payment page.<br /><strong>Note :</strong></font><br />The logo must be in the directory sources/images/logos/payment/', 6, 0, NULL, '2018-07-30 09:07:07', NULL, NULL),
(746, 'Sort Order', 'CLICSHOPPING_APP_COD_CO_SORT_ORDER', '300', 'The sort order location of the module shown in the available methods listing (lowest is displayed first).', 6, 0, NULL, '2018-07-30 09:07:07', NULL, NULL),
(747, 'Status', 'CLICSHOPPING_APP_COUNTRIES_CT_STATUS', 'True', 'Set True to enable or not the module', 6, 0, NULL, '2018-07-30 09:10:07', NULL, NULL),
(748, 'Sort Order', 'CLICSHOPPING_APP_COUNTRIES_CT_SORT_ORDER', '30', 'The sort order location of the module shown in the available methods listing (lowest is displayed first).', 6, 0, NULL, '2018-07-30 09:10:07', NULL, NULL),
(749, 'Parameter [Countries App]', 'MODULE_MODULES_COUNTRIES_INSTALLED', 'Configuration\\Countries\\CT', 'Parameter [Countries App]', 6, 0, NULL, '2018-07-30 09:10:07', NULL, NULL),
(750, 'Status', 'CLICSHOPPING_APP_TAX_CLASS_TC_STATUS', 'True', 'Set True to enable or not the module', 6, 0, NULL, '2018-07-30 09:11:57', NULL, NULL),
(751, 'Sort Order', 'CLICSHOPPING_APP_TAX_CLASS_TC_SORT_ORDER', '30', 'The sort order location of the module shown in the available methods listing (lowest is displayed first).', 6, 0, NULL, '2018-07-30 09:11:57', NULL, NULL),
(752, 'Parameter [TaxClass App]', 'MODULE_MODULES_TAX_CLASS_INSTALLED', 'Configuration\\TaxClass\\TC', 'Parameter [TaxClass App]', 6, 0, NULL, '2018-07-30 09:11:57', NULL, NULL),
(753, 'Status', 'CLICSHOPPING_APP_ZONES_ZN_STATUS', 'True', 'Set True to enable or not the module', 6, 0, NULL, '2018-07-30 09:13:09', NULL, NULL),
(754, 'Sort Order', 'CLICSHOPPING_APP_ZONES_ZN_SORT_ORDER', '30', 'The sort order location of the module shown in the available methods listing (lowest is displayed first).', 6, 0, NULL, '2018-07-30 09:13:09', NULL, NULL),
(755, 'Parameter [Zones App]', 'MODULE_MODULES_ZONES_INSTALLED', 'Configuration\\Zones\\ZN', 'Parameter [Zones App]', 6, 0, NULL, '2018-07-30 09:13:09', NULL, NULL),
(756, 'Status', 'CLICSHOPPING_APP_TAX_RATES_TR_STATUS', 'True', 'Set True to enable or not the module', 6, 0, NULL, '2018-07-30 09:13:52', NULL, NULL),
(757, 'Sort Order', 'CLICSHOPPING_APP_TAX_RATES_TR_SORT_ORDER', '30', 'The sort order location of the module shown in the available methods listing (lowest is displayed first).', 6, 0, NULL, '2018-07-30 09:13:52', NULL, NULL),
(758, 'Parameter [Tax Rates App]', 'MODULE_MODULES_TAX_RATES_INSTALLED', 'Configuration\\TaxRates\\TR', 'Parameter [Tax Rates App]', 6, 0, NULL, '2018-07-30 09:13:52', NULL, NULL),
(759, 'Status', 'CLICSHOPPING_APP_TAX_GEO_ZONES_TG_STATUS', 'True', 'Set True to enable or not the module', 6, 0, NULL, '2018-07-30 09:14:57', NULL, NULL),
(760, 'Sort Order', 'CLICSHOPPING_APP_TAX_GEO_ZONES_TG_SORT_ORDER', '30', 'The sort order location of the module shown in the available methods listing (lowest is displayed first).', 6, 0, NULL, '2018-07-30 09:14:57', NULL, NULL),
(761, 'Parameter [Tax Geo Zones App]', 'MODULE_MODULES_TAX_GEO_ZONES_INSTALLED', 'Configuration\\TaxGeoZones\\TG', 'Parameter [Tax Geo Zones App]', 6, 0, NULL, '2018-07-30 09:14:57', NULL, NULL),
(762, 'Status', 'CLICSHOPPING_APP_CURRENCY_CR_STATUS', 'True', 'Set True to enable or not the module', 6, 0, NULL, '2018-07-30 09:15:35', NULL, NULL),
(763, 'Please insert the apikey from OpenxExchangeRates', 'CLICSHOPPING_APP_CURRENCY_CR_API_KEY', '', 'You must open a free account on openexchangerates.org o allow you to make the convertion rates.', 6, 0, NULL, '2018-07-30 09:15:36', NULL, NULL),
(764, 'Sort Order', 'CLICSHOPPING_APP_CURRENCY_CR_SORT_ORDER', '30', 'The sort order location of the module shown in the available methods listing (lowest is displayed first).', 6, 0, NULL, '2018-07-30 09:15:36', NULL, NULL),
(765, 'Parameter [Currency App]', 'MODULE_MODULES_CURRENCY_INSTALLED', 'Configuration\\Currency\\CR', 'Parameter [Currency App]', 6, 0, NULL, '2018-07-30 09:15:36', NULL, NULL),
(766, 'Status', 'CLICSHOPPING_APP_LANGUES_LG_STATUS', 'True', 'Set True to enable or not the module', 6, 0, NULL, '2018-07-30 09:16:08', NULL, NULL),
(767, 'Sort Order', 'CLICSHOPPING_APP_LANGUES_LG_SORT_ORDER', '30', 'The sort order location of the module shown in the available methods listing (lowest is displayed first).', 6, 0, NULL, '2018-07-30 09:16:08', NULL, NULL),
(768, 'Parameter [Languages App]', 'MODULE_MODULES_LANGUES_INSTALLED', 'Configuration\\Langues\\LG', 'Parameter [Languages App]', 6, 0, NULL, '2018-07-30 09:16:08', NULL, NULL),
(769, 'Status', 'CLICSHOPPING_APP_TEMPLATE_EMAIL_TE_STATUS', 'True', 'Set True to enable or not the module', 6, 0, NULL, '2018-07-30 09:19:23', NULL, NULL),
(770, 'Sort Order', 'CLICSHOPPING_APP_TEMPLATE_EMAIL_TE_SORT_ORDER', '30', 'The sort order location of the module shown in the available methods listing (lowest is displayed first).', 6, 0, NULL, '2018-07-30 09:19:23', NULL, NULL),
(771, 'Parameter [Template Email App]', 'MODULE_MODULES_TEMPLATE_EMAIL_INSTALLED', 'Configuration\\TemplateEmail\\TE', 'Parameter [Template Email App]', 6, 0, NULL, '2018-07-30 09:19:23', NULL, NULL),
(772, 'Status', 'CLICSHOPPING_APP_WEIGHT_WE_STATUS', 'True', 'Set True to enable or not the module', 6, 0, NULL, '2018-07-30 09:25:36', NULL, NULL),
(773, 'Sort Order', 'CLICSHOPPING_APP_WEIGHT_WE_SORT_ORDER', '30', 'The sort order location of the module shown in the available methods listing (lowest is displayed first).', 6, 0, NULL, '2018-07-30 09:25:36', NULL, NULL),
(774, 'Parameter [Weight App]', 'MODULE_MODULES_WEIGHT_INSTALLED', 'Configuration\\Weight\\WE', 'Parameter [Weight App]', 6, 0, NULL, '2018-07-30 09:25:36', NULL, NULL),
(777, 'Parameter [Categories App]', 'MODULE_MODULES_PRODUCTS_CATEGORIES_INSTALLED', 'Catalog\\Categories\\CT', 'Parameter [Categories App]', 6, 0, NULL, '2018-07-30 09:27:41', NULL, NULL),
(778, 'Status', 'CLICSHOPPING_APP_CATEGORIES_CT_STATUS', 'True', 'Set True to enable or not the module', 6, 0, NULL, '2018-07-30 10:08:22', NULL, NULL),
(779, 'Sort Order', 'CLICSHOPPING_APP_CATEGORIES_CT_SORT_ORDER', '30', 'The sort order location of the module shown in the available methods listing (lowest is displayed first).', 6, 0, NULL, '2018-07-30 10:08:22', NULL, NULL),
(780, 'Status', 'CLICSHOPPING_APP_CATALOG_PRODUCTS_PD_STATUS', 'True', 'Set True to enable or not the module', 6, 0, NULL, '2018-07-30 10:08:44', NULL, NULL),
(781, 'Sort Order', 'CLICSHOPPING_APP_CATALOG_PRODUCTS_PD_SORT_ORDER', '30', 'The sort order location of the module shown in the available methods listing (lowest is displayed first).', 6, 0, NULL, '2018-07-30 10:08:44', NULL, NULL),
(782, 'Parameter [Products Products App]', 'MODULE_MODULES_CATALOG_PRODUCTS_INSTALLED', 'Catalog\\Products\\PD', 'Parameter [Products Products App]', 6, 0, NULL, '2018-07-30 10:08:44', NULL, NULL),
(783, 'Status', 'CLICSHOPPING_APP_MANUFACTURERS_CM_STATUS', 'True', 'Set True to enable or not the module', 6, 0, NULL, '2018-07-30 10:10:02', NULL, NULL),
(784, 'Sort Order', 'CLICSHOPPING_APP_MANUFACTURERS_CM_SORT_ORDER', '300', 'The sort order location of the module shown in the available methods listing (lowest is displayed first).', 6, 0, NULL, '2018-07-30 10:10:02', NULL, NULL),
(785, 'Parameter [Manufacturers App]', 'MODULE_MODULES_MANUFACTURERS_INSTALLED', 'Catalog\\Manufacturers\\CM', 'Parameter [Manufacturers App]', 6, 0, NULL, '2018-07-30 10:10:02', NULL, NULL),
(786, 'Status', 'CLICSHOPPING_APP_SUPPLIERS_CS_STATUS', 'True', 'Set True to enable or not the module', 6, 0, NULL, '2018-07-30 10:11:21', NULL, NULL),
(787, 'Sort Order', 'CLICSHOPPING_APP_SUPPLIERS_CS_SORT_ORDER', '300', 'The sort order location of the module shown in the available methods listing (lowest is displayed first).', 6, 0, NULL, '2018-07-30 10:11:21', NULL, NULL),
(788, 'Parameter [Suppliers App]', 'MODULE_MODULES_SUPPLIERS_INSTALLED', 'Catalog\\Suppliers\\CS', 'Parameter [Suppliers App]', 6, 0, NULL, '2018-07-30 10:11:21', NULL, NULL),
(789, 'Status', 'CLICSHOPPING_APP_ARCHIVE_AR_STATUS', 'True', 'Set True to enable or not the module', 6, 0, NULL, '2018-07-30 10:12:30', NULL, NULL),
(790, 'Sort Order', 'CLICSHOPPING_APP_ARCHIVE_AR_SORT_ORDER', '30', 'The sort order location of the module shown in the available methods listing (lowest is displayed first).', 6, 0, NULL, '2018-07-30 10:12:30', NULL, NULL),
(791, 'Parameter [Archive Products App]', 'MODULE_MODULES_PRODUCTS_ARCHIVE_INSTALLED', 'Catalog\\Archive\\AR', 'Parameter [Archive Products App]', 6, 0, NULL, '2018-07-30 10:12:30', NULL, NULL),
(792, 'Status', 'CLICSHOPPING_APP_ORDERS_OD_STATUS', 'True', 'Set True to enable or not the module', 6, 0, NULL, '2018-07-30 10:13:14', NULL, NULL),
(793, 'Sort Order', 'CLICSHOPPING_APP_ORDERS_OD_SORT_ORDER', '30', 'The sort order location of the module shown in the available methods listing (lowest is displayed first).', 6, 0, NULL, '2018-07-30 10:13:14', NULL, NULL),
(794, 'Parameter [Orders App]', 'MODULE_MODULES_ORDERS_INSTALLED', 'Orders\\Orders\\OD', 'Parameter [Orders App]', 6, 0, NULL, '2018-07-30 10:13:14', NULL, NULL),
(795, 'Status', 'CLICSHOPPING_APP_CUSTOMERS_CS_STATUS', 'True', 'Set True to enable or not the module', 6, 0, NULL, '2018-07-30 10:13:53', NULL, NULL),
(796, 'Sort Order', 'CLICSHOPPING_APP_CUSTOMERS_CS_SORT_ORDER', '30', 'The sort order location of the module shown in the available methods listing (lowest is displayed first).', 6, 0, NULL, '2018-07-30 10:13:53', NULL, NULL),
(797, 'Parameter [Customers App]', 'MODULE_MODULES_CUSTOMERS_INFO_INSTALLED', 'Customers\\Customers\\CS', 'Parameter [Customers App]', 6, 0, NULL, '2018-07-30 10:13:53', NULL, NULL),
(798, 'Status', 'CLICSHOPPING_APP_CUSTOMERS_GROUPS_GR_STATUS', 'True', 'Set True to enable or not the module', 6, 0, NULL, '2018-07-30 10:15:23', NULL, NULL),
(799, 'Sort Order', 'CLICSHOPPING_APP_CUSTOMERS_GROUPS_GR_SORT_ORDER', '30', 'The sort order location of the module shown in the available methods listing (lowest is displayed first).', 6, 0, NULL, '2018-07-30 10:15:23', NULL, NULL),
(800, 'Parameter [Customers groups App]', 'MODULE_MODULES_CUSTOMERS_GROUPS_INSTALLED', 'Customers\\Groups\\GR', 'Parameter [Customers groups App]', 6, 0, NULL, '2018-07-30 10:15:23', NULL, NULL),
(801, 'Status', 'CLICSHOPPING_APP_CUSTOMERS_MEMBERS_ME_STATUS', 'True', 'Set True to enable or not the module', 6, 0, NULL, '2018-07-30 10:15:41', NULL, NULL),
(802, 'Sort Order', 'CLICSHOPPING_APP_CUSTOMERS_MEMBERS_ME_SORT_ORDER', '30', 'The sort order location of the module shown in the available methods listing (lowest is displayed first).', 6, 0, NULL, '2018-07-30 10:15:41', NULL, NULL),
(803, 'Parameter [Members App]', 'MODULE_MODULES_CUSTOMERS_MEMBERS_INSTALLED', 'Customers\\Members\\ME', 'Parameter [Members App]', 6, 0, NULL, '2018-07-30 10:15:41', NULL, NULL),
(804, 'Status', 'CLICSHOPPING_APP_REVIEWS_RV_STATUS', 'True', 'Set True to enable or not the module', 6, 0, NULL, '2018-07-30 10:15:59', NULL, NULL),
(805, 'Sort Order', 'CLICSHOPPING_APP_REVIEWS_RV_SORT_ORDER', '30', 'The sort order location of the module shown in the available methods listing (lowest is displayed first).', 6, 0, NULL, '2018-07-30 10:15:59', NULL, NULL),
(806, 'Parameter [Reviews App]', 'MODULE_MODULES_REVIEWS_INSTALLED', 'Customers\\Reviews\\RV', 'Parameter [Reviews App]', 6, 0, NULL, '2018-07-30 10:15:59', NULL, NULL),
(807, 'Status', 'CLICSHOPPING_APP_BANNER_MANAGER_BM_STATUS', 'True', 'Set True to enable or not the module', 6, 0, NULL, '2018-07-30 10:17:32', NULL, NULL),
(808, 'Sort Order', 'CLICSHOPPING_APP_BANNER_MANAGER_BM_SORT_ORDER', '30', 'The sort order location of the module shown in the available methods listing (lowest is displayed first).', 6, 0, NULL, '2018-07-30 10:17:32', NULL, NULL),
(809, 'Parameter [Banner Manager Products App]', 'MODULE_MODULES_BANNER_MANAGER_INSTALLED', 'Marketing\\BannerManager\\BM', 'Parameter [Banner Manager Products App]', 6, 0, NULL, '2018-07-30 10:17:32', NULL, NULL),
(810, 'Status', 'CLICSHOPPING_APP_SEO_SE_STATUS', 'True', 'Set True to enable or not the module', 6, 0, NULL, '2018-07-30 10:18:52', NULL, NULL),
(811, 'Sort Order', 'CLICSHOPPING_APP_SEO_SE_SORT_ORDER', '30', 'The sort order location of the module shown in the available methods listing (lowest is displayed first).', 6, 0, NULL, '2018-07-30 10:18:52', NULL, NULL),
(812, 'Parameter [Seo Manager App]', 'MODULE_MODULES_SEO_INSTALLED', 'Marketing\\SEO\\SE', 'Parameter [Seo Manager App]', 6, 0, NULL, '2018-07-30 10:18:52', NULL, NULL),
(813, 'Status', 'CLICSHOPPING_APP_PAGE_MANAGER_PM_STATUS', 'True', 'Set True to enable or not the module', 6, 0, NULL, '2018-07-30 10:19:48', NULL, NULL),
(814, 'Sort Order', 'CLICSHOPPING_APP_PAGE_MANAGER_PM_SORT_ORDER', '30', 'The sort order location of the module shown in the available methods listing (lowest is displayed first).', 6, 0, NULL, '2018-07-30 10:19:48', NULL, NULL),
(815, 'Parameter [Page Manager App]', 'MODULE_MODULES_PAGE_MANAGER_INSTALLED', 'Communication\\PageManager\\PM', 'Parameter [Page Manager App]', 6, 0, NULL, '2018-07-30 10:19:48', NULL, NULL),
(816, 'Status', 'CLICSHOPPING_APP_NEWSLETTER_NL_STATUS', 'True', 'Set True to enable or not the module', 6, 0, NULL, '2018-07-30 10:21:17', NULL, NULL),
(817, 'Sort Order', 'CLICSHOPPING_APP_NEWSLETTER_NL_SORT_ORDER', '30', 'The sort order location of the module shown in the available methods listing (lowest is displayed first).', 6, 0, NULL, '2018-07-30 10:21:17', NULL, NULL),
(818, 'Parameter [Newsletter App]', 'NL', 'Communication\\Newsletter\\NL', 'Parameter [Newsletter App]', 6, 0, NULL, '2018-07-30 10:21:17', NULL, NULL),
(819, 'Status', 'CLICSHOPPING_APP_EMAIL_EM_STATUS', 'True', 'Set True to enable or not the module', 6, 0, NULL, '2018-07-30 10:21:42', NULL, NULL),
(820, 'Sort Order', 'CLICSHOPPING_APP_EMAIL_EM_SORT_ORDER', '30', 'The sort order location of the module shown in the available methods listing (lowest is displayed first).', 6, 0, NULL, '2018-07-30 10:21:42', NULL, NULL),
(821, 'Parameter [E-Mail App]', 'MODULE_MODULES_EMAIL_INSTALLED', 'Communication\\EMail\\EM', 'Parameter [E-Mail App]', 6, 0, NULL, '2018-07-30 10:21:42', NULL, NULL),
(822, 'Status', 'CLICSHOPPING_APP_STATS_CUSTOMERS_SC_STATUS', 'True', 'Set True to enable or not the module', 6, 0, NULL, '2018-07-30 10:27:16', NULL, NULL),
(823, 'Sort Order', 'CLICSHOPPING_APP_STATS_CUSTOMERS_SC_SORT_ORDER', '300', 'The sort order location of the module shown in the available methods listing (lowest is displayed first).', 6, 0, NULL, '2018-07-30 10:27:16', NULL, NULL),
(824, 'Parameter [Stats Customers App]', 'MODULE_MODULES_STATS_CUSTOMERS_INSTALLED', 'Report\\StatsCustomers\\SC', 'Parameter [Stats Customers App]', 6, 0, NULL, '2018-07-30 10:27:16', NULL, NULL),
(825, 'Status', 'CLICSHOPPING_APP_STATS_PRODUCTS_NOTIFICATION_PN_STATUS', 'True', 'Set True to enable or not the module', 6, 0, NULL, '2018-07-30 10:29:04', NULL, NULL),
(826, 'Sort Order', 'CLICSHOPPING_APP_STATS_PRODUCTS_NOTIFICATION_PN_SORT_ORDER', '300', 'The sort order location of the module shown in the available methods listing (lowest is displayed first).', 6, 0, NULL, '2018-07-30 10:29:04', NULL, NULL),
(827, 'Parameter [Stats Products Notification App]', 'MODULE_MODULES_STATS_PRODUCTS_NOTIFICATION_INSTALLED', 'Report\\StatsProductsNotification\\PN', 'Parameter [Stats Products Notification App]', 6, 0, NULL, '2018-07-30 10:29:04', NULL, NULL),
(828, 'Status', 'CLICSHOPPING_APP_STATS_LOW_STOCK_SL_STATUS', 'True', 'Set True to enable or not the module', 6, 0, NULL, '2018-07-30 10:29:22', NULL, NULL),
(829, 'Sort Order', 'CLICSHOPPING_APP_STATS_LOW_STOCK_SL_SORT_ORDER', '300', 'The sort order location of the module shown in the available methods listing (lowest is displayed first).', 6, 0, NULL, '2018-07-30 10:29:22', NULL, NULL),
(830, 'Parameter [Stats Low Stock App]', 'MODULE_MODULES_STATS_LOW_STOCK_INSTALLED', 'Report\\StatsLowStock\\SL', 'Parameter [Stats Low Stock App]', 6, 0, NULL, '2018-07-30 10:29:22', NULL, NULL),
(831, 'Status', 'CLICSHOPPING_APP_STATS_PRODUCTS_EXPECTED_PE_STATUS', 'True', 'Set True to enable or not the module', 6, 0, NULL, '2018-07-30 10:29:44', NULL, NULL),
(832, 'Sort Order', 'CLICSHOPPING_APP_STATS_PRODUCTS_EXPECTED_PE_SORT_ORDER', '300', 'The sort order location of the module shown in the available methods listing (lowest is displayed first).', 6, 0, NULL, '2018-07-30 10:29:44', NULL, NULL),
(833, 'Parameter [Stats Products Expected App]', 'MODULE_MODULES_STATS_PRODUCTS_EXPECTED_INSTALLED', 'Report\\StatsProductsExpected\\PE', 'Parameter [Stats Products Expected App]', 6, 0, NULL, '2018-07-30 10:29:44', NULL, NULL),
(834, 'Status', 'CLICSHOPPING_APP_DATA_BASE_TABLES_DT_STATUS', 'True', 'Set True to enable or not the module', 6, 0, NULL, '2018-07-30 10:30:14', NULL, NULL),
(835, 'Sort Order', 'CLICSHOPPING_APP_DATA_BASE_TABLES_DT_SORT_ORDER', '300', 'The sort order location of the module shown in the available methods listing (lowest is displayed first).', 6, 0, NULL, '2018-07-30 10:30:14', NULL, NULL),
(836, 'Parameter [Export Data App]', 'MODULE_MODULES_DATA_BASE_TABLES_INSTALLED', 'Tools\\DataBaseTables\\DT', 'Parameter [Export Data App]', 6, 0, NULL, '2018-07-30 10:30:14', NULL, NULL),
(837, 'Status', 'CLICSHOPPING_APP_UPGRADE_UP_STATUS', 'True', 'Set True to enable or not the module', 6, 0, NULL, '2018-07-30 10:35:50', NULL, NULL),
(838, 'Sort Order', 'CLICSHOPPING_APP_UPGRADE_UP_SORT_ORDER', '300', 'The sort order location of the module shown in the available methods listing (lowest is displayed first).', 6, 0, NULL, '2018-07-30 10:35:50', NULL, NULL),
(839, 'Parameter [Github Module / Upgrade App]', 'MODULE_MODULES_UPGRADE_INSTALLED', 'Tools\\Upgrade\\UP', 'Parameter [Github Module / Upgrade App]', 6, 0, NULL, '2018-07-30 10:35:50', NULL, NULL),
(840, 'Status', 'CLICSHOPPING_APP_ADMINISTRATOR_MENU_AM_STATUS', 'True', 'Set True to enable or not the module', 6, 0, NULL, '2018-07-30 10:37:58', NULL, NULL),
(841, 'Sort Order', 'CLICSHOPPING_APP_ADMINISTRATOR_MENU_AM_SORT_ORDER', '30', 'The sort order location of the module shown in the available methods listing (lowest is displayed first).', 6, 0, NULL, '2018-07-30 10:37:58', NULL, NULL),
(842, 'Parameter [AdministratorMenu App]', 'MODULE_MODULES_ADMINISTRATOR_MENU_INSTALLED', 'Tools\\AdministratorMenu\\AM', 'Parameter [AdministratorMenu App]', 6, 0, NULL, '2018-07-30 10:37:58', NULL, NULL),
(845, 'Status', 'CLICSHOPPING_APP_SERVICE_APP_SV_STATUS', 'True', 'Set True to enable or not the module', 6, 0, NULL, '2018-07-30 10:44:22', NULL, NULL),
(846, 'Sort Order', 'CLICSHOPPING_APP_SERVICE_APP_SV_SORT_ORDER', '300', 'The sort order location of the module shown in the available methods listing (lowest is displayed first).', 6, 0, NULL, '2018-07-30 10:44:22', NULL, NULL),
(847, 'Parameter [Modules ServiceAPP App]', 'MODULE_MODULES_SERVICE_APP_INSTALLED', 'Tools\\ServiceAPP\\SV', 'Parameter [Modules ServiceAPP App]', 6, 0, NULL, '2018-07-30 10:44:22', NULL, NULL),
(848, 'Status', 'CLICSHOPPING_APP_MODULES_HOOKS_MH_STATUS', 'True', 'Set True to enable or not the module', 6, 0, NULL, '2018-07-30 10:46:29', NULL, NULL),
(849, 'Sort Order', 'CLICSHOPPING_APP_MODULES_HOOKS_MH_SORT_ORDER', '300', 'The sort order location of the module shown in the available methods listing (lowest is displayed first).', 6, 0, NULL, '2018-07-30 10:46:29', NULL, NULL),
(850, 'Parameter [Modules Hooks App]', 'MODULE_MODULES_MODULES_HOOKS_INSTALLED', 'Tools\\ModulesHooks\\MH', 'Parameter [Modules Hooks App]', 6, 0, NULL, '2018-07-30 10:46:29', NULL, NULL),
(851, 'Status', 'CLICSHOPPING_APP_APPS_AP_STATUS', 'True', 'Set True to enable or not the module', 6, 0, NULL, '2018-07-30 10:48:18', NULL, NULL),
(852, 'Sort Order', 'CLICSHOPPING_APP_APPS_AP_SORT_ORDER', '300', 'The sort order location of the module shown in the available methods listing (lowest is displayed first).', 6, 0, NULL, '2018-07-30 10:48:18', NULL, NULL),
(853, 'Parameter [Apps App]', 'MODULE_MODULES_APPS_INSTALLED', 'Tools\\Apps\\AP', 'Parameter [Apps App]', 6, 0, NULL, '2018-07-30 10:48:18', NULL, NULL),
(854, 'Security Check Extended Last Run', 'MODULE_SECURITY_CHECK_EXTENDED_LAST_RUN_DATETIME', '1532962107', 'The date and time the last extended security check was performed.', 6, 0, NULL, '2018-07-30 10:48:27', NULL, ''),
(855, 'Status', 'CLICSHOPPING_APP_SECURITY_CHECK_SC_STATUS', 'True', 'Set True to enable or not the module', 6, 0, NULL, '2018-07-30 10:49:43', NULL, NULL),
(856, 'Sort Order', 'CLICSHOPPING_APP_SECURITY_CHECK_SC_SORT_ORDER', '300', 'The sort order location of the module shown in the available methods listing (lowest is displayed first).', 6, 0, NULL, '2018-07-30 10:49:43', NULL, NULL),
(857, 'Parameter [Security Check]', 'MODULE_MODULES_SECURITY_CHECK_INSTALLED', 'Tools\\SecurityCheck\\SC', 'Parameter [Security Check]', 6, 0, NULL, '2018-07-30 10:49:43', NULL, NULL),
(858, 'Status', 'CLICSHOPPING_APP_EDIT_LOG_ERROR_EL_STATUS', 'True', 'Set True to enable or not the module', 6, 0, NULL, '2018-07-30 10:51:18', NULL, NULL),
(859, 'Sort Order', 'CLICSHOPPING_APP_EDIT_LOG_ERROR_EL_SORT_ORDER', '300', 'The sort order location of the module shown in the available methods listing (lowest is displayed first).', 6, 0, NULL, '2018-07-30 10:51:18', NULL, NULL),
(860, 'Parameter [Edit error log editor App]', 'MODULE_MODULES_EDIT_LOG_ERROR_INSTALLED', 'Tools\\EditLogError\\EL', 'Parameter [Edit error log editor App]', 6, 0, NULL, '2018-07-30 10:51:18', NULL, NULL),
(861, 'Status', 'CLICSHOPPING_APP_SEC_DIR_PERMISSIONS_SP_STATUS', 'True', 'Set True to enable or not the module', 6, 0, NULL, '2018-07-30 10:52:01', NULL, NULL),
(862, 'Sort Order', 'CLICSHOPPING_APP_SEC_DIR_PERMISSIONS_SP_SORT_ORDER', '300', 'The sort order location of the module shown in the available methods listing (lowest is displayed first).', 6, 0, NULL, '2018-07-30 10:52:01', NULL, NULL),
(863, 'Parameter [Security Directory Permissions]', 'MODULE_MODULES_SEC_DIR_PERMISSIONS_INSTALLED', 'Tools\\SecDirPermissions\\SP', 'Parameter [Security Directory Permissions]', 6, 0, NULL, '2018-07-30 10:52:01', NULL, NULL),
(864, 'Status', 'CLICSHOPPING_APP_WHOS_ONLINE_WO_STATUS', 'True', 'Set True to enable or not the module', 6, 0, NULL, '2018-07-30 10:53:01', NULL, NULL),
(865, 'Sort Order', 'CLICSHOPPING_APP_WHOS_ONLINE_WO_SORT_ORDER', '300', 'The sort order location of the module shown in the available methods listing (lowest is displayed first).', 6, 0, NULL, '2018-07-30 10:53:01', NULL, NULL),
(866, 'Parameter [Who''s Online App]', 'MODULE_MODULES_WHOS_ONLINE_INSTALLED', 'Tools\\WhosOnline\\WO', 'Parameter [Who''s Online App]', 6, 0, NULL, '2018-07-30 10:53:01', NULL, NULL),
(867, 'Installed Modules', 'MODULE_MODULES_BOXES_INSTALLED', 'bm_categories.php;bm_specials.php;bm_whats_new.php;bm_page_manager_customize.php;bm_page_manager.php;bm_order_history.php;bm_search.php', 'This is automatically updated. No need to edit.', 6, 0, '2018-07-30 12:12:59', '2018-07-30 11:57:17', NULL, NULL),
(868, 'Do you want to activate this module ?', 'MODULE_HEADER_MESSAGE_STACK_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-30 11:59:07', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(869, 'Please select the width for this modules', 'MODULE_HEADER_MESSAGE_STACK_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-30 11:59:07', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(870, 'Sort Order', 'MODULE_HEADER_MESSAGE_STACK_SORT_ORDER', '10', 'Sort Order (Lowest is displayed in first)', 6, 4, NULL, '2018-07-30 11:59:07', NULL, ''),
(871, 'Do you want to activate this module ?', 'MODULES_HEADER_MULTI_TEMPLATE_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-30 11:59:12', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(872, 'Please select the width for this modules', 'MODULES_HEADER_MULTI_TEMPLATE_TEMPLATE_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-30 11:59:12', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(873, 'Please, select a template', 'MODULES_HEADER_MULTI_TEMPLATE_FILES', 'multi_template_default.php', 'Veuillez indiquer le type de template que vous souhaitez voir affiché .<br /><br /><b>Note</b><br /> - Si vous avez opté pour une configuration en ligne, veuillez choisir un type de nom de template comme <u>template_line</u>.<br /><br /> - Si vous avez opté pour un affichage en colonne, veuillez choisir un type de nom de template comme <u>template_column</u> puis veuillez configurer le nombre de colonnes<br />- La valeur à insérrer dans votre template est $banner .', 6, 2, NULL, '2018-07-30 11:59:12', NULL, 'clic_cfg_set_multi_template_pull_down'),
(874, 'Please, select the banner group to display a banner image', 'MODULES_HEADER_MULTI_MODULE_LOGO_BANNER_GROUP', 'Default_multi_template_logo', 'Indicate the banner group to display a banner image. You must create a banner with this group to display the banner image : Marketing - Banner Management', 6, 3, NULL, '2018-07-30 11:59:12', NULL, ''),
(875, 'Please, select the banner group to display a banner image', 'MODULES_HEADER_MULTI_MODULE_BANNER_2_GROUP', 'Default_multi_template_banner', 'Indicate the banner group to display a banner image. You must create a banner with this group to display the banner image : Marketing - Banner Management', 6, 3, NULL, '2018-07-30 11:59:12', NULL, ''),
(876, 'Sort Order', 'MODULES_HEADER_MULTI_TEMPLATE_SORT_ORDER', '100', 'Sort Order (Lowest is displayed in first)', 6, 3, NULL, '2018-07-30 11:59:12', NULL, ''),
(877, 'Sort Order', 'MODULES_HEADER_MULTI_TEMPLATE_TEMPLATE_DISPLAY_PAGES', 'all', 'Select the page where the caroussel will be displayed', 6, 4, NULL, '2018-07-30 11:59:12', NULL, 'clic_cfg_set_select_pages_list'),
(878, 'Do you want to activate this module ?', 'MODULE_FOOTER_MULTI_TEMPLATE_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-30 12:05:09', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(879, 'Quel type de template souhaitez-vous voir affiché dans le bas de page ?', 'MODULE_FOOTER_MULTI_TEMPLATE', 'footer_multi_template.php', 'Veuillez indiquer le type de template que vous souhaitez voir affiché concernant les coups de coeur.<br /><br /><b>Note</b><br /> - Si vous avez opté pour une configuration en ligne, veuillez choisir un type de nom de template comme <u>template_line</u>.<br /><br /> - Si vous avez opté pour un affichage en colonne, veuillez choisir un type de nom de template comme <u>template_column</u> puis veuillez configurer le nombre de colonnes', 6, 2, NULL, '2018-07-30 12:05:09', NULL, 'clic_cfg_set_multi_template_pull_down'),
(881, 'Do you want to display the privacy conditions (mailchimp) ?', 'MODULE_FOOTER_MULTI_TEMPLATE_MAILCHIMP_DISPLAY_PRIVACY', 'False', 'Display the privacy conditions (mailchimp)', 6, 3, NULL, '2018-07-30 12:05:09', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(882, 'Please, choose the width of the column', 'MODULE_FOOTER_MULTI_TEMPLATE_CONTENT_WIDTH', '3', 'Choose a number between 1 and 12.', 6, 4, NULL, '2018-07-30 12:05:09', NULL, ''),
(883, 'Please, indicate Facebook URL ?', 'MODULE_FOOTER_MULTI_TEMPLATE_CONTENTS_FACEBOOK_URL', '', '', 6, 5, NULL, '2018-07-30 12:05:09', NULL, ''),
(884, 'Please, indicate twitter URL ?', 'MODULE_FOOTER_MULTI_TEMPLATE_CONTENTS_TWITTER_URL', '', '', 6, 6, NULL, '2018-07-30 12:05:09', NULL, ''),
(885, 'Please, indicate Pinterest URL ?', 'MODULE_FOOTER_MULTI_TEMPLATE_CONTENTS_PINTEREST_URL', '', '', 6, 7, NULL, '2018-07-30 12:05:09', NULL, ''),
(887, 'Sort Order', 'MODULE_FOOTER_MULTI_TEMPLATE_SORT_ORDER', '200', 'Sort Order (Lowest is displayed in first)', 6, 9, NULL, '2018-07-30 12:05:09', NULL, ''),
(888, 'Please, indicate where the boxe must be displayed', 'MODULE_FOOTER_MULTI_TEMPLATE_DISPLAY_PAGES', 'all', 'Select the page where the boxe must be displayed', 6, 10, NULL, '2018-07-30 12:05:09', NULL, 'clic_cfg_set_select_pages_list'),
(889, 'Do you want to activate this module ?', 'MODULES_FOOTER_SUFFIX_COPYRIGHT_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-30 12:07:12', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(890, 'Sort Order', 'MODULES_FOOTER_SUFFIX_COPYRIGHT_SORT_ORDER', '100', 'Sort Order (Lowest is displayed in first)', 6, 4, NULL, '2018-07-30 12:07:12', NULL, ''),
(891, 'Do you want to activate this module ?', 'MODULE_BOXES_CATEGORIES_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-30 12:11:39', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(892, 'Please, indicate where the boxe must be displayed', 'MODULE_BOXES_CATEGORIES_CONTENT_PLACEMENT', 'Left Column', 'Select the column where the boxe must be displayed', 6, 2, NULL, '2018-07-30 12:11:39', NULL, 'clic_cfg_set_boolean_value(array(''Left Column'', ''Right Column''),'),
(893, 'Please, select the banner group to display a banner image', 'MODULE_BOXES_CATEGORIES_BANNER_GROUP', 'Default_boxe_categories', 'Indicate the banner group to display a banner image. You must create a banner with this group to display the banner image : Marketing - Banner Management', 6, 3, NULL, '2018-07-30 12:11:39', NULL, ''),
(894, 'Sort Order', 'MODULE_BOXES_CATEGORIES_SORT_ORDER', '10', 'Sort Order (Lowest is displayed in first)', 6, 4, NULL, '2018-07-30 12:11:39', NULL, ''),
(895, 'Please, indicate where the boxe must be displayed', 'MODULE_BOXES_CATEGORIES_DISPLAY_PAGES', 'all', 'Select the page where the boxe must be displayed', 6, 5, NULL, '2018-07-30 12:11:39', NULL, 'clic_cfg_set_select_pages_list'),
(896, 'Do you want to activate this module ?', 'MODULE_BOXES_ORDER_HISTORY_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-30 12:11:48', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(897, 'Please, indicate where the boxe must be displayed', 'MODULE_BOXES_ORDER_HISTORY_CONTENT_PLACEMENT', 'Right Column', 'Select the column where the boxe must be displayed', 6, 2, NULL, '2018-07-30 12:11:48', NULL, 'clic_cfg_set_boolean_value(array(''Left Column'', ''Right Column''),'),
(898, 'Please, select the banner group to display a banner image', 'MODULE_BOXES_ORDER_HISTORY_BANNER_GROUP', 'Default_boxe_history', 'Indicate the banner group to display a banner image. You must create a banner with this group to display the banner image : Marketing - Banner Management', 6, 3, NULL, '2018-07-30 12:11:48', NULL, ''),
(899, 'Please, indicate the order number to display in the shop', 'MODULE_BOXES_ORDER_HISTORY_MAX_DISPLAY_PRODUCTS', '5', 'Please, indicate the order number to display in the shop', 6, 4, NULL, '2018-07-30 12:11:48', NULL, ''),
(900, 'Sort Order', 'MODULE_BOXES_ORDER_HISTORY_SORT_ORDER', '120', 'Sort Order (Lowest is displayed in first)', 6, 5, NULL, '2018-07-30 12:11:48', NULL, ''),
(901, 'Please, indicate where the boxe must be displayed', 'MODULE_BOXES_ORDER_HISTORY_DISPLAY_PAGES', 'all', 'Select the page where the boxe must be displayed', 6, 6, NULL, '2018-07-30 12:11:48', NULL, 'clic_cfg_set_select_pages_list'),
(902, 'Do you want to activate this module ?', 'MODULE_BOXES_PAGE_MANAGER_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-30 12:11:58', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(903, 'Please, indicate where the boxe must be displayed', 'MODULE_BOXES_PAGE_MANAGER_CONTENT_PLACEMENT', 'Right Column', 'Select the column where the boxe must be displayed', 6, 2, NULL, '2018-07-30 12:11:58', NULL, 'clic_cfg_set_boolean_value(array(''Left Column'', ''Right Column''),'),
(904, 'Please, select the banner group to display a banner image', 'MODULE_BOXES_PAGE_MANAGER_BANNER_GROUP', 'Default_boxe_page_manager', 'Indicate the banner group to display a banner image. You must create a banner with this group to display the banner image : Marketing - Banner Management', 6, 3, NULL, '2018-07-30 12:11:58', NULL, ''),
(905, 'Sort Order', 'MODULE_BOXES_PAGE_MANAGER_SORT_ORDER', '100', 'Sort Order (Lowest is displayed in first)', 6, 4, NULL, '2018-07-30 12:11:58', NULL, ''),
(906, 'Please, indicate where the boxe must be displayed', 'MODULE_BOXES_PAGE_MANAGER_DISPLAY_PAGES', 'all', 'Select the page where the boxe must be displayed', 6, 5, NULL, '2018-07-30 12:11:58', NULL, 'clic_cfg_set_select_pages_list'),
(907, 'Do you want to activate this module ?', 'MODULE_BOXES_PAGE_MANAGER_CUSTOMIZE_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-30 12:12:04', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(908, 'Please, indicate where the boxe must be displayed', 'MODULE_BOXES_PAGE_MANAGER_CUSTOMIZE_CONTENT_PLACEMENT', 'Right Column', 'Select the column where the boxe must be displayed', 6, 2, NULL, '2018-07-30 12:12:04', NULL, 'clic_cfg_set_boolean_value(array(''Left Column'', ''Right Column''),'),
(909, 'Please, select the banner group to display a banner image', 'MODULE_BOXES_PAGE_MANAGER_CUSTOMIZE_BANNER_GROUP', 'Default_boxe_page_customize', 'Indicate the banner group to display a banner image. You must create a banner with this group to display the banner image : Marketing - Banner Management', 6, 3, NULL, '2018-07-30 12:12:04', NULL, ''),
(910, 'Sort Order', 'MODULE_BOXES_PAGE_MANAGER_CUSTOMIZE_SORT_ORDER', '90', 'Sort Order (Lowest is displayed in first)', 6, 4, NULL, '2018-07-30 12:12:04', NULL, ''),
(911, 'Please, indicate where the boxe must be displayed', 'MODULE_BOXES_PAGE_MANAGER_CUSTOMIZE_PAGES', 'all', 'Select the page where the boxe must be displayed', 6, 5, NULL, '2018-07-30 12:12:04', NULL, 'clic_cfg_set_select_pages_list'),
(912, 'Do you want to activate this module ?', 'MODULE_BOXES_SPECIALS_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-30 12:12:09', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(913, 'Please, indicate where the boxe must be displayed', 'MODULE_BOXES_SPECIALS_CONTENT_PLACEMENT', 'Left Column', 'Select the column where the boxe must be displayed', 6, 2, NULL, '2018-07-30 12:12:09', NULL, 'clic_cfg_set_boolean_value(array(''Left Column'', ''Right Column''),'),
(914, 'Please, select the banner group to display a banner image', 'MODULE_BOXES_SPECIALS_BANNER_GROUP', 'Default_boxe_specials', 'Indicate the banner group to display a banner image. You must create a banner with this group to display the banner image : Marketing - Banner Management', 6, 3, NULL, '2018-07-30 12:12:09', NULL, ''),
(915, 'Do you want to display the detail button ?', 'MODULE_BOXES_SPECIAL_DETAIL_BUTTON', 'False', 'Display the detail button ?', 6, 1, NULL, '2018-07-30 12:12:09', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(916, 'How many product do you want to display ?', 'MODULE_BOXES_SPECIALS_MAX_DISPLAY_LIMIT', '2', 'Display a product number inside the boxe.', 6, 4, NULL, '2018-07-30 12:12:09', NULL, ''),
(917, 'Do you want to display a message News / Specials / Featured / Selected product?', 'MODULE_BOXES_SPECIALS_TICKER', 'False', 'Display a specific mssage for the product. The time must configured in Configuration menu', 6, 9, NULL, '2018-07-30 12:12:09', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(918, 'Do you want to display a discount poucentage (specials) ?', 'MODULE_BOXES_SPECIALS_POURCENTAGE_TICKER', 'False', 'Display a discount poucentage (specials)', 6, 9, NULL, '2018-07-30 12:12:09', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))');
INSERT INTO `clic_configuration` VALUES
(919, 'Sort Order', 'MODULE_BOXES_SPECIALS_SORT_ORDER', '20', 'Sort Order (Lowest is displayed in first)', 6, 5, NULL, '2018-07-30 12:12:09', NULL, ''),
(920, 'Please, indicate where the boxe must be displayed', 'MODULE_BOXES_SPECIALS_DISPLAY_PAGES', 'all', 'Select the page where the boxe must be displayed', 6, 6, NULL, '2018-07-30 12:12:09', NULL, 'clic_cfg_set_select_pages_list'),
(921, 'Do you want to activate this module ?', 'MODULE_BOXES_WHATS_NEW_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-30 12:12:14', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(922, 'Please, indicate where the boxe must be displayed', 'MODULE_BOXES_WHATS_NEW_CONTENT_PLACEMENT', 'Left Column', 'Select the column where the boxe must be displayed', 6, 2, NULL, '2018-07-30 12:12:14', NULL, 'clic_cfg_set_boolean_value(array(''Left Column'', ''Right Column''),'),
(923, 'Please, select the banner group to display a banner image', 'MODULE_BOXES_WHATS_NEW_BANNER_GROUP', 'Default_boxe_whatsnew', 'Indicate the banner group to display a banner image. You must create a banner with this group to display the banner image : Marketing - Banner Management', 6, 3, NULL, '2018-07-30 12:12:14', NULL, ''),
(924, 'Do you want to display the detail button ?', 'MODULE_BOXES_WHATS_NEW_DETAIL_BUTTON', 'False', 'Display the detail button ?', 6, 1, NULL, '2018-07-30 12:12:14', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(925, 'How many product do you want to display ?', 'MODULE_BOXES_WHATS_NEW_MAX_DISPLAY_LIMIT', '1', 'Display a product number inside the boxe.', 6, 3, NULL, '2018-07-30 12:12:14', NULL, ''),
(926, 'Do you want to display a message News / Specials / Featured / Selected product?', 'MODULE_BOXES_WHATS_NEW_TICKER', 'False', 'Display a specific message for the product. The time must configured in Configuration menu', 6, 9, NULL, '2018-07-30 12:12:14', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(927, 'Do you want to display a discount poucentage (specials) ?', 'MODULE_BOXES_WHATS_NEW_POURCENTAGE_TICKER', 'False', 'Display a discount poucentage (specials)', 6, 9, NULL, '2018-07-30 12:12:14', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(928, 'Sort Order', 'MODULE_BOXES_WHATS_NEW_SORT_ORDER', '30', 'Sort Order (Lowest is displayed in first)', 6, 4, NULL, '2018-07-30 12:12:14', NULL, ''),
(929, 'Please, indicate where the boxe must be displayed', 'MODULE_BOXES_WHATS_NEW_DISPLAY_PAGES', 'all', 'Select the page where the boxe must be displayed', 6, 5, NULL, '2018-07-30 12:12:14', NULL, 'clic_cfg_set_select_pages_list'),
(930, 'Do you want to close the Shop for maintenance ?', 'STORE_OFFLINE', 'false', 'Close the Shop for maintenance', 1, 23, NULL, '2018-07-30 14:25:01', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(931, 'Who is authorized to access at the catalog when the store is offline ?', 'STORE_OFFLINE_ALLOW', '', 'Please insert the ip address like this 127.0.0.1, 194.25.0.50, 158.125.124.23', 1, 24, NULL, '2018-07-30 14:25:01', NULL, ''),
(932, 'Do you want to activate this module ?', 'MODULE_FRONT_PAGE_NEW_PRODUCTS_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-30 18:48:50', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(933, 'Please, select a template', 'MODULE_FRONT_PAGE_NEW_PRODUCTS_TEMPLATE', 'template_bootstrap_column_5.php', 'Please choose the template than you want to display', 6, 2, NULL, '2018-07-30 18:48:50', NULL, 'clic_cfg_set_multi_template_pull_down'),
(934, 'Do you want to display the title ?', 'MODULE_FRONT_PAGE_NEW_PRODUCTS_FRONT_TITLE', 'True', 'Display the title', 6, 3, NULL, '2018-07-30 18:48:50', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(935, 'Please Indicate a number to display the products', 'MODULE_FRONT_PAGE_NEW_PRODUCTS_MAX_DISPLAY', '6', 'Indicate a number to display the products', 6, 5, NULL, '2018-07-30 18:48:50', NULL, ''),
(936, 'Please Indicate the column number to display the content', 'MODULE_FRONT_PAGE_NEW_PRODUCTS_COLUMNS', '4', 'Select a number between 1 and 12', 6, 6, NULL, '2018-07-30 18:48:50', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(937, 'Do you want to display a short description ?', 'MODULE_FRONT_PAGE_NEW_PRODUCTS_SHORT_DESCRIPTION', '0', 'Indicate a number to display the summary description (caracters)', 6, 7, NULL, '2018-07-30 18:48:50', NULL, ''),
(938, 'Do you want to remove words in the summary description', 'MODULE_FRONT_PAGE_NEW_PRODUCTS_SHORT_DESCRIPTION_DELETE_WORLDS', '0', 'Indicate a number to remove the words at the left of the summary description', 6, 8, NULL, '2018-07-30 18:48:50', NULL, ''),
(939, 'Do you want to display a message News / Specials / Featured / Selected product?', 'MODULE_FRONT_PAGE_NEW_PRODUCTS_TICKER', 'False', 'Display a message on product image. The time can be change in the configuration menu', 6, 9, NULL, '2018-07-30 18:48:50', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(940, 'Do you want to display a discount poucentage (specials) ?', 'MODULE_FRONT_PAGE_NEW_PRODUCTS_POURCENTAGE_TICKER', 'False', 'Display a discount poucentage (specials)', 6, 9, NULL, '2018-07-30 18:48:50', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(941, 'Do you want to display the stock ?', 'MODULE_FRONT_PAGE_NEW_PRODUCTS_DISPLAY_STOCK', 'none', 'Display an information In Stock, Sold Out, out of stock ?', 6, 10, NULL, '2018-07-30 18:48:50', NULL, 'clic_cfg_set_boolean_value(array(''none'', ''image'', ''number''))'),
(942, 'Please choose the image size', 'MODULE_FRONT_PAGE_NEW_PRODUCTS_IMAGE_MEDIUM', 'Medium', 'Indicate the size than you want', 6, 11, NULL, '2018-07-30 18:48:50', NULL, 'clic_cfg_set_boolean_value(array(''Small'', ''Medium''))'),
(943, 'Do you want to remove Details / buy button', 'MODULE_FRONT_PAGE_NEW_PRODUCTS_DELETE_BUY_BUTTON', 'False', 'Remove betails / buy button', 6, 11, NULL, '2018-07-30 18:48:50', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(944, 'Sort Order', 'MODULE_FRONT_PAGE_NEW_PRODUCTS_SORT_ORDER', '110', 'Sort Order (Lowest is displayed in first)', 6, 12, NULL, '2018-07-30 18:48:50', NULL, ''),
(945, 'Do you want to activate this module ?', 'MODULE_FRONT_PAGE_PAGE_MANAGER_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-30 18:48:54', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(946, 'Please select the width for this modules', 'MODULE_FRONT_PAGE_PAGE_MANAGER_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-30 18:48:54', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(947, 'Sort Order', 'MODULE_FRONT_PAGE_PAGE_MANAGER_SORT_ORDER', '10', 'Sort Order (Lowest is displayed in first)', 6, 4, NULL, '2018-07-30 18:48:54', NULL, ''),
(948, 'Do you want to activate this module ?', 'MODULE_INDEX_CATEGORIES_NAME_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-30 21:35:32', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(949, 'Please select the width for this modules', 'MODULE_INDEX_CATEGORIES_NAME_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-30 21:35:32', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(950, 'Sort Order', 'MODULE_INDEX_CATEGORIES_NAME_SORT_ORDER', '10', 'Sort Order (Lowest is displayed in first)', 6, 2, NULL, '2018-07-30 21:35:32', NULL, ''),
(951, 'Do you want to activate this module ?', 'MODULE_INDEX_CATEGORIES_NEW_PRODUCTS_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-30 21:35:37', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(952, 'Please, select a template', 'MODULE_INDEX_CATEGORIES_NEW_PRODUCTS_TEMPLATE', 'template_bootstrap_column_5.php', 'Please choose the template than you want to display', 6, 2, NULL, '2018-07-30 21:35:37', NULL, 'clic_cfg_set_multi_template_pull_down'),
(953, 'Do you want to display the title ?', 'MODULE_INDEX_CATEGORIES_NEW_PRODUCTS_FRONT_TITLE', 'True', 'Display the title', 6, 3, NULL, '2018-07-30 21:35:37', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(954, 'Please Indicate a number to display the products', 'MODULE_INDEX_CATEGORIES_NEW_PRODUCTS_MAX_DISPLAY', '6', 'Indicate a number to display the products', 6, 5, NULL, '2018-07-30 21:35:37', NULL, ''),
(955, 'Please Indicate the column number to display the content', 'MODULE_INDEX_CATEGORIES_NEW_PRODUCTS_COLUMNS', '6', 'Select a number between 1 and 12', 6, 6, NULL, '2018-07-30 21:35:37', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(956, 'Do you want to display a short description ?', 'MODULE_INDEX_CATEGORIES_NEW_PRODUCTS_SHORT_DESCRIPTION', '0', 'Indicate a number to display the summary description (caracters)', 6, 7, NULL, '2018-07-30 21:35:37', NULL, ''),
(957, 'Do you want to remove words in the summary description', 'MODULE_INDEX_CATEGORIES_NEW_PRODUCTS_SHORT_DESCRIPTION_DELETE_WORLDS', '0', 'Indicate a number to remove the words at the left of the summary description', 6, 8, NULL, '2018-07-30 21:35:37', NULL, ''),
(958, 'Do you want to display a message News / Specials / Featured / Selected product?', 'MODULE_INDEX_CATEGORIES_NEW_PRODUCTS_TICKER', 'False', 'Display a message on product image. The time can be change in the configuration menu', 6, 9, NULL, '2018-07-30 21:35:37', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(959, 'Do you want to display a discount poucentage (specials) ?', 'MODULE_INDEX_CATEGORIES_NEW_PRODUCTS_POURCENTAGE_TICKER', 'False', 'Display a discount poucentage (specials)', 6, 9, NULL, '2018-07-30 21:35:37', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(960, 'Do you want to display the stock ?', 'MODULE_INDEX_CATEGORIES_NEW_PRODUCTS_DISPLAY_STOCK', 'none', 'Display an information In Stock, Sold Out, out of stock ?', 6, 10, NULL, '2018-07-30 21:35:37', NULL, 'clic_cfg_set_boolean_value(array(''none'', ''image'', ''number''))'),
(961, 'Please choose the image size', 'MODULE_INDEX_CATEGORIES_NEW_PRODUCTS_IMAGE_MEDIUM', 'Medium', 'Indicate the size than you want', 6, 11, NULL, '2018-07-30 21:35:37', NULL, 'clic_cfg_set_boolean_value(array(''Small'', ''Medium''))'),
(962, 'Do you want to remove Details / buy button', 'MODULE_INDEX_CATEGORIES_NEW_PRODUCTS_DELETE_BUY_BUTTON', 'False', 'Remove betails / buy button', 6, 11, NULL, '2018-07-30 21:35:37', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(963, 'Sort Order', 'MODULE_INDEX_CATEGORIES_NEW_PRODUCTS_SORT_ORDER', '80', 'Sort Order (Lowest is displayed in first)', 6, 12, NULL, '2018-07-30 21:35:37', NULL, ''),
(964, 'Installed Modules', 'MODULE_MODULES_PRODUCTS_LISTING_INSTALLED', 'pl_products_listing_categories_name.php;pl_products_listing_filter.php;pl_products_listing.php', 'This is automatically updated. No need to edit.', 6, 0, '2018-07-30 21:38:35', '2018-07-30 21:38:19', NULL, NULL),
(965, 'Do you want to activate this module ?', 'MODULE_PRODUCTS_LISTING_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-30 21:38:26', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(966, 'Please, select a template', 'MODULE_PRODUCTS_LISTING_TEMPLATE', 'template_bootstrap_column_5.php', 'Please choose the template than you want to display', 6, 2, NULL, '2018-07-30 21:38:26', NULL, 'clic_cfg_set_multi_template_pull_down'),
(967, 'Please indicate the product number to display', 'MODULE_PRODUCTS_LISTING_MAX_DISPLAY', '6', 'indicate a number to display the products', 6, 3, NULL, '2018-07-30 21:38:26', NULL, ''),
(968, 'Please Indicate the column number to display the content', 'MODULE_PRODUCTS_LISTING_COLUMNS', '6', 'Select a number between 1 and 12', 6, 3, NULL, '2018-07-30 21:38:26', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(969, 'Do you want to display a short description ?', 'MODULE_PRODUCTS_LISTING_SHORT_DESCRIPTION', '0', 'Indicate a number to display the summary description (caracters)', 6, 4, NULL, '2018-07-30 21:38:26', NULL, ''),
(970, 'Do you want to remove words in the summary description ?', 'MODULE_PRODUCTS_LISTING_SHORT_DESCRIPTION_DELETE_WORLDS', '0', 'Indicate a number to remove the words at the left of the summary description', 6, 4, NULL, '2018-07-30 21:38:26', NULL, ''),
(971, 'Do you want to display a message News / Specials / Featured / Selected product?', 'MODULE_PRODUCTS_LISTING_TICKER', 'False', 'Display a message on product image. The time can be change in the configuration menu', 6, 1, NULL, '2018-07-30 21:38:26', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(972, 'Do you want to display a discount poucentage (specials) ?', 'MODULE_PRODUCTS_LISTING_POURCENTAGE_TICKER', 'False', 'Display a discount poucentage (specials)', 6, 1, NULL, '2018-07-30 21:38:26', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(973, 'Do you want to display the stock ?', 'MODULE_PRODUCTS_LISTING_DISPLAY_STOCK', 'none', 'Display an information In Stock, Sold Out, out of stock ?', 6, 6, NULL, '2018-07-30 21:38:26', NULL, 'clic_cfg_set_boolean_value(array(''none'', ''image'', ''number''),'),
(974, 'Please choose the image size', 'MODULE_PRODUCTS_LISTING_IMAGE_MEDIUM', 'Small', 'Indicate the size than you want', 6, 10, NULL, '2018-07-30 21:38:26', NULL, 'clic_cfg_set_boolean_value(array(''Small'', ''Medium''),'),
(975, 'Do you want to remove Details / buy button', 'MODULE_PRODUCTS_LISTING_DELETE_BUY_BUTTON', 'False', 'Remove betails / buy button', 6, 11, NULL, '2018-07-30 21:38:26', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(976, 'Sort Order', 'MODULE_PRODUCTS_LISTING_SORT_ORDER', '100', 'Sort Order (Lowest is displayed in first)', 6, 4, NULL, '2018-07-30 21:38:26', NULL, ''),
(977, 'Do you want to activate this module ?', 'MODULE_PRODUCTS_LISTING_CATEGORIES_NAME_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-30 21:38:31', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(978, 'Please Indicate the column number to display the content ?', 'MODULE_PRODUCTS_LISTING_CATEGORIES_COLUMNS', '6', 'Select a number between 1 and 12', 6, 3, NULL, '2018-07-30 21:38:31', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(979, 'Sort Order', 'MODULE_PRODUCTS_LISTING_CATEGORIES_NAME_SORT_ORDER', '20', 'Sort Order (Lowest is displayed in first)', 6, 4, NULL, '2018-07-30 21:38:31', NULL, ''),
(980, 'Do you want to activate this module ?', 'MODULE_PRODUCTS_LISTING_FILTER_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-30 21:38:35', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(981, 'Please Indicate the column number to display the content ?', 'MODULE_PRODUCTS_LISTING_FILTER_COLUMNS', '6', 'Select a number between 1 and 12', 6, 3, NULL, '2018-07-30 21:38:35', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(982, 'Do you want to display categories / model filter ?', 'MODULE_PRODUCTS_LISTING_FILTER_DISPLAY_FILTER', '0', 'indicate a sort order number, 0 for nothing', 6, 1, NULL, '2018-07-30 21:38:35', NULL, ''),
(983, 'Sort Order', 'MODULE_PRODUCTS_LISTING_FILTER_SORT_ORDER', '30', 'Sort Order (Lowest is displayed in first)', 6, 4, NULL, '2018-07-30 21:38:35', NULL, ''),
(984, 'Installed Modules', 'MODULE_MODULES_PRODUCTS_SEARCH_INSTALLED', 'pse_products_search.php', 'This is automatically updated. No need to edit.', 6, 0, '2018-07-30 22:32:11', '2018-07-30 22:30:50', NULL, NULL),
(985, 'Do you want to activate this module ?', 'MODULE_PRODUCTS_SEARCH_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-30 22:32:11', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(986, 'Please, select a template', 'MODULE_PRODUCTS_SEARCH_TEMPLATE', 'template_bootstrap_column_5.php', 'Please choose the template than you want to display', 6, 2, NULL, '2018-07-30 22:32:11', NULL, 'clic_cfg_set_multi_template_pull_down'),
(987, 'Please indicate the product number to display', 'MODULE_PRODUCTS_SEARCH_MAX_DISPLAY', '6', 'indicate a number to display the products', 6, 3, NULL, '2018-07-30 22:32:11', NULL, ''),
(988, 'Please Indicate the column number to display the content', 'MODULE_PRODUCTS_SEARCH_COLUMNS', '6', 'Select a number between 1 and 12', 6, 3, NULL, '2018-07-30 22:32:11', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(989, 'Do you want to display a short description ?', 'MODULE_PRODUCTS_SEARCH_SHORT_DESCRIPTION', '0', 'Indicate a number to display the summary description (caracters)', 6, 4, NULL, '2018-07-30 22:32:11', NULL, ''),
(990, 'Do you want to remove words in the summary description ?', 'MODULE_PRODUCTS_SEARCH_SHORT_DESCRIPTION_DELETE_WORLDS', '0', 'Indicate a number to remove the words at the left of the summary description', 6, 4, NULL, '2018-07-30 22:32:11', NULL, ''),
(991, 'Do you want to display a message News / Specials / Featured / Selected product?', 'MODULE_PRODUCTS_SEARCH_TICKER', 'False', 'Display a message on product image. The time can be change in the configuration menu', 6, 1, NULL, '2018-07-30 22:32:11', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(992, 'Do you want to display a discount poucentage (specials) ?', 'MODULE_PRODUCTS_SEARCH_POURCENTAGE_TICKER', 'False', 'Display a discount poucentage (specials)', 6, 1, NULL, '2018-07-30 22:32:11', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(993, 'Do you want to display the stock ?', 'MODULE_PRODUCTS_SEARCH_DISPLAY_STOCK', 'none', 'Display an information In Stock, Sold Out, out of stock ?', 6, 6, NULL, '2018-07-30 22:32:11', NULL, 'clic_cfg_set_boolean_value(array(''none'', ''image'', ''number''),'),
(994, 'Please, indicate a sort order number for the product name', 'MODULE_PRODUCTS_SEARCH_LIST_NAME', '1', 'This option allow customer to choose a product display sorder : 0 for nothing. Lowest display in first', 6, 5, NULL, '2018-07-30 22:32:11', NULL, ''),
(995, 'Please indicate a sort order number for product arrival', 'MODULE_PRODUCTS_SEARCH_LIST_DATE_ADDED', '1', 'This option allow customer to choose a product display sorder : 0 for nothing. Lowest display in first', 6, 5, NULL, '2018-07-30 22:32:11', NULL, ''),
(996, 'Please indicate a sort order number for product price', 'MODULE_PRODUCTS_SEARCH_LIST_PRICE', '1', 'This option allow customer to choose a product display sorder : 0 for nothing. Lowest display in first', 6, 6, NULL, '2018-07-30 22:32:11', NULL, ''),
(997, 'Please indicate a sort order number for product model', 'MODULE_PRODUCTS_SEARCH_LIST_MODEL', '0', 'This option allow customer to choose a product display sorder : 0 for nothing. Lowest display in first', 6, 7, NULL, '2018-07-30 22:32:11', NULL, ''),
(998, 'Please indicate a sort order number for product stock quantity', 'MODULE_PRODUCTS_SEARCH_LIST_QUANTITY', '0', 'This option allow customer to choose a product display sorder : 0 for nothing. Lowest display in first', 6, 8, NULL, '2018-07-30 22:32:11', NULL, ''),
(999, 'Please indicate a sort order number for product brand', 'MODULE_PRODUCTS_SEARCH_LIST_MANUFACTURER', '0', 'This option allow customer to choose a product display sorder : 0 for nothing. Lowest display in first', 6, 9, NULL, '2018-07-30 22:32:11', NULL, ''),
(1000, 'Please indicate a sort order number for product weight', 'MODULE_PRODUCTS_SEARCH_LIST_WEIGHT', '0', 'This option allow customer to choose a product display sorder : 0 for nothing. Lowest display in first', 6, 10, NULL, '2018-07-30 22:32:11', NULL, ''),
(1001, 'Please choose the image size', 'MODULE_PRODUCTS_SEARCH_IMAGE_MEDIUM', 'Small', 'Indicate the size than you want', 6, 11, NULL, '2018-07-30 22:32:11', NULL, 'clic_cfg_set_boolean_value(array(''Small'', ''Medium''),'),
(1002, 'Do you want to remove Details / buy button', 'MODULE_PRODUCTS_SEARCH_DELETE_BUY_BUTTON', 'False', 'Remove betails / buy button', 6, 11, NULL, '2018-07-30 22:32:11', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1003, 'Sort Order', 'MODULE_PRODUCTS_SEARCH_SORT_ORDER', '100', 'Sort Order (Lowest is displayed in first)', 6, 4, NULL, '2018-07-30 22:32:11', NULL, ''),
(1004, 'Do you want to activate this module ?', 'MODULE_PRODUCTS_NEW_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-30 22:46:27', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1005, 'Please choose the template than you want to display ?', 'MODULE_PRODUCTS_NEW_TEMPLATE', 'template_bootstrap_column_5.php', 'Choose the template than you want to display', 6, 2, NULL, '2018-07-30 22:46:27', NULL, 'clic_cfg_set_multi_template_pull_down'),
(1006, 'Please indicate the product number to display', 'MODULE_PRODUCTS_NEW_MAX_DISPLAY', '6', 'Indicate a maximum number to display products.', 6, 3, NULL, '2018-07-30 22:46:27', NULL, ''),
(1007, 'Please Indicate the column number to display the content ?', 'MODULE_PRODUCTS_NEW_COLUMNS', '4', 'Select a number between 1 and 12', 6, 3, NULL, '2018-07-30 22:46:27', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1008, 'Do you want to display a short description ?', 'MODULE_PRODUCTS_NEW_SHORT_DESCRIPTION', '0', 'Indicate a number to display the summary description (caracters)', 6, 4, NULL, '2018-07-30 22:46:27', NULL, ''),
(1009, 'Do you want to remove words in the summary description ?', 'MODULE_PRODUCTS_NEW_SHORT_DESCRIPTION_DELETE_WORLDS', '0', 'Remove words at the left in the summary description', 6, 4, NULL, '2018-07-30 22:46:27', NULL, ''),
(1010, 'Do you want to display a message News / Specials / Featured / Selected product?', 'MODULE_PRODUCTS_NEW_TICKER', 'False', 'Display a message on product image. The time can be change in the configuration menu', 6, 1, NULL, '2018-07-30 22:46:27', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1011, 'Do you want to display a discount poucentage (specials) ?', 'MODULE_PRODUCTS_NEW_POURCENTAGE_TICKER', 'False', 'Display a discount poucentage (specials)', 6, 1, NULL, '2018-07-30 22:46:27', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1012, 'Do you want to display the stock ?', 'MODULE_PRODUCTS_NEW_DISPLAY_STOCK', 'none', 'Display an information In Stock, Sold Out, out of stock ?', 6, 6, NULL, '2018-07-30 22:46:27', NULL, 'clic_cfg_set_boolean_value(array(''none'', ''image'', ''number''),'),
(1013, 'Please indicate a sort order number for product arrival', 'MODULE_PRODUCTS_NEW_LIST_DATE_ADDED', '1', 'This option allow customer to choose a product display sorder : 0 for nothing. Lowest display in first', 6, 5, NULL, '2018-07-30 22:46:27', NULL, ''),
(1014, 'Please indicate a sort order number for product price', 'MODULE_PRODUCTS_NEW_LIST_PRICE', '0', 'This option allow customer to choose a product display sorder : 0 for nothing. Lowest display in first', 6, 6, NULL, '2018-07-30 22:46:27', NULL, ''),
(1015, 'Please indicate a sort order number for product model', 'MODULE_PRODUCTS_NEW_LIST_MODEL', '0', 'This option allow customer to choose a product display sorder : 0 for nothing. Lowest display in first', 6, 7, NULL, '2018-07-30 22:46:27', NULL, ''),
(1016, 'Please indicate a sort order number for product stock quantity', 'MODULE_PRODUCTS_NEW_LIST_QUANTITY', '0', 'This option allow customer to choose a product display sorder : 0 for nothing. Lowest display in first', 6, 8, NULL, '2018-07-30 22:46:27', NULL, ''),
(1017, 'Please indicate a sort order number for product weight', 'MODULE_PRODUCTS_NEW_LIST_WEIGHT', '0', 'This option allow customer to choose a product display sorder : 0 for nothing. Lowest display in first', 6, 9, NULL, '2018-07-30 22:46:27', NULL, ''),
(1018, 'Please choose the image size', 'MODULE_PRODUCTS_NEW_IMAGE_MEDIUM', 'Small', 'Indicate the size than you want', 6, 10, NULL, '2018-07-30 22:46:27', NULL, 'clic_cfg_set_boolean_value(array(''Small'', ''Medium''),'),
(1019, 'Do you want to remove Details / buy button', 'MODULE_PRODUCTS_NEW_DELETE_BUY_BUTTON', 'False', 'Remove betails / buy button', 6, 11, NULL, '2018-07-30 22:46:27', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1020, 'Sort Order', 'MODULE_PRODUCTS_NEW_SORT_ORDER', '100', 'Sort Order (Lowest is displayed in first)', 6, 12, NULL, '2018-07-30 22:46:27', NULL, ''),
(1021, 'Do you want to activate this module ?', 'MODULE_PRODUCTS_SPECIAL_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-30 22:48:57', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1022, 'Please choose the template than you want to display ?', 'MODULE_PRODUCTS_SPECIAL_TEMPLATE', 'template_bootstrap_column_5.php', 'Choose the template than you want to display', 6, 2, NULL, '2018-07-30 22:48:57', NULL, 'clic_cfg_set_multi_template_pull_down'),
(1023, 'Please indicate the product number to display', 'MODULE_PRODUCTS_SPECIAL_MAX_DISPLAY', '6', 'Indicate a maximum number to display products.', 6, 3, NULL, '2018-07-30 22:48:57', NULL, ''),
(1024, 'Please Indicate the column number to display the content ?', 'MODULE_PRODUCTS_SPECIAL_COLUMNS', '6', 'Select a number between 1 and 12', 6, 3, NULL, '2018-07-30 22:48:57', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1025, 'Do you want to display a short description ?', 'MODULE_PRODUCTS_SPECIAL_SHORT_DESCRIPTION', '0', 'Indicate a number to display the summary description (caracters)', 6, 4, NULL, '2018-07-30 22:48:57', NULL, ''),
(1026, 'Do you want to remove words in the summary description ?', 'MODULE_PRODUCTS_SPECIAL_SHORT_DESCRIPTION_DELETE_WORLDS', '0', 'Remove words at the left in the summary description', 6, 4, NULL, '2018-07-30 22:48:57', NULL, ''),
(1027, 'Do you want to display a message News / Specials / Featured / Selected product?', 'MODULE_PRODUCTS_SPECIAL_TICKER', 'False', 'Display a message on product image. The time can be change in the configuration menu', 6, 1, NULL, '2018-07-30 22:48:57', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1028, 'Do you want to display a discount poucentage (specials) ?', 'MODULE_PRODUCTS_SPECIAL_POURCENTAGE_TICKER', 'False', 'Display a discount poucentage (specials)', 6, 1, NULL, '2018-07-30 22:48:57', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1029, 'Do you want to display the stock ?', 'MODULE_PRODUCTS_SPECIAL_DISPLAY_STOCK', 'none', 'Display an information In Stock, Sold Out, out of stock ?', 6, 6, NULL, '2018-07-30 22:48:57', NULL, 'clic_cfg_set_boolean_value(array(''none'', ''image'', ''number''),'),
(1030, 'Please indicate a sort order number for product arrival', 'MODULE_PRODUCTS_SPECIAL_LIST_DATE_ADDED', '1', 'This option allow customer to choose a product display sorder : 0 for nothing. Lowest display in first', 6, 5, NULL, '2018-07-30 22:48:57', NULL, ''),
(1031, 'Please indicate a sort order number for product price', 'MODULE_PRODUCTS_SPECIAL_LIST_PRICE', '0', 'This option allow customer to choose a product display sorder : 0 for nothing. Lowest display in first', 6, 6, NULL, '2018-07-30 22:48:57', NULL, ''),
(1032, 'Please indicate a sort order number for product model', 'MODULE_PRODUCTS_SPECIAL_LIST_MODEL', '0', 'This option allow customer to choose a product display sorder : 0 for nothing. Lowest display in first', 6, 7, NULL, '2018-07-30 22:48:57', NULL, ''),
(1033, 'Please indicate a sort order number for product stock quantity', 'MODULE_PRODUCTS_SPECIAL_LIST_QUANTITY', '0', 'This option allow customer to choose a product display sorder : 0 for nothing. Lowest display in first', 6, 8, NULL, '2018-07-30 22:48:57', NULL, ''),
(1034, 'Please indicate a sort order number for product weight', 'MODULE_PRODUCTS_SPECIAL_LIST_WEIGHT', '0', 'This option allow customer to choose a product display sorder : 0 for nothing. Lowest display in first', 6, 9, NULL, '2018-07-30 22:48:57', NULL, ''),
(1035, 'Please choose the image size', 'MODULE_PRODUCTS_SPECIAL_IMAGE_MEDIUM', 'Medium', 'Indicate the size than you want', 6, 10, NULL, '2018-07-30 22:48:57', NULL, 'clic_cfg_set_boolean_value(array(''Small'', ''Medium''),'),
(1036, 'Do you want to remove Details / buy button', 'MODULE_PRODUCTS_SPECIAL_DELETE_BUY_BUTTON', 'False', 'Remove betails / buy button', 6, 11, NULL, '2018-07-30 22:48:57', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1037, 'Sort Order', 'MODULE_PRODUCTS_SPECIAL_SORT_ORDER', '100', 'Sort Order (Lowest is displayed in first)', 6, 4, NULL, '2018-07-30 22:48:57', NULL, ''),
(1038, 'Do you want to activate this module ?', 'MODULE_ADVANCED_SEARCH_CATEGORIES_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 08:24:37', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1039, 'Please select the width for this modules', 'MODULE_ADVANCED_SEARCH_CATEGORIES_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 08:24:37', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1040, 'Sort Order', 'MODULE_ADVANCED_SEARCH_CATEGORIES_SORT_ORDER', '20', 'Sort Order (Lowest is displayed in first)', 6, 100, NULL, '2018-07-31 08:24:37', NULL, ''),
(1041, 'Do you want to activate this module ?', 'MODULE_ADVANCED_SEARCH_CRITERIA_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 08:24:41', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1042, 'Please select the width for this modules', 'MODULE_ADVANCED_SEARCH_CRITERIA_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 08:24:41', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1043, 'Sort Order', 'MODULE_ADVANCED_SEARCH_CRITERIA_SORT_ORDER', '10', 'Sort Order (Lowest is displayed in first)', 6, 10, NULL, '2018-07-31 08:24:41', NULL, ''),
(1044, 'Do you want to activate this module ?', 'MODULE_ADVANCED_SEARCH_DATE_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 08:24:46', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1045, 'Please select the width for this modules', 'MODULE_ADVANCED_SEARCH_DATE_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 08:24:46', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1046, 'Sort Order', 'MODULE_ADVANCED_SEARCH_DATE_SORT_ORDER', '50', 'Sort Order (Lowest is displayed in first)', 6, 2, NULL, '2018-07-31 08:24:46', NULL, ''),
(1049, 'Do you want to activate this module ?', 'MODULE_ADVANCED_SEARCH_MANUFACTURERS_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 08:24:54', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1050, 'Please select the width for this modules', 'MODULE_ADVANCED_SEARCH_MANUFACTURERS_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 08:24:54', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1051, 'Sort Order', 'MODULE_ADVANCED_SEARCH_MANUFACTURERS_SORT_ORDER', '30', 'Sort Order (Lowest is displayed in first)', 6, 2, NULL, '2018-07-31 08:24:54', NULL, ''),
(1052, 'Do you want to activate this module ?', 'MODULE_ADVANCED_SEARCH_PRICE_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 08:24:58', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1053, 'Sort Order', 'MODULE_ADVANCED_SEARCH_PRICE_SORT_ORDER', '40', 'Sort Order (Lowest is displayed in first)', 6, 2, NULL, '2018-07-31 08:24:58', NULL, ''),
(1054, 'Do you want to activate this module ?', 'MODULE_BOXES_SEARCH_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 08:25:31', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1055, 'Please, indicate where the boxe must be displayed', 'MODULE_BOXES_SEARCH_CONTENT_PLACEMENT', 'Right Column', 'Select the column where the boxe must be displayed', 6, 2, NULL, '2018-07-31 08:25:31', NULL, 'clic_cfg_set_boolean_value(array(''Left Column'', ''Right Column''),'),
(1056, 'Please, select the banner group to display a banner image', 'MODULE_BOXES_SEARCH_BANNER_GROUP', 'Default_boxe_search', 'Indicate the banner group to display a banner image. You must create a banner with this group to display the banner image : Marketing - Banner Management', 6, 3, NULL, '2018-07-31 08:25:31', NULL, ''),
(1057, 'Sort Order', 'MODULE_BOXES_SEARCH_SORT_ORDER', '120', 'Sort Order (Lowest is displayed in first)', 6, 4, NULL, '2018-07-31 08:25:31', NULL, ''),
(1058, 'Please, indicate where the boxe must be displayed', 'MODULE_BOXES_SEARCH_DISPLAY_PAGES', 'all', 'Select the page where the boxe must be displayed', 6, 5, NULL, '2018-07-31 08:25:31', NULL, 'clic_cfg_set_select_pages_list'),
(1059, 'Do you want to activate this module ?', 'MODULES_SITEMAP_SUMMARY_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 09:06:08', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1060, 'Please select the width for this modules', 'MODULES_SITEMAP_SUMMARY_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 09:06:08', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1061, 'Sort Order', 'MODULES_SITEMAP_SUMMARY_SORT_ORDER', '100', 'Sort Order (Lowest is displayed in first)', 6, 4, NULL, '2018-07-31 09:06:08', NULL, ''),
(1062, 'Do you want to activate this module ?', 'MODULE_HEADER_PAGE_MANAGER_HEADER_MENU_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 09:24:11', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1063, 'Please select the width for this modules', 'MODULE_HEADER_PAGE_MANAGER_HEADER_MENU_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 09:24:11', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1064, 'Sort Order', 'MODULE_HEADER_PAGE_MANAGER_HEADER_MENU_SORT_ORDER', '110', 'Sort Order (Lowest is displayed in first)', 6, 4, NULL, '2018-07-31 09:24:11', NULL, ''),
(1065, 'Please, indicate where the boxe must be displayed', 'MODULE_HEADER_PAGE_MANAGER_HEADER_MENU_DISPLAY_PAGES', 'all', 'Select the page where the boxe must be displayed', 6, 5, NULL, '2018-07-31 09:24:11', NULL, 'clic_cfg_set_select_pages_list'),
(1066, 'Do you want to activate this module ?', 'MODULES_FOOTER_PAGE_MANAGER_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 09:33:37', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1067, 'Please select the width for this modules', 'MODULE_FOOTER_PAGE_MANAGER_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 09:33:37', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1068, 'Sort Order', 'MODULES_FOOTER_PAGE_MANAGER_SORT_ORDER', '10', 'Sort Order (Lowest is displayed in first)', 6, 4, NULL, '2018-07-31 09:33:37', NULL, ''),
(1069, 'Please, indicate where the boxe must be displayed', 'MODULE_FOOTER_PAGE_MANAGER_DISPLAY_PAGES', 'all', 'Select the page where the boxe must be displayed', 6, 5, NULL, '2018-07-31 09:33:37', NULL, 'clic_cfg_set_select_pages_list'),
(1080, 'Do you want to activate this module ?', 'MODULE_PRODUCTS_INFO_DESCRIPTION_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 11:12:51', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1081, 'Please select the width for this modules', 'MODULE_PRODUCTS_INFO_DESCRIPTION_CONTENT_WIDTH', '8', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 11:12:51', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1082, 'Please indicate where you want to display the module ?', 'MODULE_PRODUCTS_INFO_DESCRIPTION_POSITION', 'float-none', 'Indicate where you want to display the module', 6, 2, NULL, '2018-07-31 11:12:51', NULL, 'clic_cfg_set_boolean_value(array(''float-end'', ''float-start'', ''float-none''),'),
(1083, 'Sort Order', 'MODULE_PRODUCTS_INFO_DESCRIPTION_SORT_ORDER', '30', 'Sort Order (Lowest is displayed in first)', 6, 3, NULL, '2018-07-31 11:12:51', NULL, ''),
(1084, 'Do you want to display this module ?', 'MODULE_PRODUCTS_INFO_GALLERY_BAGUETTEBOX_STATUS', 'True', 'Activate the module in your shop ?', 6, 1, NULL, '2018-07-31 11:12:56', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1085, 'Please, select the content size', 'MODULE_PRODUCTS_INFO_GALLERY_BAGUETTEBOX_CONTENT_WIDTH', '4', 'Please, specif a number betwen 1 ad 12', 6, 1, NULL, '2018-07-31 11:12:56', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1086, 'Where do want to display the gallery position ?', 'MODULE_PRODUCTS_INFO_GALLERY_BAGUETTEBOX_POSITION', 'float-end', 'select the good value', 6, 2, NULL, '2018-07-31 11:12:56', NULL, 'clic_cfg_set_boolean_value(array(''float-end'', ''float-start'', ''float-none''))'),
(1087, 'Please select the width of the thumbail ?', 'MODULE_PRODUCTS_INFO_GALLERY_BAGUETTEBOX_THUMBAIL_WIDTH', '70', 'Please write a number in px', 6, 1, NULL, '2018-07-31 11:12:56', NULL, ''),
(1088, 'Please select the height of the thumbail ?', 'MODULE_PRODUCTS_INFO_GALLERY_BAGUETTEBOX_THUMBAIL_HEIGHT', '70', 'Please write a number in px', 6, 1, NULL, '2018-07-31 11:12:56', NULL, ''),
(1089, 'Do you want to display a message like new / special/ featured, favorite ?', 'MODULE_PRODUCTS_INFO_GALLERY_BAGUETTEBOX_TICKER', 'False', ' display a message like new / special/ featured, favorite on the product<br /><br />The delay can be set in Configuration / Shop / minimal, maximal values', 6, 9, NULL, '2018-07-31 11:12:56', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1090, 'Do you want to display price discount in poucentage ?', 'MODULE_PRODUCTS_INFO_GALLERY_BAGUETTEBOX_POURCENTAGE', 'False', 'Display price discount in poucentage', 6, 1, NULL, '2018-07-31 11:12:56', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1091, 'Sort Order', 'MODULE_PRODUCTS_INFO_GALLERY_BAGUETTEBOX_SORT_ORDER', '25', 'Sort Order (Lowest is displayed in first)', 6, 3, NULL, '2018-07-31 11:12:56', NULL, ''),
(1092, 'Do you want to activate this module ?', 'MODULE_PRODUCTS_INFO_MODEL_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 11:13:00', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1093, 'Please select the width for this modules', 'MODULE_PRODUCTS_INFO_MODEL_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 11:13:00', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1094, 'Please indicate where you want to display the module ?', 'MODULE_PRODUCTS_INFO_MODEL_POSITION', 'float-none', 'Indicate where you want to display the module', 6, 2, NULL, '2018-07-31 11:13:00', NULL, 'clic_cfg_set_boolean_value(array(''float-end'', ''float-start'', ''float-none'') '),
(1095, 'Sort Order', 'MODULE_PRODUCTS_INFO_MODEL_SORT_ORDER', '20', 'Sort Order (Lowest is displayed in first)', 6, 3, NULL, '2018-07-31 11:13:00', NULL, ''),
(1096, 'Do you want to activate this module ?', 'MODULE_PRODUCTS_INFO_NAME_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 11:13:05', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1097, 'Please select the width for this modules', 'MODULE_PRODUCTS_INFO_NAME_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 11:13:05', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1098, 'Please indicate where you want to display the module ?', 'MODULE_PRODUCTS_INFO_NAME_POSITION', 'float-none', 'Indicate where you want to display the module', 6, 2, NULL, '2018-07-31 11:13:05', NULL, 'clic_cfg_set_boolean_value(array(''float-end'', ''float-start'', ''float-none'') '),
(1099, 'Sort Order', 'MODULE_PRODUCTS_INFO_NAME_SORT_ORDER', '10', 'Sort Order (Lowest is displayed in first)', 6, 3, NULL, '2018-07-31 11:13:05', NULL, ''),
(1100, 'Do you want to activate this module ?', 'MODULE_PRODUCTS_INFO_OPTIONS_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 11:13:10', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1101, 'Please select the width for this modules', 'MODULE_PRODUCTS_INFO_OPTIONS_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 11:13:10', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1102, 'Please indicate where you want to display the module ?', 'MODULE_PRODUCTS_INFO_OPTIONS_POSITION', 'float-none', 'Indicate where you want to display the module', 6, 2, NULL, '2018-07-31 11:13:10', NULL, 'clic_cfg_set_boolean_value(array(''float-end'', ''float-start'', ''float-none''),'),
(1103, 'Sort Order', 'MODULE_PRODUCTS_INFO_OPTIONS_SORT_ORDER', '90', 'Sort Order (Lowest is displayed in first)', 6, 3, NULL, '2018-07-31 11:13:10', NULL, ''),
(1104, 'Do you want to activate this module ?', 'MODULE_PRODUCTS_INFO_PRICE_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 11:13:14', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1105, 'Please select the width for this modules', 'MODULE_PRODUCTS_INFO_PRICE_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 11:13:14', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1106, 'Please indicate where you want to display the module ?', 'MODULE_PRODUCTS_INFO_PRICE_POSITION', 'float-none', 'Indicate where you want to display the module', 6, 2, NULL, '2018-07-31 11:13:14', NULL, 'clic_cfg_set_boolean_value(array(''float-end'', ''float-start'', ''float-none''),'),
(1107, 'Sort Order', 'MODULE_PRODUCTS_INFO_PRICE_SORT_ORDER', '100', 'Sort Order (Lowest is displayed in first)', 6, 3, NULL, '2018-07-31 11:13:14', NULL, ''),
(1108, 'Installed Modules', 'MODULE_MODULES_CREATE_ACCOUNT_INSTALLED', 'ca_create_account_introduction.php;ca_create_account_success.php;ca_create_account_registration.php;ca_create_account_privacy_condition.php;ca_create_account_button_process.php', 'This is automatically updated. No need to edit.', 6, 0, '2018-10-10 15:13:22', '2018-07-31 14:28:21', NULL, NULL),
(1109, 'Installed Modules', 'MODULE_MODULES_CREATE_ACCOUNT_PRO_INSTALLED', 'cap_create_account_pro_introduction.php;cap_create_account_pro_registration.php;cap_create_account_pro_privacy_condition.php;cap_create_account_pro_button_process.php;cap_create_account_pro_success.php', 'This is automatically updated. No need to edit.', 6, 0, '2018-10-10 15:16:41', '2018-07-31 14:28:29', NULL, NULL),
(1110, 'Do you want to activate this module ?', 'MODULE_LOGIN_CONNEXION_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 14:31:44', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1111, 'Please select the width for this modules', 'MODULE_LOGIN_CONNEXION_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 14:31:44', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1112, 'Please indicate where you want to display the module ?', 'MODULE_LOGIN_CONNEXION_POSITION', 'float-none', 'Affiche le module à gauche ou à droite<br><br><i>(Valeur Left = Gauche <br>Valeur Right = Droite <br>Valeur None = Aucun)</i>', 6, 2, NULL, '2018-07-31 14:31:44', NULL, 'clic_cfg_set_boolean_value(array(''float-end'', ''float-start'', ''float-none''),'),
(1113, 'Sort Order', 'MODULE_LOGIN_CONNEXION_SORT_ORDER', '5', 'Sort Order (Lowest is displayed in first)', 6, 4, NULL, '2018-07-31 14:31:44', NULL, ''),
(1114, 'Do you want to activate this module ?', 'MODULE_LOGIN_MODE_B2B_STATUS', 'True', 'Souhaitez vous activer ce module ?', 6, 1, NULL, '2018-07-31 14:31:48', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1115, 'Please select the width for this modules', 'MODULE_LOGIN_MODE_B2B_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 14:31:48', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1116, 'Please indicate where you want to display the module ?', 'MODULE_LOGIN_MODE_B2B_POSITION', 'float-none', 'Affiche le module à gauche ou à droite<br><br><i>(Valeur Left = Gauche <br>Valeur Right = Droite <br>Valeur None = Aucun)</i>', 6, 2, NULL, '2018-07-31 14:31:48', NULL, 'clic_cfg_set_boolean_value(array(''float-end'', ''float-start'', ''float-none''),'),
(1117, 'Sort Order', 'MODULE_LOGIN_MODE_B2B_SORT_ORDER', '30', 'Sort Order (Lowest is displayed in first)', 6, 4, NULL, '2018-07-31 14:31:48', NULL, ''),
(1118, 'Do you want to activate this module ?', 'MODULE_LOGIN_MODE_B2B_B2C_STATUS', 'True', 'Souhaitez vous activer ce module ?', 6, 1, NULL, '2018-07-31 14:31:52', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1119, 'Please select the width for this modules', 'MODULE_LOGIN_MODE_B2B_B2C_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 14:31:52', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1120, 'Sort Order', 'MODULE_LOGIN_MODE_B2B_B2C_SORT_ORDER', '10', 'Sort Order (Lowest is displayed in first)', 6, 4, NULL, '2018-07-31 14:31:52', NULL, ''),
(1121, 'Do you want to activate this module ?', 'MODULE_LOGIN_MODE_B2C_STATUS', 'True', 'Souhaitez vous activer ce module ?', 6, 1, NULL, '2018-07-31 14:31:56', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1122, 'Please select the width for this modules', 'MODULE_LOGIN_MODE_B2C_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 14:31:56', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1123, 'Please indicate where you want to display the module ?', 'MODULE_LOGIN_MODE_B2C_POSITION', 'float-none', 'Affiche le module à gauche ou à droite<br><br><i>(Valeur Left = Gauche <br>Valeur Right = Droite <br>Valeur None = Aucun)</i>', 6, 2, NULL, '2018-07-31 14:31:56', NULL, 'clic_cfg_set_boolean_value(array(''float-end'', ''float-start'', ''float-none''),'),
(1124, 'Sort Order', 'MODULE_LOGIN_MODE_B2C_SORT_ORDER', '40', 'Sort Order (Lowest is displayed in first)', 6, 4, NULL, '2018-07-31 14:31:56', NULL, ''),
(1125, 'Do you want to activate this module ?', 'MODULE_LOGIN_PASSWORD_FORGOTTEN_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 14:32:00', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1126, 'Please select the width for this modules', 'MODULE_LOGIN_PASSWORD_FORGOTTEN_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 14:32:00', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1127, 'Sort Order', 'MODULE_LOGIN_PASSWORD_FORGOTTEN_SORT_ORDER', '100', 'Sort Order (Lowest is displayed in first)', 6, 4, NULL, '2018-07-31 14:32:00', NULL, ''),
(1128, 'Do you want to activate this module ?', 'MODULE_LOGIN_PASSWORD_RESET_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 14:32:04', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1129, 'Please select the width for this modules', 'MODULE_LOGIN_PASSWORD_RESET_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 14:32:04', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1130, 'Sort Order', 'MODULE_LOGIN_PASSWORD_RESET_SORT_ORDER', '100', 'Sort Order (Lowest is displayed in first)', 6, 4, NULL, '2018-07-31 14:32:04', NULL, ''),
(1131, 'Do you want to activate this module ?', 'MODULE_CREATE_ACCOUNT_INTRODUCTION_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 14:40:31', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1132, 'Please select the width for this modules', 'MODULE_CREATE_ACCOUNT_INTRODUCTION_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 14:40:31', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1133, 'Sort Order', 'MODULE_CREATE_ACCOUNT_INTRODUCTION_SORT_ORDER', '50', 'Sort Order (Lowest is displayed in first)', 6, 4, NULL, '2018-07-31 14:40:31', NULL, ''),
(1134, 'Do you want to activate this module ?', 'MODULE_CREATE_ACCOUNT_REGISTRATION_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 14:40:35', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1135, 'Please select the width for this modules', 'MODULE_CREATE_ACCOUNT_REGISTRATION_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 14:40:35', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1136, 'Sort Order', 'MODULE_CREATE_ACCOUNT_REGISTRATION_SORT_ORDER', '150', 'Sort Order (Lowest is displayed in first)', 6, 4, NULL, '2018-07-31 14:40:35', NULL, ''),
(1137, 'Do you want to activate this module ?', 'MODULE_CREATE_ACCOUNT_SUCCESS_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 14:40:39', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1138, 'Please select the width for this modules', 'MODULE_CREATE_ACCOUNT_SUCCESS_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 14:40:39', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1139, 'Sort Order', 'MODULE_CREATE_ACCOUNT_SUCCESS_SORT_ORDER', '100', 'Sort Order (Lowest is displayed in first)', 6, 4, NULL, '2018-07-31 14:40:39', NULL, ''),
(1140, 'Do you want to activate this module ?', 'MODULE_CREATE_ACCOUNT_PRO_INTRODUCTION_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 14:40:51', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1141, 'Please select the width for this modules', 'MODULE_CREATE_ACCOUNT_PRO_INTRODUCTION_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 14:40:51', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1142, 'Sort Order', 'MODULE_CREATE_ACCOUNT_PRO_INTRODUCTION_SORT_ORDER', '50', 'Sort Order (Lowest is displayed in first)', 6, 4, NULL, '2018-07-31 14:40:51', NULL, ''),
(1143, 'Do you want to activate this module ?', 'MODULE_CREATE_ACCOUNT_PRO_REGISTRATION_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 14:40:56', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1144, 'Please select the width for this modules', 'MODULE_CREATE_ACCOUNT_PRO_REGISTRATION_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 14:40:56', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1145, 'Sort Order', 'MODULE_CREATE_ACCOUNT_PRO_REGISTRATION_SORT_ORDER', '100', 'Sort Order (Lowest is displayed in first)', 6, 4, NULL, '2018-07-31 14:40:56', NULL, '');
INSERT INTO `clic_configuration` VALUES
(1146, 'Do you want to activate this module ?', 'MODULE_CREATE_ACCOUNT_PRO_SUCCESS_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 14:41:00', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1147, 'Please select the width for this modules', 'MODULE_CREATE_ACCOUNT_PRO_SUCCESS_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 14:41:00', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1148, 'Sort Order', 'MODULE_CREATE_ACCOUNT_PRO_SUCCESS_SORT_ORDER', '100', 'Sort Order (Lowest is displayed in first)', 6, 4, NULL, '2018-07-31 14:41:00', NULL, ''),
(1149, 'Do you want to activate this module ?', 'MODULE_CHECKOUT_SHIPPING_ADDRESS_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 14:59:56', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1150, 'Please select the width for this modules', 'MODULE_CHECKOUT_SHIPPING_ADDRESS_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 14:59:56', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1151, 'Sort Order', 'MODULE_CHECKOUT_SHIPPING_ADDRESS_SORT_ORDER', '10', 'Sort Order (Lowest is displayed in first)', 6, 4, NULL, '2018-07-31 14:59:56', NULL, ''),
(1152, 'Do you want to activate this module ?', 'MODULE_CHECKOUT_SHIPPING_BUTTON_PROCESS_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 15:00:00', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1153, 'Please select the width for this modules', 'MODULE_CHECKOUT_SHIPPING_BUTTON_PROCESS_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 15:00:00', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1154, 'Sort Order', 'MODULE_CHECKOUT_SHIPPING_BUTTON_PROCESS_SORT_ORDER', '120', 'Sort Order (Lowest is displayed in first)', 6, 4, NULL, '2018-07-31 15:00:00', NULL, ''),
(1155, 'Do you want to activate this module ?', 'MODULE_CHECKOUT_SHIPPING_COMMENT_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 15:00:05', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1156, 'Please select the width for this modules', 'MODULE_CHECKOUT_SHIPPING_COMMENT_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 15:00:05', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1157, 'Sort Order', 'MODULE_CHECKOUT_SHIPPING_COMMENT_SORT_ORDER', '100', 'Sort Order (Lowest is displayed in first)', 6, 4, NULL, '2018-07-31 15:00:05', NULL, ''),
(1158, 'Do you want to activate this module ?', 'MODULE_CHECKOUT_SHIPPING_LISTING_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 15:00:11', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1159, 'Please select the width for this modules', 'MODULE_CHECKOUT_SHIPPING_LISTING_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 15:00:11', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1160, 'Sort Order', 'MODULE_CHECKOUT_SHIPPING_LISTING_SORT_ORDER', '30', 'Sort Order (Lowest is displayed in first)', 6, 4, NULL, '2018-07-31 15:00:11', NULL, ''),
(1161, 'Do you want to activate this module ?', 'MODULE_CHECKOUT_PAYMENT_ADDRESS_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 15:00:28', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1162, 'Please select the width for this modules', 'MODULE_CHECKOUT_PAYMENT_ADDRESS_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 15:00:28', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1163, 'Sort Order', 'MODULE_CHECKOUT_PAYMENT_ADDRESS_SORT_ORDER', '10', 'Sort Order (Lowest is displayed in first)', 6, 4, NULL, '2018-07-31 15:00:28', NULL, ''),
(1164, 'Do you want to activate this module ?', 'MODULE_CHECKOUT_PAYMENT_AGREEMENT_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 15:00:32', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1165, 'Please select the width for this modules', 'MODULE_CHECKOUT_PAYMENT_AGREEMENT_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 15:00:32', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1166, 'Sort Order', 'MODULE_CHECKOUT_PAYMENT_AGREEMENT_SORT_ORDER', '120', 'Sort Order (Lowest is displayed in first)', 6, 4, NULL, '2018-07-31 15:00:32', NULL, ''),
(1167, 'Do you want to activate this module ?', 'MODULE_CHECKOUT_PAYMENT_BUTTON_PROCESS_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 15:00:36', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1168, 'Please select the width for this modules', 'MODULE_CHECKOUT_PAYMENT_BUTTON_PROCESS_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 15:00:36', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1169, 'Sort Order', 'MODULE_CHECKOUT_PAYMENT_BUTTON_PROCESS_SORT_ORDER', '130', 'Sort Order (Lowest is displayed in first)', 6, 4, NULL, '2018-07-31 15:00:36', NULL, ''),
(1170, 'Do you want to activate this module ?', 'MODULE_CHECKOUT_PAYMENT_COMMENT_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 15:00:41', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1171, 'Please select the width for this modules', 'MODULE_CHECKOUT_PAYMENT_COMMENT_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 15:00:41', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1172, 'Sort Order', 'MODULE_CHECKOUT_PAYMENT_COMMENT_SORT_ORDER', '100', 'Sort Order (Lowest is displayed in first)', 6, 4, NULL, '2018-07-31 15:00:41', NULL, ''),
(1173, 'Do you want to activate this module ?', 'MODULE_CHECKOUT_PAYMENT_LISTING_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 15:00:45', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1174, 'Please select the width for this modules', 'MODULE_CHECKOUT_PAYMENT_LISTING_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 15:00:45', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1175, 'Sort Order', 'MODULE_CHECKOUT_PAYMENT_LISTING_SORT_ORDER', '30', 'Sort Order (Lowest is displayed in first)', 6, 4, NULL, '2018-07-31 15:00:45', NULL, ''),
(1176, 'Do you want to activate this module ?', 'MODULE_CHECKOUT_CONFIRMATION_BILLING_ADDRESS_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 15:01:13', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1177, 'Please select the width for this modules', 'MODULE_CHECKOUT_CONFIRMATION_BILLING_ADDRESS_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 15:01:13', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1178, 'Sort Order', 'MODULE_CHECKOUT_CONFIRMATION_BILLING_ADDRESS_SORT_ORDER', '20', 'Sort Order (Lowest is displayed in first)', 6, 4, NULL, '2018-07-31 15:01:13', NULL, ''),
(1179, 'Do you want to activate this module ?', 'MODULE_CHECKOUT_CONFIRMATION_CUSTOMERS_COMMENT_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 15:01:17', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1180, 'Please select the width for this modules', 'MODULE_CHECKOUT_CONFIRMATION_CUSTOMERS_COMMENT_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 15:01:17', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1181, 'Sort Order', 'MODULE_CHECKOUT_CONFIRMATION_CUSTOMERS_COMMENT_SORT_ORDER', '80', 'Sort Order (Lowest is displayed in first)', 6, 4, NULL, '2018-07-31 15:01:17', NULL, ''),
(1182, 'Do you want to activate this module ?', 'MODULE_CHECKOUT_CONFIRMATION_DELIVERY_ADDRESS_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 15:01:21', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1183, 'Please select the width for this modules', 'MODULE_CHECKOUT_CONFIRMATION_DELIVERY_ADDRESS_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 15:01:21', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1184, 'Sort Order', 'MODULE_CHECKOUT_CONFIRMATION_DELIVERY_ADDRESS_SORT_ORDER', '10', 'Sort Order (Lowest is displayed in first)', 6, 4, NULL, '2018-07-31 15:01:21', NULL, ''),
(1185, 'Do you want to activate this module ?', 'MODULE_CHECKOUT_CONFIRMATION_LAW_HAMON_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 15:01:26', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1186, 'Please select the width for this modules', 'MODULE_CHECKOUT_CONFIRMATION_LAW_HAMON_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 15:01:26', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1187, 'Sort Order', 'MODULE_CHECKOUT_CONFIRMATION_LAW_HAMON_SORT_ORDER', '300', 'Sort Order (Lowest is displayed in first)', 6, 4, NULL, '2018-07-31 15:01:26', NULL, ''),
(1188, 'Do you want to activate this module ?', 'MODULE_CHECKOUT_CONFIRMATION_ORDER_TOTAL_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 15:01:30', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1189, 'Please select the width for this modules', 'MODULE_CHECKOUT_CONFIRMATION_ORDER_TOTAL_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 15:01:30', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1190, 'Sort Order', 'MODULE_CHECKOUT_CONFIRMATION_ORDER_TOTAL_SORT_ORDER', '60', 'Sort Order (Lowest is displayed in first)', 6, 4, NULL, '2018-07-31 15:01:30', NULL, ''),
(1191, 'Do you want to activate this module ?', 'MODULE_CHECKOUT_CONFIRMATION_PAYMENT_INFORMATION_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 15:01:34', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1192, 'Please select the width for this modules', 'MODULE_CHECKOUT_CONFIRMATION_PAYMENT_INFORMATION_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 15:01:34', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1193, 'Sort Order', 'MODULE_CHECKOUT_CONFIRMATION_PAYMENT_INFORMATION_SORT_ORDER', '85', 'Sort Order (Lowest is displayed in first)', 6, 4, NULL, '2018-07-31 15:01:34', NULL, ''),
(1194, 'Do you want to activate this module ?', 'MODULE_CHECKOUT_CONFIRMATION_PROCESS_ORDER_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 15:01:41', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1195, 'Please select the width for this modules', 'MODULE_CHECKOUT_CONFIRMATION_PROCESS_ORDER_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 15:01:41', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1196, 'Sort Order', 'MODULE_CHECKOUT_CONFIRMATION_PROCESS_ORDER_SORT_ORDER', '320', 'Sort Order (Lowest is displayed in first)', 6, 4, NULL, '2018-07-31 15:01:41', NULL, ''),
(1197, 'Do you want to activate this module ?', 'MODULE_CHECKOUT_CONFIRMATION_PRODUCTS_LISTING_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 15:01:46', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1198, 'Please select the width for this modules', 'MODULE_CHECKOUT_CONFIRMATION_PRODUCTS_LISTING_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 15:01:46', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1199, 'Sort Order', 'MODULE_CHECKOUT_CONFIRMATION_PRODUCTS_LISTING_SORT_ORDER', '50', 'Sort Order (Lowest is displayed in first)', 6, 4, NULL, '2018-07-31 15:01:46', NULL, ''),
(1200, 'Enable Product Downloads Module', 'MODULE_CHECKOUT_SUCCESS_DOWNLOADS_STATUS', 'True', 'Should ordered product download links be shown on the checkout success page ?', 6, 1, NULL, '2018-07-31 15:02:00', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1201, 'Sort Order', 'MODULE_CHECKOUT_SUCCESS_DOWNLOADS_SORT_ORDER', '3', 'Sort order of display. Lowest is displayed first', 6, 3, NULL, '2018-07-31 15:02:00', NULL, ''),
(1202, 'Enable Product Downloads Module', 'MODULE_CHECKOUT_SUCCESS_PRODUCT_NOTIFICATIONS_STATUS', 'True', 'Should ordered product download links be shown on the checkout success page ?', 6, 1, NULL, '2018-07-31 15:02:04', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1203, 'Please select the width to display ?', 'MODULE_CHECKOUT_SUCCESS_PRODUCT_NOTIFICATIONS_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 15:02:04', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1204, 'Sort Order', 'MODULE_CHECKOUT_SUCCESS_PRODUCT_NOTIFICATIONS_SORT_ORDER', '2', 'Sort order of display. Lowest is displayed first', 6, 3, NULL, '2018-07-31 15:02:04', NULL, ''),
(1205, 'Enable Product Downloads Module', 'MODULE_CHECKOUT_SUCCESS_REDIRECT_OLD_ORDER_STATUS', 'True', 'Should ordered product download links be shown on the checkout success page ?', 6, 1, NULL, '2018-07-31 15:02:09', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1206, 'Please, choose you minutes tor edirect the page', 'MODULE_CHECKOUT_SUCCESS_REDIRECT_OLD_ORDER_MINUTES', '60', 'Redirect customers to the index page after an order older than this amount is viewed', 6, 2, NULL, '2018-07-31 15:02:09', NULL, ''),
(1207, 'Sort Order', 'MODULE_CHECKOUT_SUCCESS_REDIRECT_OLD_ORDER_SORT_ORDER', '4', 'Sort order of display. Lowest is displayed first', 6, 3, NULL, '2018-07-31 15:02:09', NULL, ''),
(1208, 'Enable Product Downloads Module', 'MODULE_CHECKOUT_SUCCESS_THANK_YOU_STATUS', 'True', 'Should ordered product download links be shown on the checkout success page ?', 6, 1, NULL, '2018-07-31 15:02:14', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1209, 'Select the width to display?', 'MODULE_CHECKOUT_SUCCESS_THANK_YOU_CONTENT_WIDTH', '12', 'select a number between 1 and 12', 6, 1, NULL, '2018-07-31 15:02:14', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1210, 'Sort Order', 'MODULE_CHECKOUT_SUCCESS_THANK_YOU_SORT_ORDER', '1', 'Sort order of display. Lowest is displayed first', 6, 3, NULL, '2018-07-31 15:02:14', NULL, ''),
(1211, 'Installed Modules', 'MODULE_MODULES_PRODUCTS_REVIEWS_INSTALLED', 'pr_products_reviews_listing_description.php;pr_products_reviews_listing_image.php;pr_products_reviews_info_content.php;pr_products_reviews_info_image.php;pr_products_reviews_info_button_process.php;pr_products_reviews_listing_button_process.php;pr_products_reviews_listing_content.php;pr_products_reviews_write_comment.php;pr_products_reviews_write_image.php;pr_products_reviews_write_rating.php;pr_products_reviews_write_button_process.php', 'This is automatically updated. No need to edit.', 6, 0, '2018-07-31 15:09:59', '2018-07-31 15:08:31', NULL, NULL),
(1212, 'Do you want to activate this module ?', 'MODULES_PRODUCTS_REVIEWS_INFO_BUTTON_PROCESS_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 15:09:00', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1213, 'Please select the width for this modules', 'MODULES_PRODUCTS_REVIEWS_INFO_BUTTON_PROCESS_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 15:09:00', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1214, 'Sort Order', 'MODULES_PRODUCTS_REVIEWS_INFO_BUTTON_PROCESS_SORT_ORDER', '60', 'Sort Order (Lowest is displayed in first)', 6, 4, NULL, '2018-07-31 15:09:00', NULL, ''),
(1215, 'Do you want to activate this module ?', 'MODULES_PRODUCTS_REVIEWS_INFO_CONTENT_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 15:09:05', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1216, 'Please select the width for this modules', 'MODULES_PRODUCTS_REVIEWS_INFO_CONTENT_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 15:09:05', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1217, 'Sort Order', 'MODULES_PRODUCTS_REVIEWS_INFO_CONTENT_SORT_ORDER', '30', 'Sort Order (Lowest is displayed in first)', 6, 4, NULL, '2018-07-31 15:09:05', NULL, ''),
(1218, 'Do you want to activate this module ?', 'MODULES_PRODUCTS_REVIEWS_INFO_IMAGE_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 15:09:10', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1219, 'Please select the width for this modules', 'MODULES_PRODUCTS_REVIEWS_INFO_IMAGE_CONTENT_WIDTH', '4', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 15:09:10', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1220, 'Sort Order', 'MODULES_PRODUCTS_REVIEWS_INFO_IMAGE_SORT_ORDER', '40', 'Sort Order (Lowest is displayed in first)', 6, 4, NULL, '2018-07-31 15:09:10', NULL, ''),
(1221, 'Do you want to activate this module ?', 'MODULES_PRODUCTS_REVIEWS_LISTING_BUTTON_PROCESS_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 15:09:18', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1222, 'Please select the width for this modules', 'MODULES_PRODUCTS_REVIEWS_LISTING_BUTTON_PROCESS_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 15:09:18', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1223, 'Sort Order', 'MODULES_PRODUCTS_REVIEWS_LISTING_BUTTON_PROCESS_SORT_ORDER', '40', 'Sort Order (Lowest is displayed in first)', 6, 4, NULL, '2018-07-31 15:09:18', NULL, ''),
(1224, 'Do you want to activate this module ?', 'MODULES_PRODUCTS_REVIEWS_LISTING_CONTENT_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 15:09:22', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1225, 'Please select the width for this modules', 'MODULES_PRODUCTS_REVIEWS_LISTING_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 15:09:22', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1226, 'Sort Order', 'MODULES_PRODUCTS_REVIEWS_LISTING_CONTENT_SORT_ORDER', '30', 'Sort Order (Lowest is displayed in first)', 6, 4, NULL, '2018-07-31 15:09:22', NULL, ''),
(1227, 'Do you want to activate this module ?', 'MODULES_PRODUCTS_REVIEWS_LISTING_DESCRIPTION_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 15:09:30', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1228, 'Please select the width for this modules', 'MODULES_PRODUCTS_REVIEWS_LISTING_DESCRIPTION_CONTENT_WIDTH', '8', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 15:09:30', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1229, 'Sort Order', 'MODULES_PRODUCTS_REVIEWS_LISTING_DESCRIPTION_SORT_ORDER', '15', 'Sort Order (Lowest is displayed in first)', 6, 4, NULL, '2018-07-31 15:09:30', NULL, ''),
(1230, 'Do you want to activate this module ?', 'MODULES_PRODUCTS_REVIEWS_LISTING_IMAGE_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 15:09:37', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1231, 'Please select the width for this modules', 'MODULES_PRODUCTS_REVIEWS_LISTING_IMAGE_CONTENT_WIDTH', '4', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 15:09:37', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1232, 'Sort Order', 'MODULES_PRODUCTS_REVIEWS_LISTING_IMAGE_SORT_ORDER', '5', 'Sort Order (Lowest is displayed in first)', 6, 4, NULL, '2018-07-31 15:09:37', NULL, ''),
(1233, 'Do you want to activate this module ?', 'MODULES_PRODUCTS_REVIEWS_WRITE_COMMENT_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 15:09:43', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1234, 'Please select the width for this modules', 'MODULES_PRODUCTS_REVIEWS_WRITE_COMMENT_CONTENT_WIDTH', '5', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 15:09:43', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1235, 'Sort Order', 'MODULES_PRODUCTS_REVIEWS_WRITE_COMMENT_SORT_ORDER', '300', 'Sort Order (Lowest is displayed in first)', 6, 4, NULL, '2018-07-31 15:09:43', NULL, ''),
(1236, 'Do you want to activate this module ?', 'MODULES_PRODUCTS_REVIEWS_WRITE_RATING_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 15:09:53', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1237, 'Please select the width for this modules', 'MODULES_PRODUCTS_REVIEWS_WRITE_RATING_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 15:09:53', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1238, 'Please,select the stars color', 'MODULES_PRODUCTS_REVIEWS_WRITE_RATING_COLOR', '#A0A0A0', 'Veuillez indiquer une couleur de type #A0A0A0 (hexadecimal)', 6, 3, NULL, '2018-07-31 15:09:53', NULL, ''),
(1239, 'Sort Order', 'MODULES_PRODUCTS_REVIEWS_WRITE_RATING_SORT_ORDER', '500', 'Sort Order (Lowest is displayed in first)', 6, 4, NULL, '2018-07-31 15:09:53', NULL, ''),
(1240, 'Do you want to activate this module ?', 'MODULES_PRODUCTS_REVIEWS_WRITE_IMAGE_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 15:09:59', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1241, 'Please select the width for this modules', 'MODULES_PRODUCTS_REVIEWS_WRITE_IMAGE_CONTENT_WIDTH', '5', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 15:09:59', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1242, 'Sort Order', 'MODULES_PRODUCTS_REVIEWS_WRITE_IMAGE_SORT_ORDER', '200', 'Sort Order (Lowest is displayed in first)', 6, 4, NULL, '2018-07-31 15:09:59', NULL, ''),
(1243, 'Do you want to activate this module ?', 'MODULES_PRODUCTS_REVIEWS_WRITE_BUTTON_PROCESS_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 15:10:06', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1244, 'Please select the width for this modules', 'MODULES_PRODUCTS_REVIEWS_WRITE_BUTTON_PROCESS_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 15:10:06', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1245, 'Sort Order', 'MODULES_PRODUCTS_REVIEWS_WRITE_BUTTON_PROCESS_SORT_ORDER', '700', 'Sort Order (Lowest is displayed in first)', 6, 4, NULL, '2018-07-31 15:10:06', NULL, ''),
(1246, 'Installed Modules', 'MODULE_MODULES_TELL_A_FRIEND_INSTALLED', 'ta_tell_a_friend_customer.php;ta_tell_a_friend_send_friend.php;ta_tell_a_friend_message.php;ta_tell_a_friend_customer_agreement.php;ta_tell_a_friend_button_process.php', 'This is automatically updated. No need to edit.', 6, 0, '2018-07-31 15:44:35', '2018-07-31 15:43:58', NULL, NULL),
(1247, 'Do you want to activate this module ?', 'MODULES_TELL_A_FRIEND_BUTTON_PROCESS_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 15:44:03', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1248, 'Please select the width for this modules', 'MODULES_TELL_A_FRIEND_BUTTON_PROCESS_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 15:44:03', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1249, 'Sort Order', 'MODULES_TELL_A_FRIEND_BUTTON_PROCESS_SORT_ORDER', '60', 'Sort Order (Lowest is displayed in first)', 6, 4, NULL, '2018-07-31 15:44:03', NULL, ''),
(1250, 'Do you want to activate this module ?', 'MODULES_TELL_A_FRIEND_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 15:44:08', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1251, 'Please select the width for this modules', 'MODULES_TELL_A_FRIEND_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 15:44:08', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1252, 'Sort Order', 'MODULES_TELL_A_FRIEND_SORT_ORDER', '10', 'Sort Order (Lowest is displayed in first)', 6, 4, NULL, '2018-07-31 15:44:08', NULL, ''),
(1253, 'Do you want to activate this module ?', 'MODULES_TELL_A_FRIEND_CUSTOMER_AGREEMENT_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 15:44:12', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1254, 'Please select the width for this modules', 'MODULES_TELL_A_FRIEND_CUSTOMER_AGREEMENT_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 15:44:12', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1255, 'Sort Order', 'MODULES_TELL_A_FRIEND_CUSTOMER_AGREEMENT_SORT_ORDER', '50', 'Sort Order (Lowest is displayed in first)', 6, 4, NULL, '2018-07-31 15:44:12', NULL, ''),
(1256, 'Do you want to activate this module ?', 'MODULES_TELL_A_FRIEND_MESSAGE_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 15:44:16', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1257, 'Please select the width for this modules', 'MODULES_TELL_A_FRIEND_MESSAGE_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 15:44:16', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1258, 'Sort Order', 'MODULES_TELL_A_FRIEND_MESSAGE_SORT_ORDER', '30', 'Sort Order (Lowest is displayed in first)', 6, 4, NULL, '2018-07-31 15:44:16', NULL, ''),
(1259, 'Do you want to activate this module ?', 'MODULES_TELL_A_FRIEND_SEND_FRIEND_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 15:44:21', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1260, 'Please select the width for this modules', 'MODULES_TELL_A_FRIEND_SEND_FRIEND_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 15:44:21', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1261, 'Sort Order', 'MODULES_TELL_A_FRIEND_SEND_FRIEND_SORT_ORDER', '20', 'Sort Order (Lowest is displayed in first)', 6, 4, NULL, '2018-07-31 15:44:21', NULL, ''),
(1265, 'Do you want to activate this module ?', 'MODULE_ACCOUNT_CUSTOMERS_EDIT_TITLE_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 15:50:43', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1266, 'Please select the width for this modules', 'MODULE_ACCOUNT_CUSTOMERS_EDIT_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 15:50:43', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1267, 'Sort Order', 'MODULE_ACCOUNT_CUSTOMERS_EDIT_TITLE_SORT_ORDER', '120', 'Sort Order (Lowest is displayed in first)', 6, 100, NULL, '2018-07-31 15:50:43', NULL, ''),
(1268, 'Do you want to activate this module ?', 'MODULE_ACCOUNT_CUSTOMERS_GDPR_TITLE_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 15:50:47', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1269, 'Please select the width for this modules', 'MODULE_ACCOUNT_CUSTOMERS_GDPR_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 15:50:47', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1270, 'Sort Order', 'MODULE_ACCOUNT_CUSTOMERS_GDPR_TITLE_SORT_ORDER', '120', 'Sort Order (Lowest is displayed in first)', 6, 100, NULL, '2018-07-31 15:50:47', NULL, ''),
(1271, 'Do you want to activate this module ?', 'MODULE_ACCOUNT_CUSTOMERS_HISTORY_TITLE_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 15:50:52', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1272, 'Please select the width for this modules', 'MODULE_ACCOUNT_CUSTOMERS_HISTORY_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 15:50:52', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1273, 'Sort Order', 'MODULE_ACCOUNT_CUSTOMERS_HISTORY_TITLE_SORT_ORDER', '120', 'Sort Order (Lowest is displayed in first)', 6, 100, NULL, '2018-07-31 15:50:52', NULL, ''),
(1274, 'Do you want to activate this module ?', 'MODULE_ACCOUNT_CUSTOMERS_HISTORY_INFO_ADDRESS_TITLE_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 15:50:57', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1275, 'Please select the width for this modules', 'MODULE_ACCOUNT_CUSTOMERS_HISTORY_INFO_ADDRESS_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 15:50:57', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1276, 'Sort Order', 'MODULE_ACCOUNT_CUSTOMERS_HISTORY_INFO_ADDRESS_TITLE_SORT_ORDER', '20', 'Sort Order (Lowest is displayed in first)', 6, 100, NULL, '2018-07-31 15:50:57', NULL, ''),
(1277, 'Do you want to activate this module ?', 'MODULE_ACCOUNT_CUSTOMERS_HISTORY_INFO_BUTTON_BACK_TITLE_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 15:51:01', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1278, 'Please select the width for this modules', 'MODULE_ACCOUNT_CUSTOMERS_HISTORY_INFO_BUTTON_BACK_CONTENT_WIDTH', '6', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 15:51:01', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1279, 'Sort Order', 'MODULE_ACCOUNT_CUSTOMERS_HISTORY_INFO_BUTTON_BACK_TITLE_SORT_ORDER', '170', 'Sort Order (Lowest is displayed in first)', 6, 300, NULL, '2018-07-31 15:51:01', NULL, ''),
(1280, 'Do you want to activate this module ?', 'MODULE_ACCOUNT_CUSTOMERS_HISTORY_INFO_DOWNLOAD_TITLE_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 15:51:05', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1281, 'Please select the width for this modules', 'MODULE_ACCOUNT_CUSTOMERS_HISTORY_INFO_DOWNLOAD_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 15:51:05', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1282, 'Sort Order', 'MODULE_ACCOUNT_CUSTOMERS_HISTORY_INFO_DOWNLOAD_TITLE_SORT_ORDER', '125', 'Sort Order (Lowest is displayed in first)', 6, 115, NULL, '2018-07-31 15:51:05', NULL, ''),
(1283, 'Do you want to activate this module ?', 'MODULE_ACCOUNT_CUSTOMERS_HISTORY_INFO_INVOICE_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 15:51:10', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1284, 'Please select the width for this modules', 'MODULE_ACCOUNT_CUSTOMERS_HISTORY_INFO_INVOICE_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 15:51:10', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1285, 'Sort Order', 'MODULE_ACCOUNT_CUSTOMERS_HISTORY_INFO_INVOICE_SORT_ORDER', '30', 'Sort Order (Lowest is displayed in first)', 6, 100, NULL, '2018-07-31 15:51:10', NULL, ''),
(1286, 'Do you want to activate this module ?', 'MODULE_ACCOUNT_CUSTOMERS_HISTORY_INFO_INVOICE_PDF_TITLE_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 15:51:15', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1287, 'Please select the width for this modules', 'MODULE_ACCOUNT_CUSTOMERS_HISTORY_INFO_INVOICE_PDF_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 15:51:15', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1288, 'Sort Order', 'MODULE_ACCOUNT_CUSTOMERS_HISTORY_INFO_INVOICE_PDF_TITLE_SORT_ORDER', '110', 'Sort Order (Lowest is displayed in first)', 6, 100, NULL, '2018-07-31 15:51:15', NULL, ''),
(1289, 'Do you want to activate this module ?', 'MODULE_ACCOUNT_CUSTOMERS_HISTORY_INFO_ORDER_COMMENT_TITLE_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 15:51:20', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1290, 'Please select the width for this modules', 'MODULE_ACCOUNT_CUSTOMERS_HISTORY_INFO_ORDER_COMMENT_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 15:51:20', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1291, 'Sort Order', 'MODULE_ACCOUNT_CUSTOMERS_HISTORY_INFO_ORDER_COMMENT_TITLE_SORT_ORDER', '35', 'Sort Order (Lowest is displayed in first)', 6, 100, NULL, '2018-07-31 15:51:20', NULL, ''),
(1292, 'Do you want to activate this module ?', 'MODULE_ACCOUNT_CUSTOMERS_LIST_ORDER_TITLE_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 15:51:25', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1293, 'Please select the width for this modules', 'MODULE_ACCOUNT_CUSTOMERS_LIST_ORDER_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 15:51:25', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1294, 'Sort Order', 'MODULE_ACCOUNT_CUSTOMERS_LIST_ORDER_TITLE_SORT_ORDER', '10', 'Sort Order (Lowest is displayed in first)', 6, 10, NULL, '2018-07-31 15:51:25', NULL, ''),
(1295, 'Do you want to activate this module ?', 'MODULE_ACCOUNT_CUSTOMERS_MAILING_TITLE_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 15:51:31', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1296, 'Please select the width for this modules', 'MODULE_ACCOUNT_CUSTOMERS_MAILING_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 15:51:31', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1297, 'Sort Order', 'MODULE_ACCOUNT_CUSTOMERS_MAILING_TITLE_SORT_ORDER', '120', 'Sort Order (Lowest is displayed in first)', 6, 10, NULL, '2018-07-31 15:51:31', NULL, ''),
(1298, 'Do you want to activate this module ?', 'MODULE_ACCOUNT_CUSTOMERS_MY_ACCOUNT_TITLE_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 15:51:35', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1299, 'Please select the width for this modules', 'MODULE_ACCOUNT_CUSTOMERS_MY_ACCOUNT_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 15:51:35', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1300, 'Sort Order', 'MODULE_ACCOUNT_CUSTOMERS_MY_ACCOUNT_TITLE_SORT_ORDER', '15', 'Sort Order (Lowest is displayed in first)', 6, 20, NULL, '2018-07-31 15:51:35', NULL, ''),
(1301, 'Do you want to activate this module ?', 'MODULE_ACCOUNT_CUSTOMERS_NEWSLETTER_TITLE_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 15:51:39', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1302, 'Please select the width for this modules', 'MODULE_ACCOUNT_CUSTOMERS_NEWSLETTER_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 15:51:39', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1303, 'Sort Order', 'MODULE_ACCOUNT_CUSTOMERS_NEWSLETTER_TITLE_SORT_ORDER', '120', 'Sort Order (Lowest is displayed in first)', 6, 10, NULL, '2018-07-31 15:51:39', NULL, ''),
(1304, 'Do you want to activate this module ?', 'MODULE_ACCOUNT_CUSTOMERS_NOTIFICATIONS_TITLE_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 15:51:54', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1305, 'Please select the width for this modules', 'MODULE_ACCOUNT_CUSTOMERS_NOTIFICATIONS_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 15:51:54', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1306, 'Sort Order', 'MODULE_ACCOUNT_CUSTOMERS_NOTIFICATIONS_TITLE_SORT_ORDER', '120', 'Sort Order (Lowest is displayed in first)', 6, 10, NULL, '2018-07-31 15:51:54', NULL, ''),
(1307, 'Do you want to activate this module ?', 'MODULE_ACCOUNT_CUSTOMERS_PASSWORD_TITLE_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 15:51:59', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1308, 'Please select the width for this modules', 'MODULE_ACCOUNT_CUSTOMERS_PASSWORD_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 15:51:59', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1309, 'Sort Order', 'MODULE_ACCOUNT_CUSTOMERS_PASSWORD_TITLE_SORT_ORDER', '120', 'Sort Order (Lowest is displayed in first)', 6, 10, NULL, '2018-07-31 15:51:59', NULL, ''),
(1312, 'Status', 'CLICSHOPPING_APP_DEFINE_LANGUAGE_DL_STATUS', 'True', 'Set True to enable or not the module', 6, 0, NULL, '2018-07-31 16:51:15', NULL, NULL),
(1313, 'Sort Order', 'CLICSHOPPING_APP_DEFINE_LANGUAGE_DL_SORT_ORDER', '30', 'The sort order location of the module shown in the available methods listing (lowest is displayed first).', 6, 0, NULL, '2018-07-31 16:51:15', NULL, NULL),
(1314, 'Parameter [DefineLanguage App]', 'MODULE_MODULES_DEFINE_LANGUAGE_INSTALLED', 'Tools\\DefineLanguage\\DL', 'Parameter [DefineLanguage App]', 6, 0, NULL, '2018-07-31 16:51:15', NULL, NULL),
(1331, 'Handling Cost', 'CLICSHOPPING_APP_ITEM_IT_HANDLING', '', 'The handling cost for this order', 6, 0, NULL, '2018-07-31 16:55:29', NULL, NULL),
(1332, 'Shipping Zone', 'CLICSHOPPING_APP_ITEM_IT_ZONE', '0', 'Enable this module globally or limit it to customers shipping to the selected zone only.', 6, 0, NULL, '2018-07-31 16:55:29', NULL, NULL),
(1333, 'Do you want to display the shipping module for B2C customer ?', 'CLICSHOPPING_APP_ITEM_IT_NO_AUTHORIZE', 'True', 'Display the shipping for B2C customer ?', 6, 0, NULL, '2018-07-31 16:55:29', NULL, NULL),
(1334, 'Delivery Cost', 'CLICSHOPPING_APP_ITEM_IT_COST', '2.50', 'The delivery cost will be multiplied by the number of items in the order using this method', 6, 0, NULL, '2018-07-31 16:55:29', NULL, NULL),
(1335, 'Status', 'CLICSHOPPING_APP_ITEM_IT_STATUS', 'True', 'Set True to enable or not the module', 6, 0, NULL, '2018-07-31 16:55:29', NULL, NULL),
(1336, 'Tax Class', 'CLICSHOPPING_APP_ITEM_IT_TAX_CLASS', '', 'Select the tax class than you want applied', 6, 0, NULL, '2018-07-31 16:55:29', NULL, 'clic_cfg_set_tax_classes_pull_down_menu'),
(1337, 'Shipping Logo', 'CLICSHOPPING_APP_ITEM_IT_LOGO', '', 'Please, indicate the file of the logo with the extension(.gif, .jpg, etc...) to display in the shipping page.<br /><strong>Note :</strong></font><br />The logo must be in the directory sources/images/logos/shipping/', 6, 0, NULL, '2018-07-31 16:55:29', NULL, NULL),
(1338, 'Sort Order', 'CLICSHOPPING_APP_ITEM_IT_SORT_ORDER', '300', 'The sort order location of the module shown in the available methods listing (lowest is displayed first).', 6, 0, NULL, '2018-07-31 16:55:29', NULL, NULL),
(1343, 'Do you want to activate this module ?', 'MODULES_CONTACT_US_FORM_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 17:00:19', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1344, 'Please select the width for this modules', 'MODULE_CONTACT_US_FORM_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 17:00:19', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1346, 'Sort Order', 'MODULES_CONTACT_US_FORM_SORT_ORDER', '100', 'Sort Order (Lowest is displayed in first)', 6, 20, NULL, '2018-07-31 17:00:19', NULL, ''),
(1347, 'Do you want to activate this module ?', 'MODULES_CONTACT_US_PAGE_MANAGER_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 17:00:24', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1348, 'Please select the width for this modules', 'MODULES_CONTACT_US_PAGE_MANAGER_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 17:00:24', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1349, 'Sort Order', 'MODULES_CONTACT_US_PAGE_MANAGER_SORT_ORDER', '10', 'Sort Order (Lowest is displayed in first)', 6, 10, NULL, '2018-07-31 17:00:24', NULL, ''),
(1350, 'Do you want to activate this module ?', 'MODULES_CONTACT_US_SUCCESS_STATUS', 'True', 'Activate this module in your shop', 6, 1, NULL, '2018-07-31 17:00:29', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1351, 'Please select the width for this modules', 'MODULES_CONTACT_US_SUCCESS_CONTENT_WIDTH', '12', 'Indicate a number between 1 and 12', 6, 1, NULL, '2018-07-31 17:00:29', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1352, 'Sort Order', 'MODULES_CONTACT_US_SUCCESS_SORT_ORDER', '100', 'Sort Order (Lowest is displayed in first)', 6, 4, NULL, '2018-07-31 17:00:29', NULL, ''),
(1356, 'Status', 'CLICSHOPPING_APP_PRODUCTS_ATTRIBUTES_PA_STATUS', 'True', 'Set True to enable or not the module', 6, 0, NULL, '2018-08-01 08:51:01', NULL, NULL),
(1357, 'Sort Order', 'CLICSHOPPING_APP_PRODUCTS_ATTRIBUTES_PA_SORT_ORDER', '300', 'The sort order location of the module shown in the available methods listing (lowest is displayed first).', 6, 0, NULL, '2018-08-01 08:51:01', NULL, NULL),
(1358, 'Parameter [ProductsAttributes App]', 'MODULE_MODULES_PRODUCTS_ATTRIBUTES_INSTALLED', 'Catalog\\ProductsAttributes\\PA', 'Parameter [ProductsAttributes App]', 6, 0, NULL, '2018-08-01 08:51:01', NULL, NULL),
(1377, 'cfg_products_modules_status_title', 'CLICSHOPPING_APP_MODULES_MO_STATUS', 'True', 'cfg_products_modules_status_description', 6, 0, NULL, '2018-08-20 23:26:41', NULL, NULL),
(1378, 'cfg_products_modules_sort_order_title', 'CLICSHOPPING_APP_MODULES_MO_SORT_ORDER', '30', 'cfg_products_modules_sort_order_description', 6, 0, NULL, '2018-08-20 23:26:41', NULL, NULL),
(1379, 'Parameter [Modules App]', 'MODULE_MODULES_MODULES_INSTALLED', 'Configuration\\Modules\\MO', 'Parameter [Modules App]', 6, 0, NULL, '2018-08-20 23:26:41', NULL, NULL),
(1380, 'Where Do you want to display the module ?', 'MODULE_LOGIN_MODE_B2B_B2C_POSITION', 'float-none', 'Select where you want display the module', 6, 2, NULL, '2018-10-02 22:28:26', NULL, 'clic_cfg_set_boolean_value(array(''float-end'', ''float-start'', ''float-none''))'),
(1391, 'Do you want activate this module ?', 'MODULE_CREATE_ACCOUNT_BUTTON_PROCESS_STATUS', 'True', 'Do you want activate this module in your shop ?', 6, 1, NULL, '2018-10-10 15:13:18', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1392, 'Please select the width of the module', 'MODULE_CREATE_ACCOUNT_BUTTON_PROCESS_CONTENT_WIDTH', '12', 'Select a number between 1 and 12', 6, 1, NULL, '2018-10-10 15:13:18', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1393, 'Sort order', 'MODULE_CREATE_ACCOUNT_BUTTON_PROCESS_SORT_ORDER', '700', 'Sort order of display. Lowest is displayed first', 6, 4, NULL, '2018-10-10 15:13:18', NULL, ''),
(1394, 'Do you want activate this module ?', 'MODULE_CREATE_ACCOUNT_PRIVACY_CONDITION_STATUS', 'True', 'Do you want activate this module in your shop ?', 6, 1, NULL, '2018-10-10 15:13:22', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1395, 'Please select the width of the module', 'MODULE_CREATE_ACCOUNT_PRIVACY_CONDITION_CONTENT_WIDTH', '12', 'Select a number between 1 and 12', 6, 1, NULL, '2018-10-10 15:13:22', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1396, 'Sort order', 'MODULE_CREATE_ACCOUNT_PRIVACY_CONDITION_SORT_ORDER', '500', 'Sort order of display. Lowest is displayed first', 6, 4, NULL, '2018-10-10 15:13:22', NULL, ''),
(1397, 'Do you want activate this module ?', 'MODULES_CONTACT_US_FORM_BUTTON_PROCESS_STATUS', 'True', 'Do you want activate this module in your shop ?', 6, 1, NULL, '2018-10-10 15:13:54', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1398, 'Please select the width of the module', 'MODULES_CONTACT_US_FORM_BUTTON_PROCESS_CONTENT_WIDTH', '12', 'Select a number between 1 and 12', 6, 1, NULL, '2018-10-10 15:13:54', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1399, 'Sort order', 'MODULES_CONTACT_US_FORM_BUTTON_PROCESS_SORT_ORDER', '700', 'Sort order of display. Lowest is displayed first', 6, 10, NULL, '2018-10-10 15:13:54', NULL, ''),
(1400, 'Do you want activate this module ?', 'MODULES_CONTACT_US_PRIVACY_CONDITION_STATUS', 'True', 'Do you want activate this module in your shop ?', 6, 1, NULL, '2018-10-10 15:13:57', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1401, 'Please select the width of the module', 'MODULES_CONTACT_US_PRIVACY_CONDITION_CONTENT_WIDTH', '12', 'Select a number between 1 and 12', 6, 1, NULL, '2018-10-10 15:13:57', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1402, 'Sort order', 'MODULES_CONTACT_US_PRIVACY_CONDITION_SORT_ORDER', '450', 'Sort order of display. Lowest is displayed first', 6, 10, NULL, '2018-10-10 15:13:57', NULL, ''),
(1403, 'Do you want activate this module ?', 'MODULE_CREATE_ACCOUNT_PRO_BUTTON_PROCESS_STATUS', 'True', 'Do you want activate this module in your shop ?', 6, 1, NULL, '2018-10-10 15:16:26', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1404, 'Please select the width of the module', 'MODULE_CREATE_ACCOUNT_PRO_BUTTON_PROCESS_CONTENT_WIDTH', '12', 'Select a number between 1 and 12', 6, 1, NULL, '2018-10-10 15:16:26', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1405, 'Sort order', 'MODULE_CREATE_ACCOUNT_PRO_BUTTON_PROCESS_SORT_ORDER', '700', 'Sort order of display. Lowest is displayed first', 6, 4, NULL, '2018-10-10 15:16:26', NULL, ''),
(1406, 'Do you want activate this module ?', 'MODULE_CREATE_ACCOUNT_PRO_PRIVACY_CONDITION_STATUS', 'True', 'Do you want activate this module in your shop ?', 6, 1, NULL, '2018-10-10 15:16:29', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1407, 'Please select the width of the module', 'MODULE_CREATE_ACCOUNT_PRO_PRIVACY_CONDITION_CONTENT_WIDTH', '12', 'Select a number between 1 and 12', 6, 1, NULL, '2018-10-10 15:16:29', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1408, 'Sort order', 'MODULE_CREATE_ACCOUNT_PRO_PRIVACY_CONDITION_SORT_ORDER', '500', 'Sort order of display. Lowest is displayed first', 6, 4, NULL, '2018-10-10 15:16:29', NULL, ''),
(1409, 'Do you want activate this module ?', 'MODULE_PRODUCTS_INFO_DATE_AVAILABLE_STATUS', 'True', 'Do you want activate this module in your shop ?', 6, 1, NULL, '2018-11-05 09:49:46', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1410, 'Please select the width of the module', 'MODULE_PRODUCTS_INFO_DATE_AVAILABLE_CONTENT_WIDTH', '12', 'Select a number between 1 and 12', 6, 1, NULL, '2018-11-05 09:49:46', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1411, 'Where do youw want display this module ?', 'MODULE_PRODUCTS_INFO_DATE_AVAILABLE_POSITION', 'float-none', 'Display the module in function your choice.', 6, 2, NULL, '2018-11-05 09:49:46', NULL, 'clic_cfg_set_boolean_value(array(''float-end'', ''float-start'', ''float-none''))'),
(1412, 'Sort order', 'MODULE_PRODUCTS_INFO_DATE_AVAILABLE_SORT_ORDER', '100', 'Sort order of display. Lowest is displayed first', 6, 3, NULL, '2018-11-05 09:49:46', NULL, ''),
(1413, 'Use Search-Engine Safe URLs Pro (use only with htaccess seo activated)', 'SEARCH_ENGINE_FRIENDLY_URLS_PRO', 'false', 'Use search-engine safe urls for all site links with the title of the items.<br />Note : The native Urls must be on true and you must use with an htaccess (_htaccess in the root)', 34, 2, NULL, '2016-07-05 18:04:07', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(1416, 'Do you want activate this module ?', 'MODULE_SHOPPING_CART_CHECKOUT_STEP_STATUS', 'True', 'Do you want activate this module ?', 6, 1, NULL, '2018-11-20 11:56:39', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1417, 'Please select the width of the module ?', 'MODULE_SHOPPING_CART_CHECKOUT_STEP_CONTENT_WIDTH', '12', 'Select a number between 1 and 12', 6, 1, NULL, '2018-11-20 11:56:39', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1418, 'Sort order', 'MODULE_SHOPPING_CART_CHECKOUT_STEP_SORT_ORDER', '200', 'Sort order of display. Lowest is displayed first', 6, 4, NULL, '2018-11-20 11:56:39', NULL, ''),
(1419, 'Do you want activate this module ?', 'MODULE_SHOPPING_CART_ORDER_BUTTON_PROCESS_STATUS', 'True', 'Do you want activate this module in your shop ?', 6, 1, NULL, '2018-11-20 11:56:51', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1420, 'Please select the width of the module ?', 'MODULE_SHOPPING_CART_ORDER_BUTTON_PROCESS_CONTENT_WIDTH', '12', 'Select a number between 1 and 12', 6, 1, NULL, '2018-11-20 11:56:51', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1421, 'Where do you to display this module ?', 'MODULE_SHOPPING_CART_ORDER_BUTTON_PROCESS_POSITION', 'float-none', 'Display the module at right or left (depends of your template configuration)', 6, 2, NULL, '2018-11-20 11:56:51', NULL, 'clic_cfg_set_boolean_value(array(''float-end'', ''float-start'', ''float-none''))'),
(1422, 'Sort order', 'MODULE_SHOPPING_CART_ORDER_BUTTON_PROCESS_SORT_ORDER', '350', 'Sort order of display. Lowest is displayed first', 6, 4, NULL, '2018-11-20 11:56:51', NULL, ''),
(1423, 'Do you want activate this module ?', 'MODULE_SHOPPING_CART_OUT_OF_STOCK_MESSAGE_STATUS', 'True', 'Do you want activate this module in your shop ?', 6, 1, NULL, '2018-11-20 11:56:56', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1424, 'Please select the width of the module', 'MODULE_SHOPPING_CART_OUT_OF_STOCK_MESSAGE_CONTENT_WIDTH', '12', 'Select a number between 1 and 12', 6, 1, NULL, '2018-11-20 11:56:56', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1425, 'Where do you to display this module ?', 'MODULE_SHOPPING_CART_OUT_OF_STOCK_MESSAGE_POSITION', 'float-none', 'Display the module at right or left (depends of your template configuration)', 6, 2, NULL, '2018-11-20 11:56:56', NULL, 'clic_cfg_set_boolean_value(''float-end'', ''float-start'', ''float-none''))'),
(1426, 'Sort order', 'MODULE_SHOPPING_CART_OUT_OF_STOCK_MESSAGE_SORT_ORDER', '90', 'Sort order of display. Lowest is displayed first', 6, 4, NULL, '2018-11-20 11:56:56', NULL, ''),
(1427, 'Do you want activate this module ?', 'MODULE_SHOPPING_CART_PRODUCTS_LISTING_STATUS', 'True', 'Do you want activate this module in your shop ?', 6, 1, NULL, '2018-11-20 11:57:00', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1428, 'Please select the width of the module ?', 'MODULE_SHOPPING_CART_PRODUCTS_LISTING_CONTENT_WIDTH', '12', 'Select a number between 1 and 12', 6, 1, NULL, '2018-11-20 11:57:00', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1429, 'Sort order', 'MODULE_SHOPPING_CART_PRODUCTS_LISTING_SORT_ORDER', '10', 'Sort order of display. Lowest is displayed first', 6, 4, NULL, '2018-11-20 11:57:00', NULL, ''),
(1431, 'Do you want activate this module ?', 'MODULE_SHOPPING_CART_SHOW_TOTAL_STATUS', 'True', 'Do you want activate this module in your shop ?', 6, 1, NULL, '2018-11-20 12:00:20', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))');
INSERT INTO `clic_configuration` VALUES
(1432, 'Please select the width of the module', 'MODULE_SHOPPING_CART_SHOW_TOTAL_CONTENT_WIDTH', '12', 'Select a number between 1 and 12', 6, 1, NULL, '2018-11-20 12:00:20', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1433, 'Where do you to display this module ?', 'MODULE_SHOPPING_CART_SHOW_TOTAL_POSITION', 'float-none', 'Display the module at right or left (depends of your template configuration)', 6, 2, NULL, '2018-11-20 12:00:20', NULL, 'clic_cfg_set_boolean_value(array(''float-end'', ''float-start'', ''float-none''))'),
(1434, 'Sort order', 'MODULE_SHOPPING_CART_SHOW_TOTAL_SORT_ORDER', '20', 'Sort order of display. Lowest is displayed first', 6, 4, NULL, '2018-11-20 12:00:20', NULL, ''),
(1438, 'Status', 'CLICSHOPPING_APP_SPECIALS_SP_STATUS', 'True', 'Do you want activate this module in your shop ?', 6, 0, NULL, '2018-12-09 18:24:26', NULL, NULL),
(1439, 'Sort order', 'CLICSHOPPING_APP_SPECIALS_SP_SORT_ORDER', '30', 'Sort order of display. Lowest is displayed first', 6, 0, NULL, '2018-12-09 18:24:26', NULL, NULL),
(1440, 'Parameter [Specials Products App]', 'MODULE_MODULES_PRODUCTS_SPECIALS_INSTALLED', 'Marketing\\Specials\\SP', 'Parameter [Specials Products App]', 6, 0, NULL, '2018-12-09 18:24:26', NULL, NULL),
(1441, 'Status', 'CLICSHOPPING_APP_STATS_PRODUCTS_PURCHASED_SP_STATUS', 'True', 'Set True to enable or not the module', 6, 0, NULL, '2018-12-09 18:36:31', NULL, NULL),
(1442, 'Sort Order', 'CLICSHOPPING_APP_STATS_PRODUCTS_PURCHASED_SP_SORT_ORDER', '300', 'The sort order location of the module shown in the available methods listing (lowest is displayed first).', 6, 0, NULL, '2018-12-09 18:36:31', NULL, NULL),
(1443, 'Parameter [Stats Products Purchased App]', 'MODULE_MODULES_STATS_PRODUCTS_PURCHASED_INSTALLED', 'Report\\StatsProductsPurchased\\SP', 'Parameter [Stats Products Purchased App]', 6, 0, NULL, '2018-12-09 18:36:31', NULL, NULL),
(1444, 'Status', 'CLICSHOPPING_APP_STATS_PRODUCTS_VIEWED_PV_STATUS', 'True', 'Set True to enable or not the module', 6, 0, NULL, '2018-12-09 18:40:32', NULL, NULL),
(1445, 'Sort Order', 'CLICSHOPPING_APP_STATS_PRODUCTS_VIEWED_PV_SORT_ORDER', '300', 'The sort order location of the module shown in the available methods listing (lowest is displayed first).', 6, 0, NULL, '2018-12-09 18:40:32', NULL, NULL),
(1446, 'Parameter [Stats Products Viewed App]', 'MODULE_MODULES_STATS_PRODUCTS_VIEWED_INSTALLED', 'Report\\StatsProductsViewed\\PV', 'Parameter [Stats Products Viewed App]', 6, 0, NULL, '2018-12-09 18:40:32', NULL, NULL),
(1447, 'Status', 'CLICSHOPPING_APP_BACKUP_BC_STATUS', 'True', 'Set True to enable or not the module', 6, 0, NULL, '2018-12-09 18:51:41', NULL, NULL),
(1448, 'Sort Order', 'CLICSHOPPING_APP_BACKUP_BC_SORT_ORDER', '300', 'The sort order location of the module shown in the available methods listing (lowest is displayed first)', 6, 0, NULL, '2018-12-09 18:51:41', NULL, NULL),
(1449, 'Parameter [Export Data App]', 'MODULE_MODULES_BACKUP_INSTALLED', 'Tools\\Backup\\BC', 'Parameter [Export Data App]', 6, 0, NULL, '2018-12-09 18:51:41', NULL, NULL),
(1450, 'Status', 'CLICSHOPPING_APP_ACTIONS_RECORDER_AR_STATUS', 'True', 'Set True to enable or not the module', 6, 0, NULL, '2018-12-09 19:05:21', NULL, NULL),
(1451, 'Sort Order', 'CLICSHOPPING_APP_ACTIONS_RECORDER_AR_SORT_ORDER', '30', 'The sort order location of the module shown in the available methods listing (lowest is displayed first)', 6, 0, NULL, '2018-12-09 19:05:21', NULL, NULL),
(1452, 'Parameter [ActionsRecorder App]', 'MODULE_MODULES_ACTIONS_RECORDER_INSTALLED', 'Tools\\ActionsRecorder\\AR', 'Parameter [ActionsRecorder App]', 6, 0, NULL, '2018-12-09 19:05:21', NULL, NULL),
(1453, 'Status', 'CLICSHOPPING_APP_FAVORITES_FA_STATUS', 'True', 'Set True to enable or not the module', 6, 0, NULL, '2018-12-19 10:33:41', NULL, NULL),
(1454, 'Sort Order', 'CLICSHOPPING_APP_FAVORITES_FA_SORT_ORDER', '30', 'The sort order location of the module shown in the available methods listing (lowest is displayed first)', 6, 0, NULL, '2018-12-19 10:33:41', NULL, NULL),
(1455, 'Status', 'CLICSHOPPING_APP_FEATURED_FE_STATUS', 'True', 'Set True to enable or not the module', 6, 0, NULL, '2018-12-19 10:34:15', NULL, NULL),
(1456, 'Sort Order', 'CLICSHOPPING_APP_FEATURED_FE_SORT_ORDER', '30', 'The sort order location of the module shown in the available methods listing (lowest is displayed first)', 6, 0, NULL, '2018-12-19 10:34:15', NULL, NULL),
(1457, 'Parameter [Featured Products App]', 'MODULE_MODULES_PRODUCTS_FEATURED_INSTALLED', 'pf_products_featured_title.php;pf_products_featured.php', 'Parameter [Featured Products App]', 6, 0, '2019-08-22 21:06:06', '2018-12-19 10:34:15', NULL, NULL),
(1458, 'Allowed Minutes', 'MODULE_ACTION_RECORDER_ADMIN_LOGIN_MINUTES', '5', 'Number of minutes to allow login attempts to occur.', 6, 0, NULL, '2019-01-16 19:05:53', NULL, NULL),
(1459, 'Allowed Attempts', 'MODULE_ACTION_RECORDER_ADMIN_LOGIN_ATTEMPTS', '3', 'Number of login attempts to allow within the specified period.', 6, 0, NULL, '2019-01-16 19:05:53', NULL, NULL),
(1460, 'Minimum Minutes Per E-Mail for contact us', 'MODULE_ACTION_RECORDER_CONTACT_US_EMAIL_MINUTES', '15', 'Minimum number of minutes to allow 1 e-mail to be sent (eg, 15 for 1 e-mail every 15 minutes)', 6, 0, NULL, '2019-01-16 19:05:56', NULL, NULL),
(1461, 'What do you want for the minimum minutes per e-mail for one person for create account ?', 'MODULE_ACTION_RECORDER_CREATE_ACCOUNT_EMAIL_MINUTES', '90', 'Minimum number of minutes to allow 1 e-mail to be sent (eg, 15 for 1 e-mail every 15 minutes)', 6, 0, NULL, '2019-01-16 19:05:58', NULL, NULL),
(1462, 'What do you want for the minimum minutes per e-mail for one person for create professional account?', 'MODULE_ACTION_RECORDER_CREATE_ACCOUNT_PRO_EMAIL_MINUTES', '90', 'Minimum number of minutes to allow 1 e-mail to be sent (eg, 15 for 1 e-mail every 15 minutes)', 6, 0, NULL, '2019-01-16 19:06:00', NULL, NULL),
(1463, 'Allowed Minutes', 'MODULE_ACTION_RECORDER_RESET_PASSWORD_MINUTES', '5', 'Number of minutes to allow password resets to occur.', 6, 0, NULL, '2019-01-16 19:06:03', NULL, NULL),
(1464, 'Allowed Attempts', 'MODULE_ACTION_RECORDER_RESET_PASSWORD_ATTEMPTS', '1', 'Number of password reset attempts to allow within the specified period.', 6, 0, NULL, '2019-01-16 19:06:03', NULL, NULL),
(1465, 'Minimum Minutes Per E-Mail for tell a friend', 'MODULE_ACTION_RECORDER_TELL_A_FRIEND_EMAIL_MINUTES', '15', 'Minimum number of minutes to allow 1 e-mail to be sent (eg, 15 for 1 e-mail every 15 minutes)', 6, 0, NULL, '2019-01-16 19:06:05', NULL, NULL),
(1466, 'Do you want to activate this module ?', 'MODULE_HEADER_TAGS_GOOGLE_FONT_STATUS', 'True', 'Set True to enable or not the module', 6, 1, NULL, '2019-01-16 19:06:58', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1467, 'Sort Order', 'MODULE_HEADER_TAGS_GOOGLE_FONT_SORT_ORDER', '50', 'Sort order of display. Lowest is displayed first', 6, 25, NULL, '2019-01-16 19:06:58', NULL, ''),
(1468, 'Do you want to activate this module ?', 'MODULE_HEADER_NOSCRIPT_STATUS', 'True', 'Set True to enable or not the module', 6, 1, NULL, '2019-01-16 19:07:19', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1469, 'Please select the width of the module', 'MODULE_HEADER_NOSCRIPT_CONTENT_WIDTH', '12', 'Select a number between 1 and 12', 6, 2, NULL, '2019-01-16 19:07:19', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1470, 'Sort Order', 'MODULE_HEADER_NOSCRIPT_SORT_ORDER', '1', 'Sort order of display. Lowest is displayed first', 6, 0, NULL, '2019-01-16 19:07:19', NULL, ''),
(1471, 'Default Products Lenght Unit', 'PRODUCTS_LENGTH_UNIT', '2', 'Select the unit of product lenght to be used for your product', 7, 6, '2006-10-23 01:17:10', '2006-04-09 16:13:48', 'clic_cfg_use_get_products_length_title', 'clic_cfg_set_products_lenght_classes_pulldown_menu'),
(1472, 'Status', 'CLICSHOPPING_APP_PROUCTS_LENGTH_PL_STATUS', 'True', 'Set True to enable or not the module', 6, 0, NULL, '2019-04-14 08:46:32', NULL, NULL),
(1473, 'Sort Order', 'CLICSHOPPING_APP_PROUCTS_LENGTH_PL_SORT_ORDER', '30', 'The sort order location of the module shown in the available methods listing (lowest is displayed first).', 6, 0, NULL, '2019-04-14 08:46:32', NULL, NULL),
(1474, 'Parameter [ProductsLength App]', 'MODULE_MODULES_PROUCTS_LENGTH_INSTALLED', 'Configuration\\ProductsLength\\PL', 'Parameter [ProductsLength App]', 6, 0, NULL, '2019-04-14 08:46:32', NULL, NULL),
(1475, 'Please select the width of the module', 'MODULE_ADVANCED_SEARCH_PRICE_CONTENT_WIDTH', '12', 'Select a number between 1 and 12', 6, 2, NULL, '2019-01-16 19:07:19', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1476, 'Minimum length of e-mail address', 'ENTRY_EMAIL_ADDRESS_MIN_LENGTH', '6', 'Minimum length of e-mail address', 16, 4, NULL, '2019-06-30 10:06:56', NULL, NULL),
(1477, 'Information Email Security login', 'CONFIGURATION_EMAIL_SECURITY', 'false', 'If someone try to connect inside the administration and make a mistake, you will received an email.', 12, 12, '2008-09-16 10:52:38', '2006-04-09 16:13:48', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(1478, 'Do you want activate this module ?', 'MODULE_PRODUCTS_FEATURED_STATUS', 'True', 'Do you want activate this module in your shop ?', 6, 1, NULL, '2019-08-22 21:06:01', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1479, 'Please select your template ?', 'MODULE_PRODUCTS_FEATURED_TEMPLATE', 'template_bootstrap_column_5.php', 'Select your template you want to display', 6, 2, NULL, '2019-08-22 21:06:01', NULL, 'clic_cfg_set_multi_template_pull_down'),
(1480, 'Please indicate the number of product do you want to display', 'MODULE_PRODUCTS_FEATURED_MAX_DISPLAY', '6', 'Indicate the number of product do you want to display', 6, 3, NULL, '2019-08-22 21:06:01', NULL, ''),
(1481, 'Please indicate the number of column that you want to display ?', 'MODULE_PRODUCTS_FEATURED_COLUMNS', '6', 'Choose a number between 1 and 12', 6, 3, NULL, '2019-08-22 21:06:01', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1482, 'Do you want to display a short description ?', 'MODULE_PRODUCTS_FEATURED_SHORT_DESCRIPTION', '0', 'Please indicate a number of your short description', 6, 4, NULL, '2019-08-22 21:06:01', NULL, ''),
(1483, 'Do you want to remove words of your short description ?', 'MODULE_PRODUCTS_FEATURED_SHORT_DESCRIPTION_DELETE_WORLDS', '0', 'Please indicate a number', 6, 4, NULL, '2019-08-22 21:06:01', NULL, ''),
(1484, 'Do you want to display a message News / Specials / Favorites / Featured ?', 'MODULE_PRODUCTS_FEATURED_TICKER', 'False', 'Display a message News / Specials / Favorites / Featured', 6, 1, NULL, '2019-08-22 21:06:01', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1485, 'Do you want to display the discount pourcentage (specials) ?', 'MODULE_PRODUCTS_FEATURED_POURCENTAGE_TICKER', 'False', 'Display the discount pourcentage (specials)', 6, 1, NULL, '2019-08-22 21:06:01', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1486, 'Souhaitez-vous afficher une image concernant l''état du stock du produit ?', 'MODULE_PRODUCTS_FEATURED_DISPLAY_STOCK', 'none', 'Est-que vous souhaitez afficher une image indiquant une information sur le stock du produit (En stock, pratiquement épuisé, hors stock) ?', 6, 6, NULL, '2019-08-22 21:06:01', NULL, 'clic_cfg_set_boolean_value(array(''none'', ''image'', ''number''))'),
(1487, 'Please indicate a arrival date sort order', 'MODULE_PRODUCTS_FEATURED_LIST_DATE_ADDED', '1', 'This option allow to choose an order to display the product. Lowest is displayed in first; 0 for nothing', 6, 5, NULL, '2019-08-22 21:06:01', NULL, ''),
(1488, 'Please indicate a price sort order', 'MODULE_PRODUCTS_FEATURED_LIST_PRICE', '0', 'This option allow to choose an order to display the product. Lowest is displayed in first; 0 for nothing', 6, 6, NULL, '2019-08-22 21:06:01', NULL, ''),
(1489, 'Please indicate a model sort order', 'MODULE_PRODUCTS_FEATURED_LIST_MODEL', '0', 'This option allow to choose an order to display the product. Lowest is displayed in first; 0 for nothing', 6, 7, NULL, '2019-08-22 21:06:01', NULL, ''),
(1490, 'Please indicate a quantity sort order', 'MODULE_PRODUCTS_FEATURED_LIST_QUANTITY', '0', 'This option allow to choose an order to display the product. Lowest is displayed in first; 0 for nothing', 6, 8, NULL, '2019-08-22 21:06:01', NULL, ''),
(1491, 'Please indicate a weight sort order', 'MODULE_PRODUCTS_FEATURED_LIST_WEIGHT', '0', 'This option allow to choose an order to display the product. Lowest is displayed in first; 0 for nothing', 6, 9, NULL, '2019-08-22 21:06:01', NULL, ''),
(1492, 'Please choose the image size', 'MODULE_PRODUCTS_FEATURED_IMAGE_MEDIUM', 'Small', 'Quelle taille d''image souhaitez-vous afficher ?<br /><br /><i>(Valeur Small = Petite - Valeur Medium = Moyenne)</i>', 6, 10, NULL, '2019-08-22 21:06:01', NULL, 'clic_cfg_set_boolean_value(array(''Small'', ''Medium''))'),
(1493, 'Do you want to remove the details button ?', 'MODULE_PRODUCTS_FEATURED_DELETE_BUY_BUTTON', 'False', 'Remove the button details', 6, 11, NULL, '2019-08-22 21:06:01', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1494, 'Sort order', 'MODULE_PRODUCTS_FEATURED_SORT_ORDER', '100', 'Sort order of display. Lowest is displayed first', 6, 12, NULL, '2019-08-22 21:06:01', NULL, ''),
(1495, 'Do you want to install this module ?', 'MODULE_PRODUCTS_FEATURED_TITLE_STATUS', 'True', 'Do you want to install this module ?', 6, 1, NULL, '2019-08-22 21:06:06', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1496, 'Please select the width of the module', 'MODULE_PRODUCTS_FEATURED_CONTENT_WIDTH', '12', 'Select a number between 1 and 12', 6, 1, NULL, '2019-08-22 21:06:06', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1497, 'Where do you to display this module ?', 'MODULE_PRODUCTS_FEATURED_POSITION', 'float-none', 'Select where you want display the module', 6, 2, NULL, '2019-08-22 21:06:06', NULL, 'clic_cfg_set_boolean_value(array(''float-end'', ''float-start'', ''float-none''))'),
(1498, 'Sort order', 'MODULE_PRODUCTS_FEATURED_TITLE_SORT_ORDER', '10', 'Sort order of display. Lowest is displayed first', 6, 12, NULL, '2019-08-22 21:06:06', NULL, ''),
(1499, 'Do you want activate this module ?', 'MODULE_PRODUCTS_FAVORITES_STATUS', 'True', 'Do you want activate this module in your shop ?', 6, 1, NULL, '2019-08-22 21:06:15', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1500, 'Please select your template ?', 'MODULE_PRODUCTS_FAVORITES_TEMPLATE', 'template_bootstrap_column_5.php', 'Select your template you want to display', 6, 2, NULL, '2019-08-22 21:06:15', NULL, 'clic_cfg_set_multi_template_pull_down'),
(1501, 'Indicate the number of product do you want to display ?', 'MODULE_PRODUCTS_FAVORITES_MAX_DISPLAY', '6', 'Please, indicate the number of products do your want to display.', 6, 3, NULL, '2019-08-22 21:06:15', NULL, ''),
(1502, 'Please indicate the number of column that you want to display ?', 'MODULE_PRODUCTS_FAVORITES_COLUMNS', '6', 'Choose a number between 1 and 12', 6, 3, NULL, '2019-08-22 21:06:15', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1503, 'Do you want to display a short description ?', 'MODULE_PRODUCTS_FAVORITES_SHORT_DESCRIPTION', '0', 'Please indicate a number of your short description', 6, 4, NULL, '2019-08-22 21:06:15', NULL, ''),
(1504, 'Do you want to remove words of your short description ?', 'MODULE_PRODUCTS_FAVORITES_SHORT_DESCRIPTION_DELETE_WORLDS', '0', 'Please indicate a number', 6, 4, NULL, '2019-08-22 21:06:15', NULL, ''),
(1505, 'Do you want to display a message News / Specials / Favorites / Featured ?', 'MODULE_PRODUCTS_FAVORITES_TICKER', 'False', 'Display a message News / Specials / Favorites / Featured', 6, 1, NULL, '2019-08-22 21:06:15', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1506, 'Do you want to display the discount pourcentage (specials) ?', 'MODULE_PRODUCTS_FAVORITES_POURCENTAGE_TICKER', 'False', 'Display the discount pourcentage (specials)', 6, 1, NULL, '2019-08-22 21:06:15', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1507, 'Please do you want to display the stock ?', 'MODULE_PRODUCTS_FAVORITES_DISPLAY_STOCK', 'none', 'Est-que vous souhaitez afficher une image indiquant une information sur le stock du produit (En stock, pratiquement épuisé, hors stock) ?', 6, 6, NULL, '2019-08-22 21:06:15', NULL, 'clic_cfg_set_boolean_value(array(''none'', ''image'', ''number''))'),
(1508, 'Please indicate a arrival date sort order', 'MODULE_PRODUCTS_FAVORITES_LIST_DATE_ADDED', '1', 'This option allow to choose an order to display the product. Lowest is displayed in first; 0 for nothing', 6, 5, NULL, '2019-08-22 21:06:15', NULL, ''),
(1509, 'Veuillez indiquer une ordre tri selon les tarifs', 'MODULE_PRODUCTS_FAVORITES_LIST_PRICE', '0', 'Cette option permet au client de choisir un ordre d''affichage de ses produits.<br/ ><br /><strong>Note :</strong><br /><br />- 0 pour aucun Affichage<br />- Le plus petit nombre est montré en premier)', 6, 6, NULL, '2019-08-22 21:06:15', NULL, ''),
(1510, 'Please indicate a model sort order', 'MODULE_PRODUCTS_FAVORITES_LIST_MODEL', '0', 'This option allow to choose an order to display the product. Lowest is displayed in first; 0 for nothing', 6, 7, NULL, '2019-08-22 21:06:15', NULL, ''),
(1511, 'Please indicate a quantity sort order', 'MODULE_PRODUCTS_FAVORITES_LIST_QUANTITY', '0', 'This option allow to choose an order to display the product. Lowest is displayed in first; 0 for nothing', 6, 8, NULL, '2019-08-22 21:06:15', NULL, ''),
(1512, 'Please indicate a weight sort order', 'MODULE_PRODUCTS_FAVORITES_LIST_WEIGHT', '0', 'This option allow to choose an order to display the product. Lowest is displayed in first; 0 for nothing', 6, 9, NULL, '2019-08-22 21:06:15', NULL, ''),
(1513, 'Please choose the image size', 'MODULE_PRODUCTS_FAVORITES_IMAGE_MEDIUM', 'Small', 'Quelle taille d''image souhaitez-vous afficher ?<br /><br /><i>(Valeur Small = Petite - Valeur Medium = Moyenne)</i>', 6, 10, NULL, '2019-08-22 21:06:15', NULL, 'clic_cfg_set_boolean_value(array(''Small'', ''Medium''))'),
(1514, 'Do you want to remove the details button ?', 'MODULE_PRODUCTS_FAVORITES_DELETE_BUY_BUTTON', 'False', 'Remove the button details', 6, 11, NULL, '2019-08-22 21:06:15', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1515, 'Sort order', 'MODULE_PRODUCTS_FAVORITES_SORT_ORDER', '100', 'Sort order of display. Lowest is displayed first', 6, 12, NULL, '2019-08-22 21:06:15', NULL, ''),
(1516, 'Do you want to install this module ?', 'MODULE_PRODUCTS_FAVORITES_TITLE_STATUS', 'True', 'Do you want to install this module ?', 6, 1, NULL, '2019-08-22 21:06:18', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1517, 'Please select the width of the module', 'MODULE_PRODUCTS_FAVORITES_CONTENT_WIDTH', '12', 'Select a number between 1 and 12', 6, 1, NULL, '2019-08-22 21:06:18', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1518, 'Where do you to display this module ?', 'MODULE_PRODUCTS_FAVORITES_POSITION', 'float-none', 'Select where you want display the module', 6, 2, NULL, '2019-08-22 21:06:18', NULL, 'clic_cfg_set_boolean_value(array(''float-end'', ''float-start'', ''float-none''))'),
(1519, 'Sort order', 'MODULE_PRODUCTS_FAVORITES_TITLE_SORT_ORDER', '10', 'Sort order of display. Lowest is displayed first', 6, 12, NULL, '2019-08-22 21:06:18', NULL, ''),
(1520, 'Where Do you want to display the module ?', 'MODULES_PRODUCTS_REVIEWS_WRITE_BUTTON_PROCESS_POSITION', 'float-none', 'Select where you want display the module', 6, 2, NULL, '2019-09-15 17:42:27', NULL, 'clic_cfg_set_boolean_value(array(''float-end'', ''float-start'', ''float-none''))'),
(1521, 'Where Do you want to display the module ?', 'MODULES_PRODUCTS_REVIEWS_WRITE_COMMENT_POSITION', 'float-none', 'Select where you want display the module', 6, 2, NULL, '2019-09-15 17:42:29', NULL, 'clic_cfg_set_boolean_value(array(''float-end'', ''float-start'', ''float-none''))'),
(1522, 'Do you want activate this module ?', 'MODULES_PRODUCTS_REVIEWS_WRITE_CUSTOMER_AGREEMENT_STATUS', 'True', 'Do you want activate this module in your shop ?', 6, 1, NULL, '2019-09-15 17:42:34', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1523, 'Please select the width of the module', 'MODULES_PRODUCTS_REVIEWS_WRITE_CUSTOMER_AGREEMENT_CONTENT_WIDTH', '12', 'Select a number between 1 and 12', 6, 1, NULL, '2019-09-15 17:42:34', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1524, 'Where Do you want to display the module ?', 'MODULES_PRODUCTS_REVIEWS_WRITE_CUSTOMER_AGREEMENT_POSITION', 'float-none', 'Select where you want display the module', 6, 2, NULL, '2019-09-15 17:42:34', NULL, 'clic_cfg_set_boolean_value(array(''float-end'', ''float-start'', ''float-none''))'),
(1525, 'Sort order', 'MODULES_PRODUCTS_REVIEWS_WRITE_CUSTOMER_AGREEMENT_SORT_ORDER', '600', 'Sort order of display. Lowest is displayed first', 6, 4, NULL, '2019-09-15 17:42:34', NULL, ''),
(1526, 'Where Do you want to display the module ?', 'MODULES_PRODUCTS_REVIEWS_WRITE_IMAGE_POSITION', 'float-end', 'Select where you want display the module', 6, 2, NULL, '2019-09-15 17:42:38', NULL, 'clic_cfg_set_boolean_value(array(''float-end'', ''float-start'', ''float-none''))'),
(1527, 'Where Do you want to display the module ?', 'MODULES_PRODUCTS_REVIEWS_WRITE_RATING_POSITION', 'float-start', 'Select where you want display the module', 6, 2, NULL, '2019-09-15 17:42:41', NULL, 'clic_cfg_set_boolean_value(array(''float-end'', ''float-start'', ''float-none''))'),
(1528, 'Where Do you want to display the module ?', 'MODULES_PRODUCTS_REVIEWS_LISTING_IMAGE_POSITION', 'float-end', 'Select where you want display the module', 6, 2, NULL, '2019-09-15 18:55:03', NULL, 'clic_cfg_set_boolean_value(array(''float-end'', ''float-start'', ''float-none''))'),
(1529, 'Where Do you want to display the module ?', 'MODULES_PRODUCTS_REVIEWS_LISTING_BUTTON_PROCESS_POSITION', 'float-none', 'Select where you want display the module', 6, 2, NULL, '2019-09-15 18:56:19', NULL, 'clic_cfg_set_boolean_value(array(''float-end'', ''float-start'', ''float-none''))'),
(1530, 'Where Do you want to display the module ?', 'MODULES_PRODUCTS_REVIEWS_LISTING_DESCRIPTION_POSITION', 'float-start', 'Select where you want display the module', 6, 2, NULL, '2019-09-15 18:56:25', NULL, 'clic_cfg_set_boolean_value(array(''float-end'', ''float-start'', ''float-none''))'),
(1531, 'Where Do you want to display the module ?', 'MODULES_PRODUCTS_REVIEWS_LISTING_CONTENT_POSITION', 'float-none', 'Select where you want display the module', 6, 2, NULL, '2019-09-15 19:06:14', NULL, 'clic_cfg_set_boolean_value(array(''float-end'', ''float-start'', ''float-none''))'),
(1532, 'Allow the customer to delete the comment ?', 'MODULES_PRODUCTS_REVIEWS_LISTING_CONTENT_DELETE_COMMENT', 'True', 'The regulation allow the customer to decide to have access at his information', 6, 1, NULL, '2019-09-15 19:06:14', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1533, 'Where Do you want to display the module ?', 'MODULES_PRODUCTS_REVIEWS_INFO_BUTTON_PROCESS_POSITION', 'float-none', 'Select where you want display the module', 6, 2, NULL, '2019-09-15 20:17:20', NULL, 'clic_cfg_set_boolean_value(array(''float-end'', ''float-start'', ''float-none''))'),
(1534, 'Please select the width of the module', 'MODULES_PRODUCTS_REVIEWS_INFO_CONTENT_WIDTH', '12', 'Select a number between 1 and 12', 6, 1, NULL, '2019-09-15 20:17:22', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1535, 'Where Do you want to display the module ?', 'MODULES_PRODUCTS_REVIEWS_INFO_CONTENT_POSITION', 'float-start', 'Select where you want display the module', 6, 2, NULL, '2019-09-15 20:17:22', NULL, 'clic_cfg_set_boolean_value(array(''float-end'', ''float-start'', ''float-none''))'),
(1536, 'Allow the customer to delete the comment ?', 'MODULES_PRODUCTS_REVIEWS_INFO_CONTENT_DELETE_COMMENT', 'True', 'The regulation allow the customer to decide to have access at his information', 6, 1, NULL, '2019-09-15 20:17:22', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1537, 'Where Do you want to display the module ?', 'MODULES_PRODUCTS_REVIEWS_INFO_IMAGE_CONTENT_POSITION', 'float-end', 'Select where you want display the module', 6, 2, NULL, '2019-09-15 20:17:24', NULL, 'clic_cfg_set_boolean_value(array(''float-end'', ''float-start'', ''float-none''))'),
(1538, 'Do you want to display this module ?', 'MODULE_HEADER_TAGS_BREADCRUMB_STATUS', 'True', 'Do you want to display this module ?', 6, 1, NULL, '2019-09-22 21:39:43', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1539, 'Sort Order', 'MODULE_HEADER_TAGS_BREADCRUMB_SORT_ORDER', '555', 'Sort order. Lowest is displayed in first', 6, 10, NULL, '2019-09-22 21:39:43', NULL, ''),
(1541, 'Do you want to convert all product images to Webp?', 'CONFIGURATION_CONVERT_IMAGE', 'false', 'All product images will be converted to Webp format. Please note that some server configuration does not accept this format', 4, 10, NULL, '2018-11-05 09:49:46', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(1542, 'Do you want to compress the HTML', 'CONFIGURATION_TEMPLATE_MINIFY_HTML', 'false', 'Compress the HTML code and JS inside the HTML (only catalog)', 43, 1, '2013-12-16 18:12:37', '2006-04-09 18:20:19', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(1543, 'Exclude specific email domains', 'CONFIGURATION_EXLCLUDE_EMAIL_DOMAIN', '', 'If the domain is caught, the email will not be sent. Please separate your domains with a comma "," <br> <br> <i> example: mail.ru, yandex.com', 12, 10, NULL, '2019-09-22 21:39:43', NULL, ''),
(1544, 'Do you want to Display the sidebar horizontal or vertical Menu in your admin', 'VERTICAL_MENU_CONFIGURATION', 'false', 'Select a choice to display a specific menu in your admininistration horizontal or sidebar.<br />', 43, 100, '2007-05-20 01:00:47', '2006-04-09 16:13:48', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(1545, 'Indicate a minimum number of characters to insert in the message before the customer can send it', 'MODULE_CONTACT_US_FORM_CONTENT_CARACTER', '90', 'Messages less than this number will not be sent. A warning pop up will be displayed to the client indicating the minimum number of characters', 6, 10, NULL, '2019-09-22 21:39:43', NULL, ''),
(1546, 'Check if the email is valid or not', 'ENTRY_EMAIL_ADDRESS_CHECKER', 'false', 'Check if the email is valid or not. More information there : https://github.com/MattKetmo/EmailChecker', 12, 4, NULL, '2006-04-09 16:13:48', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(1547, 'Do you want to activate the Debug Email option ?', 'DEBUG_EMAIL', 'false', 'This option allows you to analyse if the email is sent. Please, this option stop the execution script.', 12, 12, NULL, '2006-04-09 16:13:47', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(1548, 'Parameter [Gdpr App]', 'MODULE_MODULES_CUSTOMERS_GDPR_INSTALLED', ';Customers\\Gdpr\\GD', 'Parameter [Gdpr App]', 6, 0, NULL, '2022-09-18 17:12:49', NULL, NULL),
(1549, 'Status', 'CLICSHOPPING_APP_CUSTOMERS_GDPR_GD_STATUS', 'True', 'Set True to enable or not the module', 6, 0, NULL, '2022-09-18 17:17:34', NULL, NULL),
(1550, 'Sort Order', 'CLICSHOPPING_APP_CUSTOMERS_GDPR_GD_SORT_ORDER', '30', 'The sort order location of the module shown in the available methods listing (lowest is displayed first).', 6, 0, NULL, '2022-09-18 17:17:34', NULL, NULL),
(1551, 'Date account deletion', 'CLICSHOPPING_APP_CUSTOMERS_GDPR_GD_DATE', '180', 'Choose the date (in day) to display the account deletion', 6, 0, NULL, '2022-09-18 17:17:34', NULL, NULL),
(1552, 'Do you want to enable this module ?', 'MODULE_ACCOUNT_PRODUCT_RETURN_STATUS', 'True', 'Do you want to enable this module in your shop ?', 6, 1, NULL, '2022-10-09 09:06:16', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1553, 'Please select the width of the module', 'MODULE_ACCOUNT_PRODUCT_RETURN_CONTENT_WIDTH', '12', 'Select a number between 1 and 12', 6, 1, NULL, '2022-10-09 09:06:16', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1554, 'Sort order', 'MODULE_ACCOUNT_PRODUCT_RETURN_SORT_ORDER', '120', 'Sort order of display. Lowest is displayed first. The sort order must be different on every module', 6, 105, NULL, '2022-10-09 09:06:16', NULL, ''),
(1555, 'Do you want to enable this module ?', 'MODULE_ACCOUNT_PRODUCT_RETURN_HISTORY_STATUS', 'True', 'Do you want to enable this module in your shop ?', 6, 1, NULL, '2022-10-09 09:06:25', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1556, 'Please select the width of the module', 'MODULE_ACCOUNT_PRODUCT_RETURN_HISTORY_CONTENT_WIDTH', '12', 'Select a number between 1 and 12', 6, 1, NULL, '2022-10-09 09:06:25', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1557, 'Sort order', 'MODULE_ACCOUNT_PRODUCT_RETURN_HISTORY_SORT_ORDER', '120', 'Sort order of display. Lowest is displayed first. The sort order must be different on every module', 6, 105, NULL, '2022-10-09 09:06:25', NULL, ''),
(1558, 'Do you want to enable this module ?', 'MODULE_ACCOUNT_PRODUCT_RETURN_HISTORY_INFO_STATUS', 'True', 'Do you want to enable this module in your shop ?', 6, 1, NULL, '2022-10-09 09:06:34', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1559, 'Please select the width of the module', 'MODULE_ACCOUNT_PRODUCT_RETURN_HISTORY_INFO_CONTENT_WIDTH', '12', 'Select a number between 1 and 12', 6, 1, NULL, '2022-10-09 09:06:34', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1560, 'Sort order', 'MODULE_ACCOUNT_PRODUCT_RETURN_HISTORY_INFO_SORT_ORDER', '120', 'Sort order of display. Lowest is displayed first. The sort order must be different on every module', 6, 105, NULL, '2022-10-09 09:06:34', NULL, ''),
(1564, 'Do you want to activate the VAT number verification via webservice ? (EU only)', 'ACCOUNT_TVA_INTRACOM_PRO_VERIFICATION', 'false', 'The verification of the intracom VAT number is made via a webservice call<br>Website : https://ec.europa.eu/taxation_customs/vies/', 18, 9, '2006-10-29 16:05:56', '2006-04-26 14:43:56', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(1565, 'Sort Order', 'CLICSHOPPING_APP_API_AI_SORT_ORDER', '30', 'Sort order of display (the lowest is diplayed in first)', 6, 0, NULL, '2022-11-24 12:03:41', NULL, NULL),
(1566, 'Status', 'CLICSHOPPING_APP_API_AI_STATUS', 'True', 'Do you want to activate this module ?', 6, 0, NULL, '2022-11-24 12:03:41', NULL, NULL),
(1567, 'Parameter [Api App]', 'MODULE_MODULES_API_INSTALLED', 'Configuration\\Api\\AI', 'Parameter [Api App]', 6, 0, NULL, '2022-11-24 12:03:41', NULL, NULL),
(1568, 'Parameter [Antispam App]', 'MODULE_MODULES_ANTISPAM_INSTALLED', '', 'Parameter [Antispam App]', 6, 0, NULL, '2022-12-18 10:57:34', NULL, NULL),
(1569, 'Status', 'CLICSHOPPING_APP_ANTISPAM_STATUS', 'False', 'Set True to enable or not the module', 6, 0, NULL, '2022-12-18 10:57:37', NULL, NULL),
(1570, 'Parameter [ChatGpt App]', 'MODULE_MODULES_CHATGPT_INSTALLED', ';Configuration\\ChatGpt\\CH', 'Parameter [ChatGpt App]', 6, 0, NULL, '2023-02-22 17:17:04', NULL, NULL),
(1571, 'Max response', 'CLICSHOPPING_APP_CHATGPT_CH_MAX_RESPONSE', '1', 'Please, a number<br>\nControl the response to create', 6, 0, NULL, '2023-02-22 17:42:35', NULL, NULL),
(1572, 'Temperature', 'CLICSHOPPING_APP_CHATGPT_CH_TEMPERATURE', '0.5', 'Please, a number', 6, 0, NULL, '2023-02-22 17:42:35', NULL, NULL),
(1573, 'Frequency penality', 'CLICSHOPPING_APP_CHATGPT_CH_FREQUENCY_PENALITY', '0.5', 'Please, a number<br />\nControl the model creativity', 6, 0, NULL, '2023-02-22 17:42:35', NULL, NULL),
(1574, 'Sort Order', 'CLICSHOPPING_APP_CHATGPT_CH_SORT_ORDER', '60', 'The sort order location of the module shown in the available methods listing (lowest is displayed first).', 6, 0, NULL, '2023-02-22 17:42:35', NULL, NULL),
(1575, 'Max Token', 'CLICSHOPPING_APP_CHATGPT_CH_MAX_TOKEN', '350', 'Please, a number<br />\ndavinci-codex : 4000 <br />\ntext-davinci-003 : 4000<br />', 6, 0, NULL, '2023-02-22 17:42:35', NULL, NULL),
(1576, 'Status', 'CLICSHOPPING_APP_CHATGPT_CH_STATUS', 'False', 'Set True to enable or not the module', 6, 0, NULL, '2023-02-22 17:42:35', NULL, NULL),
(1577, 'Api Key', 'CLICSHOPPING_APP_CHATGPT_CH_API_KEY', '', 'Please, insert the Api Key (https://platform.openai.com/account/api-keys)', 6, 0, NULL, '2023-02-22 17:42:35', NULL, NULL),
(1578, 'Best of', 'CLICSHOPPING_APP_CHATGPT_CH_BESTOFF', '1', 'Generates best_of completions server-side and returns the "best". Use an Integer', 6, 0, NULL, '2023-03-05 11:31:37', NULL, NULL),
(1579, 'Top P', 'CLICSHOPPING_APP_CHATGPT_CH_TOP_P', '1', 'Veuillez insérer un nombre<br />\nAn alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass. So 0.1 means only the tokens comprising the top 10% probability mass are considered.', 6, 0, NULL, '2023-03-05 11:31:37', NULL, NULL),
(1580, 'Default model', 'CLICSHOPPING_APP_CHATGPT_CH_MODEL', 'gpt-4o-mini', 'Please, please select the model you want to apply. <br />\nAll the models does not have the same parameters and can generate an error on the response. <br />\nThe WYSWIWYG is impacted by the model you want to use', 6, 0, NULL, '2023-03-05 11:31:37', NULL, NULL),
(1581, 'Presence penality', 'CLICSHOPPING_APP_CHATGPT_CH_PRESENCE_PENALITY', '0.1', 'Please, insert number<br />\nNumber between -2.0 and 2.0. Positive values penalize new tokens based on their existing frequency in the text so far, decreasing the model''s likelihood to repeat the same line verbatim.', 6, 0, NULL, '2023-03-05 11:31:37', NULL, NULL),
(1582, 'Organization Key', 'CLICSHOPPING_APP_CHATGPT_CH_ORGANIZATION', '', 'Please, insert the organization key (See OpenAI administration)', 6, 0, NULL, '2023-03-05 12:10:25', NULL, NULL),
(1583, 'Information Email Customer Security login (catalog)', 'CONFIGURATION_EMAIL_CUSTOMER_SECURITY', 'false', 'Send an alert email to the client if a connexion is created in this administration.', 12, 13, '2008-09-16 10:52:38', '2006-04-09 16:13:48', NULL, 'clic_cfg_set_boolean_value(array(''true'', ''false''))'),
(1584, 'Do you want to enable this Module ?', 'MODULE_ADMIN_DASHBOARD_TOTAL_CA_BY_YEAR_APP_STATUS', 'True', 'Do you want to enable this Module ?', 6, 1, NULL, '2023-04-30 14:22:10', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1585, 'Select the width to display', 'MODULE_ADMIN_DASHBOARD_TOTAL_CA_BY_YEAR_APP_CONTENT_WIDTH', '6', 'Select a number between 1 to 12', 6, 1, NULL, '2023-04-30 14:22:10', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1586, 'Sort Order', 'MODULE_ADMIN_DASHBOARD_TOTAL_CA_BY_YEAR_APP_SORT_ORDER', '30', 'Sort order of display. Lowest is displayed first.', 6, 2, NULL, '2023-04-30 14:22:10', NULL, ''),
(1587, 'Do you want to enable this module ?', 'MODULE_ADMIN_DASHBOARD_ORDERS_APP_STATUS', 'True', 'Do you want to display the latest orders ?', 6, 1, NULL, '2023-04-30 14:22:17', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1588, 'How many orders do you want to display ?', 'MODULE_ADMIN_DASHBOARD_ORDERS_APP_LIMIT', '10', 'Please specify the number of orders to display', 6, 1, NULL, '2023-04-30 14:22:17', NULL, ''),
(1589, 'Select the width to display', 'MODULE_ADMIN_DASHBOARD_ORDERS_APP_CONTENT_WIDTH', '12', 'Select a number between 1 to 12', 6, 1, NULL, '2023-04-30 14:22:17', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1590, 'Sort Order', 'MODULE_ADMIN_DASHBOARD_ORDERS_APP_SORT_ORDER', '60', 'Sort order of display. Lowest is displayed first', 6, 1, NULL, '2023-04-30 14:22:17', NULL, ''),
(1591, 'Do you want to enable this Module ?', 'MODULE_ADMIN_DASHBOARD_TOTAL_MONTH_APP_STATUS', 'True', 'Do you want to enable this Module ?', 6, 1, NULL, '2023-04-30 14:22:21', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1592, 'Select the width to display', 'MODULE_ADMIN_DASHBOARD_TOTAL_MONTH_APP_CONTENT_WIDTH', '6', 'Select a number between 1 to 12', 6, 1, NULL, '2023-04-30 14:22:21', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1593, 'Sort Order', 'MODULE_ADMIN_DASHBOARD_TOTAL_MONTH_APP_SORT_ORDER', '20', 'Sort order of display. Lowest is displayed first.', 6, 2, NULL, '2023-04-30 14:22:21', NULL, ''),
(1594, 'Do you want to enable this Module ?', 'MODULE_ADMIN_DASHBOARD_TOTAL_REVENUE_APP_STATUS', 'True', 'Do you want to enable this Module ?', 6, 1, NULL, '2023-04-30 14:22:25', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1595, 'Select the width to display', 'MODULE_ADMIN_DASHBOARD_TOTAL_REVENUE_APP_CONTENT_WIDTH', '6', 'Select a number between 1 to 12', 6, 1, NULL, '2023-04-30 14:22:25', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1596, 'Sort Order', 'MODULE_ADMIN_DASHBOARD_TOTAL_REVENUE_APP_SORT_ORDER', '40', 'Sort order of display. Lowest is displayed first.', 6, 2, NULL, '2023-04-30 14:22:25', NULL, ''),
(1597, 'Do you want to enable this Module ?', 'MODULE_ADMIN_DASHBOARD_TOTAL_CUSTOMERS_APP_STATUS', 'True', 'Do you want to enable this Module ?', 6, 1, NULL, '2023-04-30 14:22:33', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1598, 'Select the width to display', 'MODULE_ADMIN_DASHBOARD_TOTAL_CUSTOMERS_APP_CONTENT_WIDTH', '6', 'Select a number between 1 to 12', 6, 1, NULL, '2023-04-30 14:22:33', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1599, 'Choose your analyse interval ?', 'MODULE_ADMIN_DASHBOARD_TOTAL_CUSTOMERS_APP_INTERVAL', '30 Day', 'Analyse interval', 6, 1, NULL, '2023-04-30 14:22:33', NULL, 'clic_cfg_set_boolean_value(array(''7 Day'', ''14 Day'', ''30 Day'', ''90 Day'', ''182 Day'', ''365 Day''))'),
(1600, 'Sort Order', 'MODULE_ADMIN_DASHBOARD_TOTAL_CUSTOMERS_APP_SORT_ORDER', '45', 'Sort order of display. Lowest is displayed first.', 6, 2, NULL, '2023-04-30 14:22:33', NULL, ''),
(1601, 'Marketplace Username', 'CLICSHOPPING_APP_UPGRADE_UP_USERNAME', '', 'The username is our username on ClicShopping Forum (subscription is manadatory)', 6, 0, NULL, '2018-07-30 10:35:50', NULL, NULL),
(1602, 'Marketplace Password', 'CLICSHOPPING_APP_UPGRADE_UP_PASSWORD', '', 'The password is our password on ClicShopping Forum (subscription is manadatory)', 6, 0, NULL, '2018-07-30 10:35:50', NULL, NULL),
(1603, 'Parameter [Return Orders App]', 'MODULE_MODULES_PRODUCTS_RETURN_ORDERS_INSTALLED', ';Orders\\ReturnOrders\\RO', 'Parameter [Return Orders App]', 6, 0, NULL, '2023-06-13 18:02:40', NULL, NULL),
(1604, 'Status', 'CLICSHOPPING_APP_RETURN_ORDERS_RO_STATUS', 'True', 'Set True to enable or not the module', 6, 0, NULL, '2023-06-13 18:06:17', NULL, NULL),
(1605, 'Customer withdrawal period', 'CLICSHOPPING_APP_RETURN_ORDERS_RO_WITHDRAWAL', '14', 'Please indicate the withdrawal period that the customer may use to return the product purchased', 6, 0, NULL, '2023-06-13 18:06:17', NULL, NULL),
(1606, 'Sort Order', 'CLICSHOPPING_APP_RETURN_ORDERS_RO_SORT_ORDER', '30', 'The sort order location of the module shown in the available methods listing (lowest is displayed first).', 6, 0, NULL, '2023-06-13 18:06:17', NULL, NULL),
(1607, 'Witch Default wysiwyg do you want ?', 'DEFAULT_WYSIWYG', 'CkEditor5', 'Please choose your default wysiwyg', 43, 100, '2007-05-20 01:00:47', '2006-04-09 16:13:48', NULL, 'clic_cfg_set_boolean_value(array(''CkEditor5''))'),
(1608, 'Analysis strategy', 'CLICSHOPPING_APP_RECOMMENDATIONS_PR_STRATEGY', 'Range', 'Please choose your strategy', 6, 0, NULL, '2023-08-04 09:50:46', NULL, NULL),
(1609, 'Sentiment score weighting', 'CLICSHOPPING_APP_RECOMMENDATIONS_PR_WEIGHTING_SENTIMENT', '1.5', 'It is the ability to refine or modify the relative importance or influence of the sentiment score. <br />\n<strong>The neutral value</strong> considered positive is 0.8 for a sentiment weight of 1.5', 6, 0, NULL, '2023-08-04 09:50:46', NULL, NULL),
(1610, 'Sort Order', 'CLICSHOPPING_APP_RECOMMENDATIONS_PR_SORT_ORDER', '30', 'Sort Order (Lowest is displayed in first)', 6, 0, NULL, '2023-08-04 09:50:46', NULL, NULL),
(1611, 'Max Score', 'CLICSHOPPING_APP_RECOMMENDATIONS_PR_MAX_SCORE', '0.5', 'Show products frequently rejected by customer recommendations (must be between -1 and 1)<br />\nMust be equal to or less than min score', 6, 0, NULL, '2023-08-04 09:50:46', NULL, NULL),
(1612, 'Min Score', 'CLICSHOPPING_APP_RECOMMENDATIONS_PR_MIN_SCORE', '0.5', 'Show frequently accepted products for customer recommendations (must be between -1 and 1)', 6, 0, NULL, '2023-08-04 09:50:46', NULL, NULL),
(1613, 'Status', 'CLICSHOPPING_APP_RECOMMENDATIONS_PR_STATUS', 'True', 'Do you want to activate this module ?', 6, 0, NULL, '2023-08-04 09:50:46', NULL, NULL),
(1614, 'Parameter [Recommendations Products App]', 'MODULE_MODULES_PRODUCTS_PRODUCT_RECOMMENDATIONS_INSTALLED', 'Marketing\\Recommendations\\PR', 'Parameter [Recommendations Products App]', 6, 0, NULL, '2023-08-04 09:50:46', NULL, NULL),
(1615, 'Installed Modules', 'MODULE_MODULES_PRODUCTS_RECOMMENDATIONS_INSTALLED', 'pre_products_recommendations.php', 'This is automatically updated. No need to edit.', 6, 0, '2023-08-04 09:56:35', '2023-08-04 09:56:21', NULL, NULL),
(1616, 'Do you want to enable this module ?', 'MODULE_PRODUCTS_RECOMMENDATIONS_STATUS', 'True', 'Do you want to enable this module in your shop ?', 6, 1, NULL, '2023-08-04 09:56:35', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1617, 'Please select your template ?', 'MODULE_PRODUCTS_RECOMMENDATIONS_TEMPLATE', 'template_bootstrap_column_5.php', 'Select your template', 6, 2, NULL, '2023-08-04 09:56:35', NULL, 'clic_cfg_set_multi_template_pull_down'),
(1618, 'Please indicate the number of product do you want to display', 'MODULE_PRODUCTS_RECOMMENDATIONS_MAX_DISPLAY', '6', 'Indicate the number of product do you want to display', 6, 3, NULL, '2023-08-04 09:56:35', NULL, ''),
(1619, 'Please indicate the number of column that you want to display ?', 'MODULE_PRODUCTS_RECOMMENDATIONS_COLUMNS', '4', 'Choose a number between 1 and 12', 6, 3, NULL, '2023-08-04 09:56:35', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1620, 'Do you want to display a short description ?', 'MODULE_PRODUCTS_RECOMMENDATIONS_SHORT_DESCRIPTION', '', 'Please indicate a number of your short description', 6, 4, NULL, '2023-08-04 09:56:35', NULL, ''),
(1621, 'Do you want to remove words of your short description ?', 'MODULE_PRODUCTS_RECOMMENDATIONS_SHORT_DESCRIPTION_DELETE_WORLDS', '', 'Indicate Remove words of your short description for the first caracters', 6, 4, NULL, '2023-08-04 09:56:35', NULL, ''),
(1622, 'Do you want to display a message News / Specials / Favorites / Featured ?', 'MODULE_PRODUCTS_RECOMMENDATIONS_TICKER', 'False', 'Display a message News / Specials / Favorites / Featured', 6, 1, NULL, '2023-08-04 09:56:35', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1623, 'Do you want to display the discount pourcentage (specials) ?', 'MODULE_PRODUCTS_RECOMMENDATIONS_POURCENTAGE_TICKER', 'False', 'Display the discount pourcentage (specials)', 6, 1, NULL, '2023-08-04 09:56:35', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1624, 'Do you want to display the stock ?', 'MODULE_PRODUCTS_RECOMMENDATIONS_DISPLAY_STOCK', 'none', 'Display the stock (in stock, sold out, out of stock) ?', 6, 6, NULL, '2023-08-04 09:56:35', NULL, 'clic_cfg_set_boolean_value(array(''none'', ''image'', ''number''))'),
(1625, 'Please indicate a arrival date sort order', 'MODULE_PRODUCTS_RECOMMENDATIONS_LIST_DATE_ADDED', '1', 'This option allow to choose an order to display the product. Lowest is displayed in first; 0 for nothing', 6, 5, NULL, '2023-08-04 09:56:35', NULL, ''),
(1626, 'Please indicate a price sort order', 'MODULE_PRODUCTS_RECOMMENDATIONS_LIST_PRICE', '', 'This option allow to choose an order to display the product. Lowest is displayed in first; 0 for nothing', 6, 6, NULL, '2023-08-04 09:56:35', NULL, ''),
(1627, 'Please indicate a model sort order', 'MODULE_PRODUCTS_RECOMMENDATIONS_LIST_MODEL', '', 'This option allow to choose an order to display the product. Lowest is displayed in first; 0 for nothing', 6, 7, NULL, '2023-08-04 09:56:35', NULL, ''),
(1628, 'Please indicate a quantity sort order', 'MODULE_PRODUCTS_RECOMMENDATIONS_LIST_QUANTITY', '', 'This option allow to choose an order to display the product. Lowest is displayed in first; 0 for nothing', 6, 8, NULL, '2023-08-04 09:56:35', NULL, ''),
(1629, 'Please indicate a weight sort order', 'MODULE_PRODUCTS_RECOMMENDATIONS_LIST_WEIGHT', '', 'This option allow to choose an order to display the product. Lowest is displayed in first; 0 for nothing', 6, 9, NULL, '2023-08-04 09:56:35', NULL, ''),
(1630, 'Please choose the image size', 'MODULE_PRODUCTS_RECOMMENDATIONS_IMAGE_MEDIUM', 'Small', 'What image size do you want to display?', 6, 10, NULL, '2023-08-04 09:56:35', NULL, 'clic_cfg_set_boolean_value(array(''Small'', ''Medium''))'),
(1631, 'Do you want to remove the details button ?', 'MODULE_PRODUCTS_RECOMMENDATIONS_DELETE_BUY_BUTTON', 'False', 'Remove the button details', 6, 11, NULL, '2023-08-04 09:56:35', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1632, 'Sort order', 'MODULE_PRODUCTS_RECOMMENDATIONS_SORT_ORDER', '100', 'Sort order of display. Lowest is displayed first. The sort order must be different on every module', 6, 12, NULL, '2023-08-04 09:56:35', NULL, ''),
(1633, 'Lead time for Predictive safety stock', 'SAFETY_STOCK_TIME', '7', 'Please insert the time in days for the analyse', 9, 5, NULL, '2006-04-09 16:13:48', NULL, NULL),
(1734, 'Do you want to display the customer sentiment tag ?', 'MODULE_PRODUCTS_INFO_REVIEWS_CUSTOMERS_SENTIMENT_TAG', 'False', 'Display the customer sentiment about a review generated by AI (you must enable gpt to use that)', 6, 1, NULL, '2023-08-19 10:59:58', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1735, 'Do you want to display the customer sentiment tag ?', 'MODULES_PRODUCTS_REVIEWS_INFO_CONTENT_SENTIMENT_TAG', 'False', 'Display the customer sentiment about a review generated by AI (you must enable gpt to use that)', 6, 1, NULL, '2023-08-19 11:19:45', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1736, 'Do you want to display the customer sentiment tag ?', 'MODULES_PRODUCTS_REVIEWS_LISTING_CONTENT_SENTIMENT_TAG', 'True', 'Display the customer sentiment about a review generated by AI (you must enable gpt to use that)', 6, 1, NULL, '2023-08-19 11:27:50', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1737, 'Do you want to save the customer sentiment tags when a comment is created ?', 'CLICSHOPPING_APP_REVIEWS_RV_SENTIMENT_TAG', 'False', 'Records tags generated by the generative AI depending on the customer comment (GPT must be activated)', 6, 0, NULL, '2023-08-19 11:41:33', NULL, NULL),
(1738, 'Do you want to activate the automatic creation / remove favorites ?', 'CLICSHOPPING_APP_RECOMMENDATIONS_PR_FAVORITES_STATUS', 'False', 'Activate the automatic creation / remove favorites', 6, 0, NULL, '2023-09-08 13:18:11', NULL, NULL),
(1739, 'Score minimum accepted to create a favorites', 'CLICSHOPPING_APP_RECOMMENDATIONS_PR_FAVORITES_MIN_SCORE', '2.1', 'Allow to create automatically a favorites if the score is more important as average product score', 6, 0, NULL, '2023-09-08 13:18:11', NULL, NULL),
(1740, 'Do you want to activate the automatic creation / remove featured product ?', 'CLICSHOPPING_APP_RECOMMENDATIONS_PR_FEATURED_STATUS', 'False', 'Activate the automatic creation / remove featured product', 6, 0, NULL, '2023-09-08 15:11:50', NULL, NULL),
(1741, 'Score minimum accepted to create a featured product', 'CLICSHOPPING_APP_RECOMMENDATIONS_PR_FEATURED_MIN_SCORE', '1.5', 'Allow to create automatically a featured if the score is more important as average product score', 6, 0, NULL, '2023-09-08 15:11:50', NULL, NULL),
(1742, 'Reviews number to analyse', 'CLICSHOPPING_APP_REVIEWS_RV_REVIEW_NUMBER', '10', 'For AI sentiment analyis, you must have a minimum of review to analyse. We recommend you 10.', 6, 0, NULL, '2023-09-13 19:21:28', NULL, NULL),
(1743, 'Do you want to enable this Module ?', 'MODULE_ADMIN_DASHBOARD_GPT_CHECK_API_APP_STATUS', 'True', 'Do you want to enable this Module ?', 6, 1, NULL, '2023-09-15 09:16:47', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1744, 'Select the width to display', 'MODULE_ADMIN_DASHBOARD_GPT_CHECK_API_APP_CONTENT_WIDTH', '12', 'Select a number between 1 to 12', 6, 1, NULL, '2023-09-15 09:16:47', NULL, 'clic_cfg_set_content_module_width_pull_down'),
(1745, 'Sort Order', 'MODULE_ADMIN_DASHBOARD_GPT_CHECK_API_APP_SORT_ORDER', '2', 'Sort order of display. Lowest is displayed first.', 6, 2, NULL, '2023-09-15 09:16:47', NULL, ''),
(1746, 'Anthropic api key', 'CLICSHOPPING_APP_CHATGPT_CH_ANTHROPIC_API_KEY', '', 'Please insert the api key (https://www.anthropic.com)', 6, 0, NULL, '2023-02-22 17:17:04', NULL, NULL),
(1747, 'Mistral Api Key', 'CLICSHOPPING_APP_CHATGPT_CH_API_KEY_MISTRAL', '', 'Please insert the api key (https://www.mistral.ai)', 6, 0, NULL, '2025-04-16 13:09:02', NULL, NULL),
(1748, 'Sort Order', 'CLICSHOPPING_APP_ADMINISTRATORS_AD_SORT_ORDER', '30', 'Sort order of display. Lowest is displayed first.', 6, 0, NULL, '2025-04-23 15:01:20', NULL, NULL),
(1749, 'Status', 'CLICSHOPPING_APP_ADMINISTRATORS_AD_STATUS', 'True', 'SDo you want to enable this App ?', 6, 0, NULL, '2025-04-23 15:01:20', NULL, NULL),
(1750, 'Parameter [Administrators App]', 'MODULE_MODULES_ADMINISTRATORS_INSTALLED', 'Configuration\\Administrators\\AD', 'Parameter [Administrators App]', 6, 0, NULL, '2025-04-23 15:01:20', NULL, NULL),
(1751, 'Enable email verification by code for admin access', 'EMAIL_VERIFICATION_ENABLED_ADMIN', 'False', 'Enable or disable code verification for admin access. <br> Please ensure the administrator can access this verification', 46, 5, NULL, '2025-04-23 15:01:20', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))');
INSERT INTO `clic_configuration` VALUES
(1752, 'Enable email verification by code for store access', 'EMAIL_VERIFICATION_ENABLED_SHOP', 'False', 'Enable or disable code verification for store access. <br> Please ensure the administrator can access this verification', 46, 6, NULL, '2025-04-23 15:01:20', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1753, 'Email verification code validity duration (minutes)', 'EMAIL_VERIFICATION_CODE_EXPIRY', '5', 'Duration of the verification code validity in minutes', 46, 7, NULL, '2025-04-23 15:01:20', NULL, NULL),
(1754, 'Email verification code length', 'EMAIL_VERIFICATION_CODE_LENGTH', '6', 'Number of digits in the verification code (4-8)', 46, 8, NULL, '2025-04-23 15:01:20', NULL, NULL),
(1755, 'client ID key', 'CLICSHOPPING_APP_UPGRADE_UP_CLIENT_ID', '', 'client ID key', 6, 0, NULL, '2025-05-19 10:42:16', NULL, NULL),
(1756, 'Secret key', 'CLICSHOPPING_APP_UPGRADE_UP_SECRET_KEY', '', 'You must send a request to a forum administrator to obtain the secret key', 6, 0, NULL, '2025-05-19 10:42:16', NULL, NULL),
(1757, 'Status', 'CLICSHOPPING_APP_CACHE_CA_STATUS', 'True', 'Do you want to enable this module in your shop?', 6, 0, NULL, '2025-05-19 17:16:52', NULL, NULL),
(1758, 'Sort order of display', 'CLICSHOPPING_APP_CACHE_CA_SORT_ORDER', '30', 'Sort order for display (The lowest number is shown first)', 6, 0, NULL, '2025-05-19 17:16:52', NULL, NULL),
(1759, 'Parameter [Cache Control App]', 'MODULE_MODULES_CACHE_INSTALLED', 'Configuration\\Cache\\CA', 'Parameter [Cache Control App]', 6, 0, NULL, '2025-05-19 17:16:52', NULL, NULL),
(1760, 'Use Memcached', 'USE_MEMCACHED', 'False', 'Enable Memcached caching. For debug, please let on False', 11, 2, NULL, '2025-05-19 17:16:52', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1761, 'Use static content page cache on the catalog', 'USE_CATALOG_CACHE', 'False', 'Enable the caching about the static catalog content.<br>Please for a cache reset, change to False ', 11, 7, NULL, '2025-05-19 17:16:52', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1762, 'Reset the static content page cache on the catalog', 'USE_CATALOG_RESET_CACHE', 'False', 'Reset the caching about the static catalog content<br>After Reset, Please change the status to False', 11, 8, NULL, '2025-05-19 17:16:52', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1763, 'Activate the static content log page cache on the catalog', 'USE_CATALOG_LOG_CACHE', 'False', 'Activate the caching log about the static catalog content', 11, 9, NULL, '2025-05-19 17:16:52', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1764, 'Time interval during which rate limits are enforced', 'CLICSHOPPING_APP_API_AI_RATE_LIMIT_WINDOW', '900', 'Fixed duration defining the period over which requests are counted to enforce rate limiting and prevent excessive usage.', 6, 0, NULL, '2025-06-14 11:43:58', NULL, NULL),
(1765, 'Session expiration duration', 'CLICSHOPPING_APP_API_AI_SESSION_TIMEOUT_MINUTES', '30', 'Specifies the session expiration time in minutes.', 6, 0, NULL, '2025-06-14 11:43:58', NULL, NULL),
(1766, 'Account lock duration', 'CLICSHOPPING_APP_API_AI_ACCOUNT_LOCK_DURATION', '1800', 'Duration during which an account remains locked after exceeding allowed limits. (30 mn)', 6, 0, NULL, '2025-06-14 11:43:58', NULL, NULL),
(1767, 'Maximum allowed login attempts', 'CLICSHOPPING_APP_API_AI_MAX_LOGIN_ATTEMPTS', '5', 'Specifies the maximum number of login attempts permitted before restriction.', 6, 0, NULL, '2025-06-14 11:43:58', NULL, NULL),
(1768, 'Maximum requests per window', 'CLICSHOPPING_APP_API_AI_MAX_REQUEST_PER_WINDOW', '20', 'Limits the number of requests to 20 within a 15-minute interval.', 6, 0, NULL, '2025-06-14 11:43:58', NULL, NULL),
(1769, 'Debug / Log', 'CLICSHOPPING_APP_CHATGPT_CH_DEBUG', 'False', 'Enabling this will provide you with complete information about errors and issues encountered by the ChatGPT application.<br>\nIt is recommended to enable it only when needed for debugging.', 6, 0, NULL, '2025-06-30 11:46:10', NULL, NULL),
(1770, 'Reasoning Effort', 'CLICSHOPPING_APP_CHATGPT_CH_REASONING_EFFORT', 'minimal', 'Select your option. Works only with chatgpt-5.', 6, 0, NULL, '2025-08-08 10:00:54', NULL, NULL),
(1771, 'Verbosity', 'CLICSHOPPING_APP_CHATGPT_CH_VERBOSITY', 'medium', 'Level of detail or elaboration in the response. Works only with chatgpt-5.', 6, 0, NULL, '2025-08-08 10:08:28', NULL, NULL),
(1772, 'Memcached TTL duration', 'MEMCACHED_CACHE_LIFETIME', '3600', 'Memcached session duration', 11, 3, NULL, '2025-05-19 17:16:52', NULL, NULL),
(1773, 'Use Redis', 'USE_REDIS', 'False', 'Enable Redis caching. For debugging, please leave as false', 11, 4, NULL, '2025-05-19 17:16:52', NULL, 'clic_cfg_set_boolean_value(array(''True'', ''False''))'),
(1774, 'Sales Weighting', 'CLICSHOPPING_APP_RECOMMENDATIONS_PR_WEIGHT_SALES', '0.4', 'Weight applied to the score derived from sales. Controls the influence of product sales (normalized by the maximum ordered) in the Multiple strategy.', 6, 0, NULL, '2025-09-15 17:07:51', NULL, NULL),
(1775, 'External Sources Weighting', 'CLICSHOPPING_APP_RECOMMENDATIONS_PR_WEIGHT_EXTERNAL', '0.3', 'Weight applied to the score derived from external recommendations (average of recommendation scores normalized between min and max). Used in the Multiple strategy.', 6, 0, NULL, '2025-09-15 17:07:51', NULL, NULL),
(1776, 'Sort Order', 'CLICSHOPPING_APP_MCP_MC_SORT_ORDER', '500', 'The sort order location of the module shown in the available methods listing (lowest is displayed first).', 6, 0, NULL, '2025-09-18 18:14:27', NULL, NULL),
(1777, 'Status', 'CLICSHOPPING_APP_MCP_MC_STATUS', 'True', 'Set True to enable or not the module', 6, 0, NULL, '2025-09-18 18:14:27', NULL, NULL),
(1778, 'Parameter [MCP App]', 'MODULE_MODULES_MCP_INSTALLED', 'Tools\\MCP\\MC', 'Parameter [MCP App]', 6, 0, NULL, '2025-09-18 18:14:27', NULL, NULL),
(1779, 'Display JSON in Browser', 'CLICSHOPPING_APP_MCP_MC_DISPLAY_BROWSER_JSON', 'True', 'In test mode, select False; in production mode, select True.<br>This setting allows displaying the API request result in JSON format in the browser.', 6, 0, NULL, '2025-09-18 18:14:27', NULL, NULL),
(1780, 'Intervalle de temps pendant lequel les limites de débit sont appliquées', 'CLICSHOPPING_APP_MCP_MC_RATE_LIMIT_WINDOW', '900', 'Durée fixe définissant la période sur laquelle les requêtes sont comptabilisées pour appliquer la limitation et éviter les usages excessifs.', 6, 0, NULL, '2025-10-30 15:21:25', NULL, NULL),
(1781, 'Durée d’expiration de la session', 'CLICSHOPPING_APP_MCP_MC_SESSION_TIMEOUT_MINUTES', '30', 'Spécifie la durée d’expiration de la session en minutes.', 6, 0, NULL, '2025-10-30 15:21:25', NULL, NULL),
(1782, 'Durée de verrouillage du compte', 'CLICSHOPPING_APP_MCP_MC_ACCOUNT_LOCK_DURATION', '1800', 'Durée pendant laquelle un compte reste verrouillé après dépassement des limites autorisées.', 6, 0, NULL, '2025-10-30 15:21:25', NULL, NULL),
(1783, 'Nombre maximal de tentatives de connexion', 'CLICSHOPPING_APP_MCP_MC_MAX_LOGIN_ATTEMPTS', '5', 'Spécifie le nombre maximal de tentatives de connexion autorisées avant restriction.', 6, 0, NULL, '2025-10-30 15:21:25', NULL, NULL),
(1784, 'Nombre maximal de requêtes par fenêtre', 'CLICSHOPPING_APP_MCP_MC_MAX_REQUEST_PER_WINDOW', '20', 'Limite le nombre de requêtes à 20 sur une période de 15 minutes.', 6, 0, NULL, '2025-10-30 15:21:25', NULL, NULL);
-- --------------------------------------------------------
--
-- Table structure for table `clic_configuration_group`
--
CREATE TABLE `clic_configuration_group` (
`configuration_group_id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each configuration group',
`configuration_group_title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Display title of the configuration group',
`configuration_group_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Description of what settings this group contains',
`sort_order` int DEFAULT NULL COMMENT 'Display order of configuration groups in admin',
`visible` int DEFAULT '1' COMMENT 'Visibility flag - 0: hidden, 1: visible in admin',
PRIMARY KEY (`configuration_group_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=47 ;
--
-- Dumping data for table `clic_configuration_group`
--
INSERT INTO `clic_configuration_group` VALUES
(1, 'Store Setup', 'General Information on the Store.', 1, 1),
(2, 'Setup credit card', 'Minimum value: functions / data', 2, 1),
(3, 'Setup maximum and minimum values', 'Values functions / data', 3, 1),
(4, 'Image Setup', 'Image setting', 4, 1),
(5, 'Setup B2C customers', 'Customer account setting.', 5, 1),
(6, 'Setup options Modules', 'Hidden setting.', 6, 0),
(7, 'Setup Shipping / Packing', 'Delivery options available in this store.', 7, 1),
(8, 'Setup the Product List', 'Setting options lists of products.', 8, 1),
(9, 'Stock setup', 'Setting options of stock.', 9, 1),
(10, 'Logging setup', 'Setting Logging options.', 10, 1),
(11, 'Setup Cache', 'Setting Cache Options.', 11, 1),
(12, 'Setup options mail', 'General setting for the mail client and emails in HTML format.', 12, 1),
(13, 'Download Setup', 'Options downloadable products.', 13, 1),
(14, 'Setup compression & optimization', 'Website compression & optimization options.', 14, 1),
(15, 'Session Setup', 'Session options', 15, 1),
(16, 'Setup minimum values for B2C customers', 'Minimum value for the field of B2C customers', 16, 1),
(17, 'B2B Setup', 'General Setting B2B', 17, 1),
(18, 'Setup B2B customers', 'Setting inscriptions B2B group customers', 18, 1),
(19, 'Setup minimum values for B2B customers', 'Minimum value for the field of B2B customers', 19, 1),
(20, 'Setup maximum values for B2B customers', 'Maximum value for the field of B2B customers', 20, 1),
(21, 'Setup maximum values', 'Maximum value for: functions / data', 21, 1),
(22, 'B2C setup', 'General setting for the B2C', 22, 1),
(23, 'Image setup', 'Image Setting', 23, 1),
(25, 'Setup regulatory legislation', 'Regulatory options for setup your site', 25, 1),
(26, 'Setup invoices and shipments', 'Setting invoices and shipments', 26, 1),
(27, 'SEO Setup and statistics', 'Options for managing SEO and Statistics', 27, 1),
(28, 'Setup product also bought', 'Display information in the product description sheet', 28, 1),
(29, 'Setup display specials listing', 'Sheet Listing Description promotions', 29, 1),
(30, 'Setup the Home page and categories', 'Values concerning the setup of the home page and categories', 30, 1),
(31, 'Setup boxes left and right', 'Value in the setup of boxes left and right', 31, 1),
(32, 'Setup Comments', 'Value for comments', 32, 1),
(33, 'Setup news listing', 'Value for the listing of new', 33, 1),
(34, 'Setup site URL', 'Setting options URL', 34, 1),
(35, 'Setup listing favorites', 'Values for the listing of favorites', 35, 1),
(36, 'Setup import / export', 'Setting import and export.', 36, 1),
(37, 'Setup specials for home page', 'Setting specials for home page', 37, 1),
(43, 'General and miscellaneous Setup design', 'General and miscellaneous Setting design', 43, 1),
(44, 'Web Service', 'Connect via webservice at new external application', 1, 1),
(45, 'Configuration HTTP', 'Configuration HTTP', 1, 1),
(46, 'Double Authentification', 'Double Authentification TOTP / 2FA', 1, 1);
-- --------------------------------------------------------
--
-- Table structure for table `clic_countries`
--
CREATE TABLE `clic_countries` (
`countries_id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each country',
`countries_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Full country name',
`countries_iso_code_2` char(2) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'ISO 3166-1 alpha-2 country code - two-letter code',
`countries_iso_code_3` char(3) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'ISO 3166-1 alpha-3 country code - three-letter code',
`address_format_id` int NOT NULL COMMENT 'FK to address_format table - defines how addresses are formatted for this country',
`status` tinyint(1) DEFAULT '1' COMMENT 'Country status - 0: inactive, 1: active for selection',
PRIMARY KEY (`countries_id`),
KEY `idx_countries_name` (`countries_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Countries list with ISO codes and address formatting configuration' AUTO_INCREMENT=240 ;
--
-- Dumping data for table `clic_countries`
--
INSERT INTO `clic_countries` VALUES
(1, 'Afghanistan', 'AF', 'AFG', 1, 1),
(2, 'Albania', 'AL', 'ALB', 1, 1),
(3, 'Algeria', 'DZ', 'DZA', 1, 1),
(4, 'American Samoa', 'AS', 'ASM', 1, 1),
(5, 'Andorra', 'AD', 'AND', 1, 1),
(6, 'Angola', 'AO', 'AGO', 1, 1),
(7, 'Anguilla', 'AI', 'AIA', 1, 1),
(8, 'Antarctica', 'AQ', 'ATA', 1, 1),
(9, 'Antigua and Barbuda', 'AG', 'ATG', 1, 1),
(10, 'Argentina', 'AR', 'ARG', 1, 1),
(11, 'Armenia', 'AM', 'ARM', 1, 1),
(12, 'Aruba', 'AW', 'ABW', 1, 1),
(13, 'Australia', 'AU', 'AUS', 1, 1),
(14, 'Austria', 'AT', 'AUT', 5, 1),
(15, 'Azerbaijan', 'AZ', 'AZE', 1, 1),
(16, 'Bahamas', 'BS', 'BHS', 1, 1),
(17, 'Bahrain', 'BH', 'BHR', 1, 1),
(18, 'Bangladesh', 'BD', 'BGD', 1, 1),
(19, 'Barbados', 'BB', 'BRB', 1, 1),
(20, 'Belarus', 'BY', 'BLR', 1, 1),
(21, 'Belgium', 'BE', 'BEL', 1, 1),
(22, 'Belize', 'BZ', 'BLZ', 1, 1),
(23, 'Benin', 'BJ', 'BEN', 1, 1),
(24, 'Bermuda', 'BM', 'BMU', 1, 1),
(25, 'Bhutan', 'BT', 'BTN', 1, 1),
(26, 'Bolivia', 'BO', 'BOL', 1, 1),
(27, 'Bosnia and Herzegowina', 'BA', 'BIH', 1, 1),
(28, 'Botswana', 'BW', 'BWA', 1, 1),
(29, 'Bouvet Island', 'BV', 'BVT', 1, 1),
(30, 'Brazil', 'BR', 'BRA', 1, 1),
(31, 'British Indian Ocean Territory', 'IO', 'IOT', 1, 1),
(32, 'Brunei Darussalam', 'BN', 'BRN', 1, 1),
(33, 'Bulgaria', 'BG', 'BGR', 1, 1),
(34, 'Burkina Faso', 'BF', 'BFA', 1, 1),
(35, 'Burundi', 'BI', 'BDI', 1, 1),
(36, 'Cambodia', 'KH', 'KHM', 1, 1),
(37, 'Cameroon', 'CM', 'CMR', 1, 1),
(38, 'Canada', 'CA', 'CAN', 1, 1),
(39, 'Cape Verde', 'CV', 'CPV', 1, 1),
(40, 'Cayman Islands', 'KY', 'CYM', 1, 1),
(41, 'Central African Republic', 'CF', 'CAF', 1, 1),
(42, 'Chad', 'TD', 'TCD', 1, 1),
(43, 'Chile', 'CL', 'CHL', 1, 1),
(44, 'China', 'CN', 'CHN', 1, 1),
(45, 'Christmas Island', 'CX', 'CXR', 1, 1),
(46, 'Cocos (Keeling) Islands', 'CC', 'CCK', 1, 1),
(47, 'Colombia', 'CO', 'COL', 1, 1),
(48, 'Comoros', 'KM', 'COM', 1, 1),
(49, 'Congo', 'CG', 'COG', 1, 1),
(50, 'Cook Islands', 'CK', 'COK', 1, 1),
(51, 'Costa Rica', 'CR', 'CRI', 1, 1),
(52, 'Cote D''Ivoire', 'CI', 'CIV', 1, 1),
(53, 'Croatia', 'HR', 'HRV', 1, 1),
(54, 'Cuba', 'CU', 'CUB', 1, 1),
(55, 'Cyprus', 'CY', 'CYP', 1, 1),
(56, 'Czech Republic', 'CZ', 'CZE', 1, 1),
(57, 'Denmark', 'DK', 'DNK', 1, 1),
(58, 'Djibouti', 'DJ', 'DJI', 1, 1),
(59, 'Dominica', 'DM', 'DMA', 1, 1),
(60, 'Dominican Republic', 'DO', 'DOM', 1, 1),
(61, 'East Timor', 'TP', 'TMP', 1, 1),
(62, 'Ecuador', 'EC', 'ECU', 1, 1),
(63, 'Egypt', 'EG', 'EGY', 1, 1),
(64, 'El Salvador', 'SV', 'SLV', 1, 1),
(65, 'Equatorial Guinea', 'GQ', 'GNQ', 1, 1),
(66, 'Eritrea', 'ER', 'ERI', 1, 1),
(67, 'Estonia', 'EE', 'EST', 1, 1),
(68, 'Ethiopia', 'ET', 'ETH', 1, 1),
(69, 'Falkland Islands (Malvinas)', 'FK', 'FLK', 1, 1),
(70, 'Faroe Islands', 'FO', 'FRO', 1, 1),
(71, 'Fiji', 'FJ', 'FJI', 1, 1),
(72, 'Finland', 'FI', 'FIN', 1, 1),
(73, 'France', 'FR', 'FRA', 6, 1),
(75, 'French Guiana', 'GF', 'GUF', 6, 1),
(76, 'French Polynesia', 'PF', 'PYF', 6, 1),
(77, 'French Southern Territories', 'TF', 'ATF', 6, 1),
(78, 'Gabon', 'GA', 'GAB', 1, 1),
(79, 'Gambia', 'GM', 'GMB', 1, 1),
(80, 'Georgia', 'GE', 'GEO', 1, 1),
(81, 'Germany', 'DE', 'DEU', 5, 1),
(82, 'Ghana', 'GH', 'GHA', 1, 1),
(83, 'Gibraltar', 'GI', 'GIB', 1, 1),
(84, 'Greece', 'GR', 'GRC', 1, 1),
(85, 'Greenland', 'GL', 'GRL', 1, 1),
(86, 'Grenada', 'GD', 'GRD', 1, 1),
(87, 'Guadeloupe', 'GP', 'GLP', 1, 1),
(88, 'Guam', 'GU', 'GUM', 1, 1),
(89, 'Guatemala', 'GT', 'GTM', 1, 1),
(90, 'Guinea', 'GN', 'GIN', 1, 1),
(91, 'Guinea-bissau', 'GW', 'GNB', 1, 1),
(92, 'Guyana', 'GY', 'GUY', 1, 1),
(93, 'Haiti', 'HT', 'HTI', 1, 1),
(94, 'Heard and Mc Donald Islands', 'HM', 'HMD', 1, 1),
(95, 'Honduras', 'HN', 'HND', 1, 1),
(96, 'Hong Kong', 'HK', 'HKG', 1, 1),
(97, 'Hungary', 'HU', 'HUN', 1, 1),
(98, 'Iceland', 'IS', 'ISL', 1, 1),
(99, 'India', 'IN', 'IND', 1, 1),
(100, 'Indonesia', 'ID', 'IDN', 1, 1),
(101, 'Iran (Islamic Republic of)', 'IR', 'IRN', 1, 1),
(102, 'Iraq', 'IQ', 'IRQ', 1, 1),
(103, 'Ireland', 'IE', 'IRL', 1, 1),
(104, 'Israel', 'IL', 'ISR', 1, 1),
(105, 'Italy', 'IT', 'ITA', 1, 1),
(106, 'Jamaica', 'JM', 'JAM', 1, 1),
(107, 'Japan', 'JP', 'JPN', 1, 1),
(108, 'Jordan', 'JO', 'JOR', 1, 1),
(109, 'Kazakhstan', 'KZ', 'KAZ', 1, 1),
(110, 'Kenya', 'KE', 'KEN', 1, 1),
(111, 'Kiribati', 'KI', 'KIR', 1, 1),
(112, 'Korea, Democratic People''s Republic of', 'KP', 'PRK', 1, 1),
(113, 'Korea, Republic of', 'KR', 'KOR', 1, 1),
(114, 'Kuwait', 'KW', 'KWT', 1, 1),
(115, 'Kyrgyzstan', 'KG', 'KGZ', 1, 1),
(116, 'Lao People''s Democratic Republic', 'LA', 'LAO', 1, 1),
(117, 'Latvia', 'LV', 'LVA', 1, 1),
(118, 'Lebanon', 'LB', 'LBN', 1, 1),
(119, 'Lesotho', 'LS', 'LSO', 1, 1),
(120, 'Liberia', 'LR', 'LBR', 1, 1),
(121, 'Libyan Arab Jamahiriya', 'LY', 'LBY', 1, 1),
(122, 'Liechtenstein', 'LI', 'LIE', 1, 1),
(123, 'Lithuania', 'LT', 'LTU', 1, 1),
(124, 'Luxembourg', 'LU', 'LUX', 1, 1),
(125, 'Macau', 'MO', 'MAC', 1, 1),
(126, 'Macedonia, The Former Yugoslav Republic of', 'MK', 'MKD', 1, 1),
(127, 'Madagascar', 'MG', 'MDG', 1, 1),
(128, 'Malawi', 'MW', 'MWI', 1, 1),
(129, 'Malaysia', 'MY', 'MYS', 1, 1),
(130, 'Maldives', 'MV', 'MDV', 1, 1),
(131, 'Mali', 'ML', 'MLI', 1, 1),
(132, 'Malta', 'MT', 'MLT', 1, 1),
(133, 'Marshall Islands', 'MH', 'MHL', 1, 1),
(134, 'Martinique', 'MQ', 'MTQ', 1, 1),
(135, 'Mauritania', 'MR', 'MRT', 1, 1),
(136, 'Mauritius', 'MU', 'MUS', 1, 1),
(137, 'Mayotte', 'YT', 'MYT', 1, 1),
(138, 'Mexico', 'MX', 'MEX', 1, 1),
(139, 'Micronesia, Federated States of', 'FM', 'FSM', 1, 1),
(140, 'Moldova, Republic of', 'MD', 'MDA', 1, 1),
(141, 'Monaco', 'MC', 'MCO', 1, 1),
(142, 'Mongolia', 'MN', 'MNG', 1, 1),
(143, 'Montserrat', 'MS', 'MSR', 1, 1),
(144, 'Morocco', 'MA', 'MAR', 1, 1),
(145, 'Mozambique', 'MZ', 'MOZ', 1, 1),
(146, 'Myanmar', 'MM', 'MMR', 1, 1),
(147, 'Namibia', 'NA', 'NAM', 1, 1),
(148, 'Nauru', 'NR', 'NRU', 1, 1),
(149, 'Nepal', 'NP', 'NPL', 1, 1),
(150, 'Netherlands', 'NL', 'NLD', 1, 1),
(151, 'Netherlands Antilles', 'AN', 'ANT', 1, 1),
(152, 'New Caledonia', 'NC', 'NCL', 1, 1),
(153, 'New Zealand', 'NZ', 'NZL', 1, 1),
(154, 'Nicaragua', 'NI', 'NIC', 1, 1),
(155, 'Niger', 'NE', 'NER', 1, 1),
(156, 'Nigeria', 'NG', 'NGA', 1, 1),
(157, 'Niue', 'NU', 'NIU', 1, 1),
(158, 'Norfolk Island', 'NF', 'NFK', 1, 1),
(159, 'Northern Mariana Islands', 'MP', 'MNP', 1, 1),
(160, 'Norway', 'NO', 'NOR', 1, 1),
(161, 'Oman', 'OM', 'OMN', 1, 1),
(162, 'Pakistan', 'PK', 'PAK', 1, 1),
(163, 'Palau', 'PW', 'PLW', 1, 1),
(164, 'Panama', 'PA', 'PAN', 1, 1),
(165, 'Papua New Guinea', 'PG', 'PNG', 1, 1),
(166, 'Paraguay', 'PY', 'PRY', 1, 1),
(167, 'Peru', 'PE', 'PER', 1, 1),
(168, 'Philippines', 'PH', 'PHL', 1, 1),
(169, 'Pitcairn', 'PN', 'PCN', 1, 1),
(170, 'Poland', 'PL', 'POL', 1, 1),
(171, 'Portugal', 'PT', 'PRT', 1, 1),
(172, 'Puerto Rico', 'PR', 'PRI', 1, 1),
(173, 'Qatar', 'QA', 'QAT', 1, 1),
(174, 'Reunion', 'RE', 'REU', 1, 1),
(175, 'Romania', 'RO', 'ROM', 1, 1),
(176, 'Russian Federation', 'RU', 'RUS', 1, 1),
(177, 'Rwanda', 'RW', 'RWA', 1, 1),
(178, 'Saint Kitts and Nevis', 'KN', 'KNA', 1, 1),
(179, 'Saint Lucia', 'LC', 'LCA', 1, 1),
(180, 'Saint Vincent and the Grenadines', 'VC', 'VCT', 1, 1),
(181, 'Samoa', 'WS', 'WSM', 1, 1),
(182, 'San Marino', 'SM', 'SMR', 1, 1),
(183, 'Sao Tome and Principe', 'ST', 'STP', 1, 1),
(184, 'Saudi Arabia', 'SA', 'SAU', 1, 1),
(185, 'Senegal', 'SN', 'SEN', 1, 1),
(186, 'Seychelles', 'SC', 'SYC', 1, 1),
(187, 'Sierra Leone', 'SL', 'SLE', 1, 1),
(188, 'Singapore', 'SG', 'SGP', 4, 1),
(189, 'Slovakia (Slovak Republic)', 'SK', 'SVK', 1, 1),
(190, 'Slovenia', 'SI', 'SVN', 1, 1),
(191, 'Solomon Islands', 'SB', 'SLB', 1, 1),
(192, 'Somalia', 'SO', 'SOM', 1, 1),
(193, 'South Africa', 'ZA', 'ZAF', 1, 1),
(194, 'South Georgia and the South Sandwich Islands', 'GS', 'SGS', 1, 1),
(195, 'Spain', 'ES', 'ESP', 3, 1),
(196, 'Sri Lanka', 'LK', 'LKA', 1, 1),
(197, 'St. Helena', 'SH', 'SHN', 1, 1),
(198, 'St. Pierre and Miquelon', 'PM', 'SPM', 1, 1),
(199, 'Sudan', 'SD', 'SDN', 1, 1),
(200, 'Suriname', 'SR', 'SUR', 1, 1),
(201, 'Svalbard and Jan Mayen Islands', 'SJ', 'SJM', 1, 1),
(202, 'Swaziland', 'SZ', 'SWZ', 1, 1),
(203, 'Sweden', 'SE', 'SWE', 1, 1),
(204, 'Switzerland', 'CH', 'CHE', 1, 1),
(205, 'Syrian Arab Republic', 'SY', 'SYR', 1, 1),
(206, 'Taiwan', 'TW', 'TWN', 1, 1),
(207, 'Tajikistan', 'TJ', 'TJK', 1, 1),
(208, 'Tanzania, United Republic of', 'TZ', 'TZA', 1, 1),
(209, 'Thailand', 'TH', 'THA', 1, 1),
(210, 'Togo', 'TG', 'TGO', 1, 1),
(211, 'Tokelau', 'TK', 'TKL', 1, 1),
(212, 'Tonga', 'TO', 'TON', 1, 1),
(213, 'Trinidad and Tobago', 'TT', 'TTO', 1, 1),
(214, 'Tunisia', 'TN', 'TUN', 1, 1),
(215, 'Turkey', 'TR', 'TUR', 1, 1),
(216, 'Turkmenistan', 'TM', 'TKM', 1, 1),
(217, 'Turks and Caicos Islands', 'TC', 'TCA', 1, 1),
(218, 'Tuvalu', 'TV', 'TUV', 1, 1),
(219, 'Uganda', 'UG', 'UGA', 1, 1),
(220, 'Ukraine', 'UA', 'UKR', 1, 1),
(221, 'United Arab Emirates', 'AE', 'ARE', 1, 1),
(222, 'United Kingdom', 'GB', 'GBR', 1, 1),
(223, 'United States', 'US', 'USA', 2, 1),
(224, 'United States Minor Outlying Islands', 'UM', 'UMI', 1, 1),
(225, 'Uruguay', 'UY', 'URY', 1, 1),
(226, 'Uzbekistan', 'UZ', 'UZB', 1, 1),
(227, 'Vanuatu', 'VU', 'VUT', 1, 1),
(228, 'Vatican City State (Holy See)', 'VA', 'VAT', 1, 1),
(229, 'Venezuela', 'VE', 'VEN', 1, 1),
(230, 'Viet Nam', 'VN', 'VNM', 1, 1),
(231, 'Virgin Islands (British)', 'VG', 'VGB', 1, 1),
(232, 'Virgin Islands (U.S.)', 'VI', 'VIR', 1, 1),
(233, 'Wallis and Futuna Islands', 'WF', 'WLF', 1, 1),
(234, 'Western Sahara', 'EH', 'ESH', 1, 1),
(235, 'Yemen', 'YE', 'YEM', 1, 1),
(236, 'Serbia', 'RS', 'SRB', 1, 1),
(237, 'East Timor', 'TL', 'TLS', 1, 1),
(238, 'Zambia', 'ZM', 'ZMB', 1, 1),
(239, 'Zimbabwe', 'ZW', 'ZWE', 1, 1);
-- --------------------------------------------------------
--
-- Table structure for table `clic_cron`
--
CREATE TABLE `clic_cron` (
`cron_id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each scheduled task',
`code` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Unique code identifier for the cron job - e.g. cache_cleanup, email_queue, backup',
`description` text COLLATE utf8mb4_unicode_ci COMMENT 'Human-readable description of what this cron job does',
`cycle` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Execution schedule - cron expression or interval like daily, hourly, weekly',
`action` text COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Action to execute - PHP class/method or command to run',
`status` tinyint(1) NOT NULL COMMENT 'Cron job status - 0: disabled, 1: enabled and will execute',
`date_added` datetime NOT NULL COMMENT 'Timestamp when cron job was created',
`date_modified` datetime DEFAULT NULL COMMENT 'Timestamp of last modification to cron job',
PRIMARY KEY (`cron_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=7 ;
--
-- Dumping data for table `clic_cron`
--
INSERT INTO `clic_cron` VALUES
(1, 'currency', 'Update the currencies', 'day', 'currency', 1, '2014-09-25 14:40:00', '2022-10-08 17:57:36'),
(2, 'gdpr', 'Customer Legislation', 'monthly', 'gdpr', 0, '2014-09-01 14:40:00', '2022-10-08 18:04:38'),
(3, 'backup', 'database backup', 'weekly', 'backup', 1, '1900-01-01 00:00:00', '2022-10-08 17:31:47'),
(4, 'marketplace', 'Apps marketplace', 'monthly', 'marketplace', 1, '2023-01-06 15:51:34', '2023-01-06 18:19:19'),
(5, 'embeddings', 'Update the embeddings table if it not exist<br>Table updated : categories_embedding, manufacturers_embedding, products_embedding, pages_manager_embedding, reviews_embedding,suppliers_embedding.<br>Table not updated : orders_embedding,return_orders_embedding, reviews_sentiment_embeddings', 'weekly', 'embeddings', 1, '2025-05-15 20:14:27', '2025-05-15 20:19:06'),
(6, 'McpHealthCron', 'All 5 minutes', 'minute', 'McpHealthCron', 1, '2025-09-25 09:52:21', '2025-09-25 10:56:07');
-- --------------------------------------------------------
--
-- Table structure for table `clic_currencies`
--
CREATE TABLE `clic_currencies` (
`currencies_id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each currency',
`title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Full currency name - e.g. US Dollar, Euro',
`code` char(3) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'ISO 4217 currency code - e.g. USD, EUR, GBP',
`symbol_left` varchar(12) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Currency symbol displayed before amount - e.g. $, €',
`symbol_right` varchar(12) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Currency symbol displayed after amount',
`decimal_point` char(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Character used as decimal separator - e.g. . or ,',
`thousands_point` char(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Character used as thousands separator - e.g. , or .',
`decimal_places` char(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Number of decimal places to display - typically 2',
`value` float(13,8) DEFAULT NULL COMMENT 'Exchange rate relative to base currency - 1.00000000 for base currency',
`last_updated` datetime DEFAULT NULL COMMENT 'Timestamp of last exchange rate update',
`status` tinyint(1) NOT NULL DEFAULT '1' COMMENT 'Currency status - 0: inactive, 1: active for selection',
`surcharge` float(15,4) DEFAULT NULL COMMENT 'Additional surcharge percentage applied when using this currency',
PRIMARY KEY (`currencies_id`),
KEY `idx_currencies_code` (`code`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Multi-currency support with exchange rates and formatting rules' AUTO_INCREMENT=4 ;
--
-- Dumping data for table `clic_currencies`
--
INSERT INTO `clic_currencies` VALUES
(1, 'Euro', 'EUR', '', 'EUR', '.', ',', '2', 1.00000000, '2008-09-13 18:02:35', 1, 0.0000),
(2, 'Dollard', 'USD', 'USD', '', '.', ',', '2', 1.40750003, '2008-09-13 18:02:36', 1, 0.0000),
(3, 'Canada', 'CAD', '', 'CAD', '.', '.', '2', 1.50580001, '2008-09-13 18:02:36', 1, 0.0000);
-- --------------------------------------------------------
--
-- Table structure for table `clic_customers`
--
CREATE TABLE `clic_customers` (
`customers_id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each customer',
`customers_company` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Company name for B2B customers',
`customers_siret` varchar(14) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'French SIRET business registration number',
`customers_ape` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'French APE business activity code',
`customers_tva_intracom` varchar(14) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Intra-community VAT number for EU businesses',
`customers_tva_intracom_code_iso` char(2) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'ISO country code for VAT number',
`customers_gender` char(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Customer gender - m: male, f: female, o: other',
`customers_firstname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Customer first name',
`customers_lastname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Customer last name',
`customers_dob` datetime DEFAULT NULL COMMENT 'Customer date of birth',
`customers_email_address` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Customer email address - used for login and communication',
`customers_default_address_id` int DEFAULT NULL COMMENT 'FK to address_book table - default shipping/billing address',
`customers_telephone` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Customer primary phone number',
`customers_password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Hashed customer password',
`customers_newsletter` char(1) COLLATE utf8mb4_unicode_ci DEFAULT '0' COMMENT 'Newsletter subscription - 0: unsubscribed, 1: subscribed',
`languages_id` int NOT NULL DEFAULT '1' COMMENT 'FK to languages table - preferred language',
`customers_group_id` int NOT NULL DEFAULT '0' COMMENT 'FK to customers_groups table - customer group for pricing and access',
`member_level` int NOT NULL DEFAULT '0' COMMENT 'Membership level - 0: standard, higher numbers for premium tiers',
`customers_options_order_taxe` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Tax display preference - 0: exclude tax, 1: include tax in prices',
`customers_modify_company` tinyint(1) NOT NULL DEFAULT '1' COMMENT 'Permission to modify company info - 0: locked, 1: editable',
`customers_modify_address_default` tinyint(1) NOT NULL DEFAULT '1' COMMENT 'Permission to modify default address - 0: locked, 1: editable',
`customers_add_address` tinyint(1) NOT NULL DEFAULT '1' COMMENT 'Permission to add new addresses - 0: disabled, 1: enabled',
`customers_cellular_phone` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Customer mobile phone number',
`customers_email_validation` int NOT NULL DEFAULT '0' COMMENT 'Email validation status - 0: not validated, 1: validated',
`customer_discount` decimal(4,2) NOT NULL DEFAULT '0.00' COMMENT 'Individual customer discount percentage - 0.00 to 99.99',
`client_computer_ip` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Last known IP address - supports IPv4 and IPv6',
`provider_name_client` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Internet service provider name',
`customer_website_company` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Customer company website URL',
`customer_guest_account` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Guest account flag - 0: registered, 1: guest checkout',
`gdpr` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'GDPR consent status - 0: not consented, 1: consented',
`email_verification` tinyint(1) NOT NULL DEFAULT '1' COMMENT 'Email verification requirement - 0: not required, 1: required',
`email_verification_code` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Temporary code for email verification',
`email_verification_expiry` datetime DEFAULT NULL COMMENT 'Expiration timestamp for verification code',
PRIMARY KEY (`customers_id`),
KEY `idx_customers_email_address` (`customers_email_address`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Customer accounts with personal information, preferences, and access control';
-- --------------------------------------------------------
--
-- Table structure for table `clic_customers_basket`
--
CREATE TABLE `clic_customers_basket` (
`customers_basket_id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each basket item',
`customers_id` int NOT NULL COMMENT 'FK to customers table - customer who owns this basket',
`products_id` tinytext COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Product identifier - may include variant information',
`customers_basket_quantity` int DEFAULT NULL COMMENT 'Quantity of this product in the basket',
`final_price` decimal(15,4) DEFAULT NULL COMMENT 'Final calculated price including discounts and options',
`customers_basket_date_added` char(8) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Date when item was added to basket - format YYYYMMDD',
PRIMARY KEY (`customers_basket_id`),
KEY `idx_customers_basket_customers_id` (`customers_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Customer shopping basket items with quantities and pricing';
-- --------------------------------------------------------
--
-- Table structure for table `clic_customers_basket_attributes`
--
CREATE TABLE `clic_customers_basket_attributes` (
`customers_basket_attributes_id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each basket item attribute',
`customers_id` int NOT NULL COMMENT 'FK to customers table - customer who owns this basket',
`products_id` tinytext COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Product identifier - may include variant information',
`products_options_id` int NOT NULL COMMENT 'FK to products_options table - selected product option - e.g. Size, Color',
`products_options_value_id` int NOT NULL COMMENT 'FK to products_options_values table - selected option value - e.g. Large, Red',
PRIMARY KEY (`customers_basket_attributes_id`),
KEY `idx_customers_basket_att_customers_id` (`customers_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Product attributes and options selected for items in customer shopping baskets';
-- --------------------------------------------------------
--
-- Table structure for table `clic_customers_gdpr`
--
CREATE TABLE `clic_customers_gdpr` (
`id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each GDPR preference record',
`customers_id` int NOT NULL COMMENT 'FK to customers table - customer identifier',
`no_ip_address` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'GDPR IP address tracking opt-out - 0: track IP, 1: do not track IP',
`date_added` datetime DEFAULT NULL COMMENT 'Timestamp when GDPR preferences were set',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `clic_customers_groups`
--
CREATE TABLE `clic_customers_groups` (
`customers_group_id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each customer group',
`customers_group_name` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Display name of the customer group - e.g. Wholesale, Retail, VIP',
`customers_group_discount` decimal(11,2) NOT NULL DEFAULT '0.00' COMMENT 'Default discount percentage for this group - 0.00 to 100.00',
`color_bar` varchar(8) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '#FFFFFF' COMMENT 'Hex color code for UI display - e.g. #FF0000 for red',
`group_order_taxe` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Tax application flag - 0: tax excluded, 1: tax included in prices',
`group_payment_unallowed` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT 'cc' COMMENT 'Comma-separated list of disallowed payment methods for this group',
`group_shipping_unallowed` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Comma-separated list of disallowed shipping methods for this group',
`group_tax` varchar(5) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'false' COMMENT 'Tax calculation mode - true: apply tax, false: no tax',
`customers_group_quantity_default` int NOT NULL DEFAULT '0' COMMENT 'Default minimum order quantity for this group',
PRIMARY KEY (`customers_group_id`),
KEY `idx_customers_group_name` (`customers_group_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Customer groups with pricing rules, discounts, and access restrictions' AUTO_INCREMENT=2 ;
--
-- Dumping data for table `clic_customers_groups`
--
INSERT INTO `clic_customers_groups` VALUES
(1, 'Price 1', '5.00', 'FF0000', 0, 'CO', 'IT', 'true', 0);
-- --------------------------------------------------------
--
-- Table structure for table `clic_customers_info`
--
CREATE TABLE `clic_customers_info` (
`customers_info_id` int NOT NULL COMMENT 'FK to customers table - customer identifier, one-to-one relationship',
`customers_info_date_of_last_logon` datetime DEFAULT NULL COMMENT 'Timestamp of customer''s most recent login',
`customers_info_number_of_logons` int DEFAULT NULL COMMENT 'Total count of customer login sessions',
`customers_info_date_account_created` datetime DEFAULT NULL COMMENT 'Timestamp when customer account was created',
`customers_info_date_account_last_modified` datetime DEFAULT NULL COMMENT 'Timestamp of last account modification',
`global_product_notifications` int DEFAULT '0' COMMENT 'Product notification preference - 0: disabled, 1: enabled for all products',
`password_reset_key` char(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Temporary token for password reset - expires after use or timeout',
`password_reset_date` datetime DEFAULT NULL COMMENT 'Timestamp when password reset was requested',
PRIMARY KEY (`customers_info_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Extended customer information including login history and notification preferences';
-- --------------------------------------------------------
--
-- Table structure for table `clic_customers_notes`
--
CREATE TABLE `clic_customers_notes` (
`customers_notes_id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each customer note',
`customers_id` int NOT NULL COMMENT 'FK to customers table - customer this note is about',
`customers_notes` text COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Note content - internal administrative notes about the customer',
`customers_notes_date` datetime DEFAULT NULL COMMENT 'Timestamp when note was created',
`user_administrator` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Administrator username who created this note',
PRIMARY KEY (`customers_notes_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Administrative notes about customers for internal tracking and communication';
-- --------------------------------------------------------
--
-- Table structure for table `clic_dynamic_pricing_history`
--
CREATE TABLE `clic_dynamic_pricing_history` (
`id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each pricing history entry',
`rules_id` int DEFAULT NULL COMMENT 'FK to dynamic_pricing_rules table - rule that was applied',
`products_id` int NOT NULL COMMENT 'FK to products table - product that received dynamic pricing',
`base_price` decimal(10,2) NOT NULL COMMENT 'Original product price before rule application',
`dynamic_price` decimal(10,2) NOT NULL COMMENT 'Final price after rule application',
`rule_applied` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Name or description of the rule that was applied',
`date_added` datetime NOT NULL COMMENT 'Timestamp when dynamic price was calculated and applied',
`source` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Source of price calculation - manual, automatic, scheduled, api',
PRIMARY KEY (`id`),
KEY `idx_products_id` (`products_id`),
KEY `idx_date_added` (`date_added`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `clic_dynamic_pricing_rules`
--
CREATE TABLE `clic_dynamic_pricing_rules` (
`rules_id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each pricing rule',
`rules_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Descriptive name for the pricing rule - e.g. Bulk Discount 10+, Weekend Special',
`rules_condition` text COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Rule condition logic - e.g. quantity > 10, customer_group = wholesale, date_range',
`rules_type` enum('percentage_decrease','percentage_increase','fixed_price') COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Price adjustment type - percentage_decrease: discount %, percentage_increase: markup %, fixed_price: set price',
`rules_value` decimal(15,4) NOT NULL COMMENT 'Adjustment value - percentage or fixed price depending on rules_type',
`rules_priority` int NOT NULL COMMENT 'Rule priority for conflict resolution - higher number = higher priority',
`rules_status` tinyint(1) NOT NULL COMMENT 'Rule status - 0: inactive, 1: active and applying',
`date_added` datetime NOT NULL COMMENT 'Timestamp when rule was created',
`date_modified` datetime DEFAULT NULL COMMENT 'Timestamp of last modification to rule',
`rules_status_special` tinyint(1) NOT NULL COMMENT 'Special pricing flag - 0: regular rule, 1: special/promotional rule',
`customers_group` tinyint(1) NOT NULL COMMENT 'Customer group restriction - 0: all groups, specific ID for group-specific rules',
PRIMARY KEY (`rules_id`),
KEY `idx_rules_id` (`rules_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `clic_geo_zones`
--
CREATE TABLE `clic_geo_zones` (
`geo_zone_id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each geographic zone group',
`geo_zone_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Geographic zone group name - e.g. EU Countries, North America',
`geo_zone_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Detailed description of the geographic zone group',
`last_modified` datetime DEFAULT NULL COMMENT 'Timestamp of last modification',
`date_added` datetime NOT NULL COMMENT 'Timestamp when geographic zone was created',
PRIMARY KEY (`geo_zone_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Geographic zone groups for applying tax and shipping rules to multiple regions' AUTO_INCREMENT=16 ;
--
-- Dumping data for table `clic_geo_zones`
--
INSERT INTO `clic_geo_zones` VALUES
(1, 'France', 'Etat français avec tous les départements', '2016-12-03 11:34:53', '2006-04-11 18:48:30'),
(2, 'Etats membres de l''UE', 'Etats membres de l''union européenne', '2016-12-03 11:34:30', '2006-05-04 10:27:42'),
(3, 'Etats Zones Européennes', 'Tous les états ainsi que les départements', '2016-12-03 11:34:43', '2006-05-04 17:10:19'),
(7, 'Zone fédérale 5% - Canada GST', 'Zone fédérale 5% - GST', '2016-12-03 11:36:00', '2008-09-15 21:48:44'),
(8, 'Zone fédérale 12% HST BC', 'Zone fédérale 12% HST BC', '2016-12-03 11:35:19', '2008-09-15 21:49:02'),
(9, 'Zone Provinciale', 'Canada (québec)', '2016-12-03 11:36:16', '2008-09-15 21:51:15'),
(11, 'Zone fédérale 13% - NB / NF /', 'Zone fédérale 13%', '2016-12-03 11:35:31', '2015-02-09 16:05:34'),
(12, 'Zone fédérale 14%', 'Zone fédérale 14%', '2016-12-03 11:35:41', '2015-02-09 16:07:02'),
(13, 'Zone fédérale 15% - NS HST', 'Zone fédérale 15% - HST', '2016-12-03 11:35:50', '2015-02-09 16:07:53'),
(14, 'Zone fédérale 7%', 'Zone fédérale 7%', '2016-12-03 11:36:09', '2015-02-09 16:11:43'),
(15, 'Taxe hamonisée Québec', 'Taxe hamonisée Québec', '2016-12-03 11:35:05', '2015-02-09 16:59:28');
-- --------------------------------------------------------
--
-- Table structure for table `clic_gpt`
--
CREATE TABLE `clic_gpt` (
`gpt_id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each GPT interaction',
`question` text COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'User question or prompt sent to GPT model',
`response` text COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'GPT model response text',
`date_added` date DEFAULT NULL COMMENT 'Timestamp when the interaction was recorded',
`user_admin` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Administrator username who initiated the interaction - null for system-generated',
`audit_data` json DEFAULT NULL COMMENT 'Audit trail data - may include model, temperature, tokens, execution time',
PRIMARY KEY (`gpt_id`),
KEY `idx_gpt_id` (`gpt_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `clic_gpt_usage`
--
CREATE TABLE `clic_gpt_usage` (
`usage_id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each usage record',
`gpt_id` int DEFAULT NULL COMMENT 'FK to gpt table - references the GPT interaction this usage record belongs to',
`promptTokens` int DEFAULT NULL COMMENT 'Number of tokens in the prompt sent to the model',
`completionTokens` int DEFAULT NULL COMMENT 'Number of tokens in the completion response from the model',
`totalTokens` int DEFAULT NULL COMMENT 'Total tokens used - sum of prompt and completion tokens',
`ia_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'AI type - gpt-4, gpt-3.5-turbo, claude, ollama, etc',
`model` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Specific model version - gpt-4-turbo, gpt-3.5-turbo-16k, etc',
`date_added` date DEFAULT NULL COMMENT 'Timestamp when the usage was recorded',
PRIMARY KEY (`usage_id`),
KEY `idx_usage_id` (`usage_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `clic_groups_to_categories`
--
CREATE TABLE `clic_groups_to_categories` (
`customers_group_id` int NOT NULL DEFAULT '0' COMMENT 'FK to customers_groups table - customer group identifier',
`categories_id` int NOT NULL DEFAULT '0' COMMENT 'FK to categories table - category identifier',
`discount` decimal(11,2) NOT NULL DEFAULT '0.00' COMMENT 'Discount percentage for this customer group on this category - e.g. 10.00 for 10% off',
PRIMARY KEY (`customers_group_id`,`categories_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `clic_information_email_customers`
--
CREATE TABLE `clic_information_email_customers` (
`information_email_customers_id` int NOT NULL COMMENT 'FK to customers table - customer identifier for email notification preferences',
`information_email_customers_delay_90` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Send notification 90 days after last activity - 0: no, 1: yes',
`information_email_customers_delay_60` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Send notification 60 days after last activity - 0: no, 1: yes',
`information_email_customers_delay_30` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Send notification 30 days after last activity - 0: no, 1: yes',
`information_email_customers_delay_15` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Send notification 15 days after last activity - 0: no, 1: yes',
`information_email_customers_delay_7` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Send notification 7 days after last activity - 0: no, 1: yes',
PRIMARY KEY (`information_email_customers_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `clic_ip_restriction`
--
CREATE TABLE `clic_ip_restriction` (
`id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each IP restriction rule',
`ip_restriction` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'IP address or CIDR range to restrict - supports wildcards',
`ip_comment` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Administrative note about why this IP is restricted',
`ip_status_shop` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Shop access restriction - 0: allowed, 1: blocked',
`ip_status_admin` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Admin access restriction - 0: allowed, 1: blocked',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `clic_ip_restriction_stats`
--
CREATE TABLE `clic_ip_restriction_stats` (
`id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each blocked access attempt',
`ip_remote` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'IP address that attempted access and was blocked',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `clic_languages`
--
CREATE TABLE `clic_languages` (
`languages_id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each language',
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Full language name - e.g. English, Français, Español',
`code` char(2) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'ISO 639-1 two-letter language code - e.g. en, fr, es',
`image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Path to language flag icon image',
`directory` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Directory name for language files',
`sort_order` int DEFAULT NULL COMMENT 'Display order for language selection',
`status` tinyint(1) NOT NULL DEFAULT '1' COMMENT 'Language status - 0: inactive, 1: active for selection',
`locale` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'System locale identifier - e.g. en_US.UTF-8, fr_FR.UTF-8',
PRIMARY KEY (`languages_id`),
KEY `idx_languages_name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Available languages for multi-language support' AUTO_INCREMENT=3 ;
--
-- Dumping data for table `clic_languages`
--
INSERT INTO `clic_languages` VALUES
(1, 'Anglais', 'en', 'gb', 'english', 1, 1, 'en_US.UTF-8;en_US.UTF8;enu_usa'),
(2, 'Francais', 'fr', 'fr', 'french', 2, 1, 'fr_FR.UTF-8;fr_FR.UTF8;enu_fra');
-- --------------------------------------------------------
--
-- Table structure for table `clic_languages_definitions`
--
CREATE TABLE `clic_languages_definitions` (
`id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each language definition',
`languages_id` int unsigned NOT NULL COMMENT 'FK to languages table - language identifier',
`content_group` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Grouping category for related definitions - e.g. admin, shop, errors',
`definition_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Unique key for the translation string',
`definition_value` text COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Translated text value for this key in this language',
PRIMARY KEY (`id`),
KEY `idx_languages_definitions_languages_id` (`languages_id`),
KEY `idx_languages_definitions_groups` (`content_group`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `clic_manufacturers`
--
CREATE TABLE `clic_manufacturers` (
`manufacturers_id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each manufacturer',
`manufacturers_name` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Manufacturer name or brand name',
`manufacturers_image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Path to manufacturer logo or image file',
`date_added` datetime DEFAULT NULL COMMENT 'Timestamp when manufacturer was created',
`last_modified` datetime DEFAULT NULL COMMENT 'Timestamp of last modification to manufacturer',
`manufacturers_status` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Manufacturer status - 0: inactive, 1: active and visible',
`suppliers_id` int NOT NULL DEFAULT '0' COMMENT 'FK to suppliers table - primary supplier for this manufacturer, 0: no supplier',
PRIMARY KEY (`manufacturers_id`),
KEY `idx_manufacturers_name` (`manufacturers_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=6 ;
--
-- Dumping data for table `clic_manufacturers`
--
INSERT INTO `clic_manufacturers` VALUES
(1, 'Duralex', '', '2023-04-30 14:34:30', NULL, 0, 0),
(2, 'Danica Heirloom', '', '2023-04-30 14:41:33', NULL, 0, 0),
(3, 'Trudeau', '', '2023-04-30 14:53:21', NULL, 0, 0),
(4, 'ZWILLING', '', '2023-04-30 15:02:20', NULL, 0, 0),
(5, 'Josef Strauss', '', '2023-04-30 15:07:08', NULL, 0, 0);
-- --------------------------------------------------------
--
-- Table structure for table `clic_manufacturers_info`
--
CREATE TABLE `clic_manufacturers_info` (
`manufacturers_id` int NOT NULL COMMENT 'FK to manufacturers table - manufacturer identifier',
`languages_id` int NOT NULL COMMENT 'FK to languages table - language for this translation',
`manufacturers_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Manufacturer website URL for this language',
`url_clicked` int NOT NULL DEFAULT '0' COMMENT 'Click count for manufacturer URL tracking',
`date_last_click` datetime DEFAULT NULL COMMENT 'Timestamp of last click on manufacturer URL',
`manufacturer_description` text COLLATE utf8mb4_unicode_ci COMMENT 'Translated description of the manufacturer',
`manufacturer_seo_title` text COLLATE utf8mb4_unicode_ci COMMENT 'SEO meta title tag for manufacturer page',
`manufacturer_seo_description` text COLLATE utf8mb4_unicode_ci COMMENT 'SEO meta description tag for manufacturer page',
`manufacturer_seo_keyword` text COLLATE utf8mb4_unicode_ci COMMENT 'SEO meta keywords tag for manufacturer page',
PRIMARY KEY (`manufacturers_id`,`languages_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `clic_manufacturers_info`
--
INSERT INTO `clic_manufacturers_info` VALUES
(1, 1, '', 0, NULL, NULL, NULL, NULL, NULL),
(1, 2, '', 0, NULL, NULL, NULL, NULL, NULL),
(2, 1, '', 0, NULL, NULL, NULL, NULL, NULL),
(2, 2, '', 0, NULL, NULL, NULL, NULL, NULL),
(3, 1, '', 0, NULL, NULL, NULL, NULL, NULL),
(3, 2, '', 0, NULL, NULL, NULL, NULL, NULL),
(4, 1, '', 0, NULL, NULL, NULL, NULL, NULL),
(4, 2, '', 0, NULL, NULL, NULL, NULL, NULL),
(5, 1, '', 0, NULL, NULL, NULL, NULL, NULL),
(5, 2, '', 0, NULL, NULL, NULL, NULL, NULL);
-- --------------------------------------------------------
--
-- Table structure for table `clic_marketplace_categories`
--
CREATE TABLE `clic_marketplace_categories` (
`id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each marketplace category',
`categories_id` int NOT NULL COMMENT 'Marketplace category identifier from external marketplace',
`parent_id` int NOT NULL DEFAULT '0' COMMENT 'FK to marketplace_categories.id - parent category for hierarchical structure, 0 for top-level',
`categories_name` text COLLATE utf8mb4_unicode_ci COMMENT 'Name of the marketplace category',
`url` text COLLATE utf8mb4_unicode_ci COMMENT 'URL to the marketplace category page',
`date_added` date DEFAULT NULL COMMENT 'Date when category was added to local database',
`date_modified` date DEFAULT NULL COMMENT 'Date when category was last modified',
`sort_order` int DEFAULT '0' COMMENT 'Display order of categories within same parent level',
PRIMARY KEY (`id`),
KEY `idx_parent_id` (`parent_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `clic_marketplace_files`
--
CREATE TABLE `clic_marketplace_files` (
`id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each marketplace file',
`file_id` int NOT NULL COMMENT 'External marketplace file identifier',
`file_categories_id` int NOT NULL COMMENT 'FK to marketplace_categories table - category this file belongs to',
`file_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Name of the marketplace file or extension',
`file_url` text COLLATE utf8mb4_unicode_ci COMMENT 'URL to the file page on marketplace',
`file_description` text COLLATE utf8mb4_unicode_ci COMMENT 'Description of what the file does or provides',
`file_author` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Author or developer name who created the file',
`file_photo_url` text COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'URL to author photo or file icon',
`file_profil_url` text COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'URL to author profile page on marketplace',
`date_added` date DEFAULT NULL COMMENT 'Date when file was added to local database',
`date_modified` date DEFAULT NULL COMMENT 'Date when file record was last modified',
PRIMARY KEY (`id`),
KEY `idx_file_id` (`file_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `clic_marketplace_file_informations`
--
CREATE TABLE `clic_marketplace_file_informations` (
`id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each marketplace file record',
`file_id` int NOT NULL COMMENT 'FK to marketplace_files table - file identifier',
`file_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Name of the marketplace file or extension',
`date_created` date DEFAULT NULL COMMENT 'Date when file was originally created by author',
`date_updated` date DEFAULT NULL COMMENT 'Date when file was last updated by author',
`file_version` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Version number of the file - e.g. 1.0.0, 2.3.1',
`file_downloads` int NOT NULL COMMENT 'Total number of downloads for this file',
`file_rating` int NOT NULL COMMENT 'Average rating score for this file',
`file_prices` decimal(15,4) DEFAULT NULL COMMENT 'Price of the file in marketplace currency - NULL for free files',
`file_date_added` date DEFAULT NULL COMMENT 'Date when file was added to marketplace',
`file_url_screenshot` text COLLATE utf8mb4_unicode_ci COMMENT 'URL to screenshot or preview image of the file',
`file_url_download` text COLLATE utf8mb4_unicode_ci COMMENT 'URL to download the file from marketplace',
`is_installed` tinyint NOT NULL DEFAULT '0' COMMENT 'Installation status - 0: not installed, 1: installed locally',
PRIMARY KEY (`id`),
KEY `index_file_id` (`file_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `clic_mcp`
--
CREATE TABLE `clic_mcp` (
`mcp_id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each MCP server configuration',
`username` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'MCP username for authentication',
`mcp_key` text COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'MCP authentication key - should be securely stored',
`status` tinyint(1) NOT NULL COMMENT 'MCP server status - 0: disabled, 1: enabled',
`date_added` datetime NOT NULL COMMENT 'Timestamp when MCP configuration was created',
`date_modified` datetime DEFAULT NULL COMMENT 'Timestamp of last modification',
`select_data` tinyint(1) NOT NULL COMMENT 'Permission to read data - 0: denied, 1: allowed',
`update_data` tinyint(1) NOT NULL COMMENT 'Permission to update data - 0: denied, 1: allowed',
`create_data` tinyint(1) NOT NULL COMMENT 'Permission to create data - 0: denied, 1: allowed',
`delete_data` tinyint(1) NOT NULL COMMENT 'Permission to delete data - 0: denied, 1: allowed',
`create_db` tinyint(1) NOT NULL COMMENT 'Permission to create databases - 0: denied, 1: allowed',
`server_host` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'localhost' COMMENT 'MCP server hostname or IP address',
`server_port` int NOT NULL COMMENT 'MCP server port number - default 3000',
`ssl_enabled` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'SSL/TLS encryption - 0: disabled, 1: enabled',
`alert_threshold` int DEFAULT '20' COMMENT 'Number of errors before triggering alert',
`latency_threshold` int DEFAULT '1000' COMMENT 'Maximum acceptable latency in milliseconds',
`downtime_threshold` int DEFAULT '300' COMMENT 'Maximum acceptable downtime in seconds',
`data_retention` int DEFAULT '7' COMMENT 'Data retention period in days',
`alert_notification` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Alert notifications - 0: disabled, 1: enabled',
PRIMARY KEY (`mcp_id`),
KEY `idx_mcp_id` (`mcp_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Model Context Protocol server configurations for AI agent communication' AUTO_INCREMENT=2 ;
--
-- Dumping data for table `clic_mcp`
--
INSERT INTO `clic_mcp` VALUES
(1, 'RagBI', 'd0a36b839700b60727fe13998e22aa0af197c61d8b371e26114c133ca51c4864bd0da73ad6d1e5090b02b55cff42b8a0cd23866e64e78fc8884eb6228d32f5e9d76bed468869dd89ee6bb8a3208c5077e88560d0bc238f67cfc732efcf5313a0cb361e297c29c8d82d050d770ed7dee972af6445e801fa9af12e3d478bf5346a', 1, '2025-10-05 13:02:04', NULL, 1, 0, 0, 0, 0, 'localhost', 3001, 0, 20, 1000, 300, 7, 0);
-- --------------------------------------------------------
--
-- Table structure for table `clic_mcp_alerts`
--
CREATE TABLE `clic_mcp_alerts` (
`id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each alert entry',
`alert_type` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Type of alert - error, warning, performance, security, or downtime',
`message` text COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Alert message describing the issue or event',
`alert_timestamp` datetime NOT NULL COMMENT 'Timestamp when the alert was generated',
`severity_level` int NOT NULL COMMENT 'Severity level - 1: low, 2: medium, 3: high, 4: critical',
`context` text COLLATE utf8mb4_unicode_ci COMMENT 'Additional context data about the alert - JSON format with details',
PRIMARY KEY (`id`),
KEY `idx_alert_timestamp` (`alert_timestamp`),
KEY `idx_severity` (`severity_level`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `clic_mcp_failed_attempts`
--
CREATE TABLE `clic_mcp_failed_attempts` (
`id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each failed attempt record',
`identifier` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Identifier being tracked - typically MCP key, username, or IP address',
`attempts` int DEFAULT NULL COMMENT 'Number of consecutive failed authentication attempts',
`last_attempt` int NOT NULL COMMENT 'Unix timestamp of the most recent failed attempt',
PRIMARY KEY (`id`),
KEY `idx_identifier` (`identifier`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `clic_mcp_ip`
--
CREATE TABLE `clic_mcp_ip` (
`mcp_ip_id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each MCP IP whitelist entry',
`mcp_id` int NOT NULL COMMENT 'FK to mcp table - MCP configuration this IP is allowed for',
`ip` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Whitelisted IP address - IPv4 or IPv6 format',
`comment` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Optional description of this IP whitelist entry',
PRIMARY KEY (`mcp_ip_id`),
KEY `idx_mcp_ip_id` (`mcp_ip_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='IP address whitelist for MCP server access control and security' AUTO_INCREMENT=2 ;
--
-- Dumping data for table `clic_mcp_ip`
--
INSERT INTO `clic_mcp_ip` VALUES
(1, 1, '127.0.0.1', 'localhost');
-- --------------------------------------------------------
--
-- Table structure for table `clic_mcp_performance_history`
--
CREATE TABLE `clic_mcp_performance_history` (
`id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each performance history entry',
`timestamp` int NOT NULL COMMENT 'Unix timestamp when the performance metrics were recorded',
`request_rate` decimal(10,2) NOT NULL COMMENT 'Number of requests per second during this period',
`average_latency` decimal(10,2) NOT NULL COMMENT 'Average response latency in milliseconds',
`error_frequency` decimal(5,2) NOT NULL COMMENT 'Percentage of requests that resulted in errors - 0.00 to 100.00',
`uptime_percentage` decimal(5,2) NOT NULL COMMENT 'Server uptime percentage during this period - 0.00 to 100.00',
`total_requests` int NOT NULL COMMENT 'Total number of requests processed during this period',
`created_at` datetime NOT NULL COMMENT 'Timestamp when this record was created',
PRIMARY KEY (`id`),
KEY `idx_timestamp` (`timestamp`),
KEY `idx_created_at` (`created_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `clic_mcp_rate_limit`
--
CREATE TABLE `clic_mcp_rate_limit` (
`id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each rate limit entry',
`identifier` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Identifier for rate limiting - typically MCP key or IP address',
`timestamp` int DEFAULT NULL COMMENT 'Unix timestamp of the request for rate limit tracking',
`ip` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'IP address of the requester - IPv4 or IPv6 format',
PRIMARY KEY (`id`),
KEY `idx_identifier` (`identifier`),
KEY `idx_timestamp` (`timestamp`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `clic_mcp_session`
--
CREATE TABLE `clic_mcp_session` (
`mcp_session_id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each MCP session',
`mcp_id` int NOT NULL COMMENT 'FK to mcp table - MCP configuration this session belongs to',
`session_id` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Unique session identifier - generated token for session tracking',
`ip` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'IP address of the session - IPv4 or IPv6 format',
`date_added` datetime NOT NULL COMMENT 'Timestamp when the session was created',
`date_modified` datetime NOT NULL COMMENT 'Timestamp of last session activity',
PRIMARY KEY (`mcp_session_id`),
KEY `idx_mcp_session_id` (`mcp_session_id`),
KEY `idx_mcp_id` (`mcp_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `clic_newsletters`
--
CREATE TABLE `clic_newsletters` (
`newsletters_id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each newsletter',
`title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Newsletter title or subject line',
`content` text COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Newsletter content - HTML or plain text',
`module` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Newsletter module used for sending - email, mailchimp, etc',
`date_added` datetime NOT NULL COMMENT 'Timestamp when newsletter was created',
`date_sent` datetime DEFAULT NULL COMMENT 'Timestamp when newsletter was sent - null if not yet sent',
`status` int DEFAULT NULL COMMENT 'Newsletter status - 0: draft, 1: sent, 2: scheduled',
`locked` int DEFAULT '0' COMMENT 'Edit lock - 0: unlocked, 1: locked to prevent changes',
`languages_id` int NOT NULL DEFAULT '0' COMMENT 'FK to languages table - newsletter language, 0: all languages',
`customers_group_id` int NOT NULL DEFAULT '0' COMMENT 'FK to customers_groups table - target customer group, 0: all groups',
`newsletters_accept_file` int NOT NULL DEFAULT '0' COMMENT 'File attachment - 0: no attachment, 1: includes file attachment',
`newsletters_twitter` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Social media post - 0: email only, 1: also post to Twitter/social',
`newsletters_customer_no_account` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Include non-customers - 0: customers only, 1: include newsletter subscribers without accounts',
PRIMARY KEY (`newsletters_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `clic_newsletters_customers_temp`
--
CREATE TABLE `clic_newsletters_customers_temp` (
`customers_firstname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'First name of temporary newsletter subscriber',
`customers_lastname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Last name of temporary newsletter subscriber',
`customers_email_address` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Email address for newsletter subscription - temporary storage before confirmation'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `clic_orders`
--
CREATE TABLE `clic_orders` (
`orders_id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each order',
`customers_id` int NOT NULL COMMENT 'FK to customers table - customer who placed the order',
`customers_name` text COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Customer full name at time of order',
`customers_company` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Customer company name for B2B orders',
`customers_siret` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'French SIRET business registration number',
`customers_ape` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'French APE business activity code',
`customers_tva_intracom` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Intra-community VAT number for EU businesses',
`customers_street_address` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Customer billing street address',
`customers_suburb` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Customer billing suburb or district',
`customers_city` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Customer billing city',
`customers_postcode` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Customer billing postal code',
`customers_state` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Customer billing state or province',
`customers_country` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Customer billing country',
`customers_telephone` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Customer contact phone number',
`customers_email_address` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Customer email address for order communication',
`customers_address_format_id` int NOT NULL COMMENT 'FK to address_format table - format for displaying customer address',
`delivery_name` text COLLATE utf8mb4_unicode_ci COMMENT 'Delivery recipient name - may differ from customer name',
`delivery_company` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Delivery company name',
`delivery_street_address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Delivery street address',
`delivery_suburb` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Delivery suburb or district',
`delivery_city` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Delivery city',
`delivery_postcode` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Delivery postal code',
`delivery_state` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Delivery state or province',
`delivery_country` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Delivery country',
`delivery_address_format_id` int DEFAULT NULL COMMENT 'FK to address_format table - format for displaying delivery address',
`billing_name` text COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Billing recipient name',
`billing_company` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Billing company name',
`billing_cf` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Italian Codice Fiscale tax code',
`billing_piva` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Italian Partita IVA VAT number',
`billing_street_address` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Billing street address',
`billing_suburb` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Billing suburb or district',
`billing_city` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Billing city',
`billing_postcode` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Billing postal code',
`billing_state` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Billing state or province',
`billing_country` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Billing country',
`billing_address_format_id` int NOT NULL COMMENT 'FK to address_format table - format for displaying billing address',
`payment_method` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Payment method used - credit_card, paypal, bank_transfer, etc',
`cc_type` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Credit card type - visa, mastercard, amex, etc',
`cc_owner` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Credit card owner name',
`cc_number` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Encrypted credit card number - last 4 digits only',
`cc_expires` varchar(4) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Credit card expiration date - MMYY format',
`last_modified` datetime DEFAULT NULL COMMENT 'Timestamp of last order modification',
`date_purchased` datetime DEFAULT NULL COMMENT 'Timestamp when order was placed',
`orders_status` int NOT NULL COMMENT 'FK to orders_status table - current order status',
`orders_status_invoice` int NOT NULL COMMENT 'FK to orders_status_invoice table - invoice status',
`orders_date_finished` datetime DEFAULT NULL COMMENT 'Timestamp when order was completed or delivered',
`currency` char(3) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Currency code used for order - ISO 4217 format USD, EUR, GBP',
`currency_value` decimal(14,6) DEFAULT NULL COMMENT 'Exchange rate at time of order for currency conversion',
`customers_group_id` int NOT NULL DEFAULT '0' COMMENT 'FK to customers_groups table - customer group at time of order',
`client_computer_ip` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'IP address of customer when order was placed - IPv4 or IPv6',
`provider_name_client` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Internet service provider of customer',
`customers_cellular_phone` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Customer mobile phone number',
`orders_archive` int NOT NULL DEFAULT '0' COMMENT 'Archive status - 0: active, 1: archived',
`erp_invoice` int NOT NULL DEFAULT '0' COMMENT 'ERP invoice status - 0: not invoiced, 1: invoiced in ERP system',
PRIMARY KEY (`orders_id`),
KEY `idx_orders_customers_id` (`customers_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `clic_orders_pages_manager`
--
CREATE TABLE `clic_orders_pages_manager` (
`orders_page_manager_id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each order-page association',
`orders_id` int NOT NULL COMMENT 'FK to orders table - order identifier',
`customers_id` int NOT NULL COMMENT 'FK to customers table - customer who accepted the terms',
`page_manager_general_condition` longtext COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Copy of general conditions/terms that customer accepted with this order',
PRIMARY KEY (`orders_page_manager_id`,`orders_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `clic_orders_products`
--
CREATE TABLE `clic_orders_products` (
`orders_products_id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each order line item',
`orders_id` int NOT NULL COMMENT 'FK to orders table - order this product belongs to',
`products_id` int NOT NULL COMMENT 'FK to products table - product that was ordered',
`products_model` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Product model or SKU at time of order',
`products_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Product name at time of order - preserved for historical accuracy',
`products_price` decimal(15,4) NOT NULL COMMENT 'Base product price at time of order before tax',
`final_price` decimal(15,4) NOT NULL COMMENT 'Final product price at time of order after discounts before tax',
`products_tax` decimal(7,4) NOT NULL COMMENT 'Tax rate applied to this product - percentage as decimal',
`products_quantity` int NOT NULL COMMENT 'Quantity of this product ordered',
PRIMARY KEY (`orders_products_id`),
KEY `idx_orders_products_orders_id` (`orders_id`),
KEY `idx_orders_products_products_id` (`products_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `clic_orders_products_attributes`
--
CREATE TABLE `clic_orders_products_attributes` (
`orders_products_attributes_id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each order product attribute',
`orders_id` int NOT NULL COMMENT 'FK to orders table - order this attribute belongs to',
`orders_products_id` int NOT NULL COMMENT 'FK to orders_products table - order line item with this attribute',
`products_options` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Option name at time of order - e.g. Size, Color',
`products_options_values` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Option value at time of order - e.g. Large, Red',
`options_values_price` decimal(15,4) NOT NULL COMMENT 'Price adjustment for this attribute at time of order',
`price_prefix` char(1) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Price modifier - + to add, - to subtract from base price',
`products_attributes_reference` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Attribute reference code or SKU suffix at time of order',
PRIMARY KEY (`orders_products_attributes_id`),
KEY `idx_orders_products_att_orders_id` (`orders_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `clic_orders_products_download`
--
CREATE TABLE `clic_orders_products_download` (
`orders_products_download_id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each downloadable product in order',
`orders_id` int NOT NULL DEFAULT '0' COMMENT 'FK to orders table - order containing downloadable product',
`orders_products_id` int NOT NULL DEFAULT '0' COMMENT 'FK to orders_products table - order line item that is downloadable',
`orders_products_filename` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'Filename of downloadable product',
`download_maxdays` int NOT NULL DEFAULT '0' COMMENT 'Maximum days customer has to download - 0 for unlimited',
`download_count` int NOT NULL DEFAULT '0' COMMENT 'Number of times customer has downloaded this file',
PRIMARY KEY (`orders_products_download_id`),
KEY `idx_orders_products_download_orders_id` (`orders_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `clic_orders_status`
--
CREATE TABLE `clic_orders_status` (
`orders_status_id` int NOT NULL DEFAULT '0' COMMENT 'Primary key - unique identifier for each order status',
`language_id` int NOT NULL DEFAULT '1' COMMENT 'FK to languages table - language for this status name',
`orders_status_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Status name - e.g. Pending, Processing, Shipped, Delivered, Cancelled',
`public_flag` tinyint(1) DEFAULT '1' COMMENT 'Public visibility - 0: admin only, 1: visible to customers',
`downloads_flag` tinyint(1) DEFAULT '0' COMMENT 'Enable downloads - 0: no downloads, 1: allow digital product downloads',
`support_orders_flag` tinyint(1) DEFAULT '0' COMMENT 'Support ticket flag - 0: no support, 1: enable support tickets for this status',
`authorize_to_delete_order` tinyint(1) DEFAULT '1' COMMENT 'Deletion permission - 0: cannot delete, 1: can delete orders with this status',
PRIMARY KEY (`orders_status_id`,`language_id`),
KEY `idx_orders_status_name` (`orders_status_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `clic_orders_status`
--
INSERT INTO `clic_orders_status` VALUES
(1, 1, 'Pending', 1, 0, 0, 1),
(1, 2, 'En instance', 1, 0, 0, 1),
(2, 1, 'processing', 1, 0, 0, 1),
(2, 2, 'Traitement en cours', 1, 0, 0, 1),
(3, 1, 'Delivered', 1, 0, 0, 0),
(3, 2, 'Livré', 1, 0, 0, 0),
(4, 1, 'Cancelled', 1, 0, 0, 1),
(4, 2, 'Annulé', 1, 0, 0, 1);
-- --------------------------------------------------------
--
-- Table structure for table `clic_orders_status_history`
--
CREATE TABLE `clic_orders_status_history` (
`orders_status_history_id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each status history entry',
`orders_id` int NOT NULL COMMENT 'FK to orders table - order this history entry belongs to',
`orders_status_id` int NOT NULL COMMENT 'FK to orders_status table - new status that was set',
`orders_status_invoice_id` int NOT NULL DEFAULT '1' COMMENT 'FK to orders_status_invoice table - invoice status at this time',
`admin_user_name` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Administrator username who changed the status',
`date_added` datetime NOT NULL COMMENT 'Timestamp when status was changed',
`customer_notified` int NOT NULL DEFAULT '0' COMMENT 'Customer notification flag - 0: not notified, 1: customer was notified',
`comments` text COLLATE utf8mb4_unicode_ci COMMENT 'Admin comments about the status change',
`orders_status_tracking_id` int NOT NULL DEFAULT '0' COMMENT 'FK to orders_status_tracking table - shipping carrier for tracking',
`orders_tracking_number` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Shipping tracking number',
`orders_status_support_id` int NOT NULL DEFAULT '0' COMMENT 'FK to orders_status_support table - support ticket status',
`evidence` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Evidence file or reference for status change',
PRIMARY KEY (`orders_status_history_id`),
KEY `idx_orders_status_history_orders_id` (`orders_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `clic_orders_status_invoice`
--
CREATE TABLE `clic_orders_status_invoice` (
`orders_status_invoice_id` int NOT NULL DEFAULT '0' COMMENT 'Primary key - unique identifier for each invoice status',
`language_id` int NOT NULL DEFAULT '1' COMMENT 'FK to languages table - language for status name',
`orders_status_invoice_name` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Invoice status name - e.g. Not Invoiced, Invoiced, Paid, Overdue',
PRIMARY KEY (`orders_status_invoice_id`,`language_id`),
KEY `idx_orders_status_invoice_name` (`orders_status_invoice_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `clic_orders_status_invoice`
--
INSERT INTO `clic_orders_status_invoice` VALUES
(3, 2, 'Annuler'),
(4, 2, 'Avoir'),
(3, 1, 'Cancelled'),
(1, 2, 'Commande'),
(2, 2, 'Facture'),
(4, 1, 'Have a bill'),
(2, 1, 'Invoice'),
(1, 1, 'Order');
-- --------------------------------------------------------
--
-- Table structure for table `clic_orders_status_support`
--
CREATE TABLE `clic_orders_status_support` (
`orders_status_support_id` int NOT NULL DEFAULT '0' COMMENT 'Primary key - unique identifier for each support status',
`language_id` int NOT NULL DEFAULT '1' COMMENT 'FK to languages table - language for status name',
`orders_status_support_name` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Support status name - e.g. No Support, Open, In Progress, Resolved, Closed',
PRIMARY KEY (`orders_status_support_id`,`language_id`),
KEY `idx_orders_status_support_name` (`orders_status_support_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `clic_orders_status_support`
--
INSERT INTO `clic_orders_status_support` VALUES
(1, 2, '-- Aucune demande --'),
(1, 1, '-- No request --'),
(2, 2, 'Demande de support'),
(4, 1, 'Support realised'),
(2, 1, 'Support request'),
(4, 2, 'Support terminé'),
(3, 1, 'Support Treatment'),
(3, 2, 'Traitement du support');
-- --------------------------------------------------------
--
-- Table structure for table `clic_orders_total`
--
CREATE TABLE `clic_orders_total` (
`orders_total_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each order total line',
`orders_id` int NOT NULL COMMENT 'FK to orders table - order this total line belongs to',
`title` text COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Display title for this total line - e.g. Subtotal, Tax, Shipping, Total',
`text` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Formatted text value for display - e.g. $10.00, Free Shipping',
`value` decimal(15,4) NOT NULL COMMENT 'Numeric value for calculations',
`class` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Total module class name - identifies the type of total',
`sort_order` int NOT NULL COMMENT 'Display order for total lines - subtotal first, grand total last',
PRIMARY KEY (`orders_total_id`),
KEY `idx_orders_total_orders_id` (`orders_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `clic_pages_manager`
--
CREATE TABLE `clic_pages_manager` (
`pages_id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each page',
`links_target` varchar(6) COLLATE utf8mb4_unicode_ci DEFAULT '_self' COMMENT 'Link target attribute - _self: same window, _blank: new window',
`sort_order` int DEFAULT NULL COMMENT 'Display order of pages in navigation',
`status` int NOT NULL DEFAULT '1' COMMENT 'Page status - 0: disabled, 1: enabled',
`page_type` int NOT NULL DEFAULT '0' COMMENT 'Page type - 0: standard, 1: popup, 2: modal',
`page_box` int NOT NULL DEFAULT '0' COMMENT 'Display in box - 0: no, 1: yes',
`page_time` varchar(4) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Time-based display control - HHMM format',
`page_date_start` datetime DEFAULT NULL COMMENT 'Start date for page visibility',
`page_date_closed` datetime DEFAULT NULL COMMENT 'End date for page visibility',
`date_added` datetime NOT NULL COMMENT 'Timestamp when page was created',
`last_modified` datetime DEFAULT NULL COMMENT 'Timestamp of last modification',
`date_status_change` datetime DEFAULT NULL COMMENT 'Timestamp when status was last changed',
`customers_group_id` int NOT NULL DEFAULT '0' COMMENT 'FK to customers_groups table - which customer group can see this page, 0 for all',
`page_general_condition` int NOT NULL DEFAULT '0' COMMENT 'General conditions page flag - 0: regular page, 1: terms and conditions page',
PRIMARY KEY (`pages_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=17 ;
--
-- Dumping data for table `clic_pages_manager`
--
INSERT INTO `clic_pages_manager` VALUES
(1, '', 0, 1, 1, 0, '', NULL, NULL, '1000-01-01 00:00:00', '2008-09-08 15:39:50', '2008-09-03 20:38:09', 0, 0),
(2, '', 1, 1, 2, 0, '0', NULL, NULL, '1000-01-01 00:00:00', '2018-11-23 18:13:03', NULL, 0, 0),
(3, '', 2, 1, 3, 0, '', NULL, NULL, '1000-01-01 00:00:00', NULL, NULL, 0, 0),
(4, '_self', 3, 1, 4, 0, '', NULL, NULL, '1000-01-01 00:00:00', '2014-02-07 20:14:00', NULL, 0, 1),
(5, '', 4, 1, 4, 0, '', NULL, NULL, '1000-01-01 00:00:00', '2008-09-16 14:55:26', NULL, 0, 0),
(7, '_self', 5, 1, 4, 0, '0', NULL, NULL, '2008-09-02 10:36:53', '2018-07-27 20:39:03', NULL, 0, 0),
(8, '_self', 6, 1, 4, 0, '0', NULL, NULL, '2008-09-16 14:48:16', '2018-07-27 20:39:29', NULL, 0, 0),
(10, '_self', 8, 1, 5, 3, '0', NULL, NULL, '2018-07-27 20:40:45', NULL, NULL, 0, 0),
(11, '_self', 9, 1, 5, 3, '0', NULL, NULL, '2018-07-27 20:41:34', '2018-07-27 20:45:22', NULL, 0, 0),
(13, '_self', 10, 1, 5, 3, '0', NULL, NULL, '2018-12-19 11:04:35', NULL, NULL, 99, 0),
(14, '_self', 11, 1, 5, 3, '0', NULL, NULL, '2018-12-19 11:06:23', '2018-12-19 11:07:11', NULL, 99, 0),
(15, '_self', 1, 1, 5, 3, '0', NULL, NULL, '2018-07-31 09:23:54', NULL, NULL, 99, 0),
(16, '_self', 12, 1, 5, 3, '0', NULL, NULL, '2018-07-31 09:23:54', NULL, NULL, 99, 0);
-- --------------------------------------------------------
--
-- Table structure for table `clic_pages_manager_description`
--
CREATE TABLE `clic_pages_manager_description` (
`pages_id` int NOT NULL DEFAULT '0' COMMENT 'FK to pages_manager table - page identifier',
`pages_title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Translated page title',
`pages_html_text` longtext COLLATE utf8mb4_unicode_ci COMMENT 'HTML content of the page',
`externallink` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'External URL if page links to external content',
`language_id` int NOT NULL DEFAULT '1' COMMENT 'FK to languages table - language for this translation',
`page_manager_head_title_tag` text COLLATE utf8mb4_unicode_ci COMMENT 'SEO meta title tag for this page',
`page_manager_head_desc_tag` text COLLATE utf8mb4_unicode_ci COMMENT 'SEO meta description tag for this page',
`page_manager_head_keywords_tag` text COLLATE utf8mb4_unicode_ci COMMENT 'SEO meta keywords tag for this page',
PRIMARY KEY (`pages_id`,`language_id`),
KEY `idx_pages_title` (`pages_title`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `clic_pages_manager_description`
--
INSERT INTO `clic_pages_manager_description` VALUES
(1, 'Intro Page', '', '', 1, NULL, NULL, NULL),
(1, 'page intro', '', '', 2, NULL, NULL, NULL),
(2, 'MainPage', '<div style="text-align: center;">CLICSHOPPING DEMO</div><br />ClicShopping is easy to install and it''s modular e-commerce solution. Start with a basic setup and you can customize it to fit your needs and business with additional modules.<br /><br />ClicShopping, leverages Artificial Intelligence (AI) with chatGpt to optimize productivity, SEO, and more.<br /><br />Developpers and shop owners can work together to contribute solutions to the community via GitHub or the marketplace. If you have any questions, please post them on the <a href="https://clicshopping.org">forum</a><br /><br /><br />', NULL, 1, NULL, NULL, NULL),
(2, 'Page Accueil', '<div style="text-align: center;">CLICSHOPPING DEMO</div><br />Clicshopping est une solution de commerce électronique entièrement modulaire, facile à installer et à utiliser. Pour commencer, vous avez une solution simple, puis vous pouvez ajouter facilement un module pour personnaliser comme vous voulez clicshopping. Objectif avoir une solution dans la fonction de vos besoins et de votre entreprise<br /><br />Par exemple, il est possible d''inclure de nouveaux modules tels que l''alerte Web ou la carrousel ou de nouvelles fonctionnalités. Vous pouvez partager votre contribution via GitHub ou à via la marketplace.<br /><br />Les programmeurs et le propriétaire de boutiques peuvent collaborer ensemble et proposent une solution pour la communauté. Si vous avez une question, vous pouvez laisser un message sur le <a href="https://clicshopping.org">forum</a>.<br /><br />', NULL, 2, NULL, NULL, NULL),
(3, 'Contact Us', '<p><strong>(Specify the name of your website or company)</strong></p>', '', 1, NULL, NULL, NULL),
(3, 'Nous Contacter', '<p><strong>(indiquer le nom de votre site ou votre société) </strong></p>', '', 2, NULL, NULL, NULL),
(4, 'General Conditions', 'General Conditions', '', 1, NULL, NULL, NULL),
(4, 'Conditions Générales', 'Conditions générales', '', 2, NULL, NULL, NULL),
(5, 'Confidential politics', 'Confidential politics', '', 1, NULL, NULL, NULL),
(5, 'Politiques de Confidentialité', 'Politiques de Confidentialité', '', 2, NULL, NULL, NULL),
(7, 'RSS', '', 'index.php?Info&RSS', 1, NULL, NULL, NULL),
(7, 'RSS', '', 'index.php?Info&RSS', 2, NULL, NULL, NULL),
(8, 'Sitemap', '', 'index.php?Info&SiteMap', 1, NULL, NULL, NULL),
(8, 'Cartographie du site', '', 'index.php?Info&SiteMap', 2, NULL, NULL, NULL),
(10, 'Specials', '', 'Products&Specials', 1, NULL, NULL, NULL),
(10, 'Promotions', '', 'Products&Specials', 2, NULL, NULL, NULL),
(11, 'News', '', 'Products&ProductsNew', 1, NULL, NULL, NULL),
(11, 'Nouveautés', '', 'Products&ProductsNew', 2, NULL, NULL, NULL),
(13, 'Featured', '', 'Products&Featured', 1, NULL, NULL, NULL),
(13, 'Nos sélections', '', 'Products&Featured', 2, NULL, NULL, NULL),
(14, 'Favorites', '', 'Products&Favorites', 1, NULL, NULL, NULL),
(14, 'Nos Coups de coeur', '', 'Products&Favorites', 2, NULL, NULL, NULL),
(15, 'Index', '', 'index.php', 1, NULL, NULL, NULL),
(15, 'Index', '', 'index.php', 2, NULL, NULL, NULL),
(16, 'Customers recommendations', '', 'Products&Recommendations', 1, NULL, NULL, NULL),
(16, 'Recommandations clients', '', 'Products&Recommendations', 2, NULL, NULL, NULL);
-- --------------------------------------------------------
--
-- Table structure for table `clic_products`
--
CREATE TABLE `clic_products` (
`products_id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each product',
`parent_id` int NOT NULL DEFAULT '0' COMMENT 'FK to products table - parent product ID for variants, 0 for standalone products',
`has_children` int NOT NULL DEFAULT '0' COMMENT 'Flag indicating if product has variants - 0: no variants, 1: has variants',
`products_quantity` int NOT NULL COMMENT 'Current stock quantity available for sale',
`products_model` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Product model number',
`products_image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Path to main product image file',
`products_ean` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'EAN - European Article Number barcode',
`products_sku` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'SKU - Stock Keeping Unit identifier',
`products_jan` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'JAN - Japanese Article Number barcode',
`products_isbn` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'ISBN - International Standard Book Number for books',
`products_mpn` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'MPN - Manufacturer Part Number',
`products_upc` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'UPC - Universal Product Code barcode',
`products_image_zoom` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Path to high-resolution zoom image file',
`products_price` decimal(15,4) NOT NULL DEFAULT '0.0000' COMMENT 'Base selling price before tax and discounts',
`products_date_added` datetime NOT NULL COMMENT 'Timestamp when product was created',
`products_last_modified` datetime DEFAULT NULL COMMENT 'Timestamp of last modification to product',
`products_date_available` datetime DEFAULT NULL COMMENT 'Date when product becomes available for sale',
`products_weight` decimal(15,4) NOT NULL COMMENT 'Product weight for shipping calculations',
`products_price_kilo` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0' COMMENT 'Price per kilogram flag - 0: unit price, 1: price per kg',
`products_status` tinyint(1) NOT NULL COMMENT 'Product status - 0: inactive, 1: active and visible',
`products_tax_class_id` int NOT NULL COMMENT 'FK to tax_class table - tax rate applied to this product',
`manufacturers_id` int DEFAULT NULL COMMENT 'FK to manufacturers table - product manufacturer',
`products_ordered` int NOT NULL DEFAULT '0' COMMENT 'Total number of times this product has been ordered',
`products_percentage` tinyint(1) NOT NULL DEFAULT '1' COMMENT 'Percentage display flag - 0: hide, 1: show discount percentage',
`products_view` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1' COMMENT 'Product visibility - 0: hidden, 1: visible in catalog',
`orders_view` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1' COMMENT 'Order visibility - 0: hidden in orders, 1: visible in orders',
`suppliers_id` int DEFAULT NULL COMMENT 'FK to suppliers table - product supplier',
`products_archive` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Archive status - 0: active, 1: archived',
`products_min_qty_order` int NOT NULL DEFAULT '0' COMMENT 'Minimum quantity required for order - 0: no minimum',
`products_price_comparison` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Price comparison flag - 0: exclude, 1: include in price comparison',
`products_dimension_width` decimal(5,2) NOT NULL DEFAULT '0.00' COMMENT 'Product width for shipping calculations',
`products_dimension_height` decimal(5,2) NOT NULL DEFAULT '0.00' COMMENT 'Product height for shipping calculations',
`products_dimension_depth` decimal(5,2) NOT NULL DEFAULT '0.00' COMMENT 'Product depth for shipping calculations',
`products_length_class_id` int NOT NULL DEFAULT '2' COMMENT 'FK to products_length_classes table - unit of measurement for dimensions',
`admin_user_name` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Administrator username who last modified the product',
`products_volume` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Product volume specification',
`products_quantity_unit_id` int NOT NULL DEFAULT '0' COMMENT 'FK to products_quantity_unit table - unit of measurement for quantity',
`products_only_online` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Online-only flag - 0: available everywhere, 1: online only',
`products_image_medium` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Path to medium-sized product image file',
`products_image_small` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Path to small thumbnail product image file',
`products_weight_class_id` tinyint NOT NULL DEFAULT '2' COMMENT 'FK to weight_classes table - unit of measurement for weight',
`products_cost` decimal(15,2) NOT NULL COMMENT 'Product cost price for margin calculations',
`products_handling` decimal(15,2) NOT NULL DEFAULT '0.00' COMMENT 'Handling fee added to product price',
`products_packaging` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Packaging requirement - 0: standard, 1: special packaging',
`products_sort_order` int NOT NULL DEFAULT '0' COMMENT 'Display sort order - lower numbers appear first',
`products_quantity_alert` int NOT NULL DEFAULT '0' COMMENT 'Low stock alert threshold - triggers notification when quantity falls below',
`products_only_shop` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Shop-only flag - 0: available everywhere, 1: physical shop only',
`products_download_filename` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Filename for downloadable products',
`products_download_public` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Download access - 0: requires purchase, 1: public download',
`products_type` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Product type - physical, digital, service, or subscription',
PRIMARY KEY (`products_id`),
KEY `idx_products_model` (`products_model`),
KEY `idx_products_date_added` (`products_date_added`),
KEY `idx_products_parent_id` (`parent_id`),
KEY `idx_products_weight_class_id` (`products_weight_class_id`),
KEY `idx_products_products_status` (`products_status`),
KEY `idx_products_products_archive` (`products_archive`),
KEY `idx_products_view` (`products_view`),
KEY `idy_has_children` (`has_children`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=11 ;
--
-- Dumping data for table `clic_products`
--
INSERT INTO `clic_products` VALUES
(2, 0, 0, 200, 'REF-1526836441', 'products/cook/130_nV3zTbD22w_ricardo-ricardo-set-of-2-double-wall-glasses.png', 'REF-1992541414', 'REF-436224673', '', '', '', '', 'products/cook/640_nV3zTbD22w_ricardo-ricardo-set-of-2-double-wall-glasses.png', '50.0000', '2023-04-30 14:31:12', '2023-04-30 14:32:55', NULL, '1.0000', '', 1, 1, 0, 0, 1, '1', '1', 0, 0, 1, 0, '0.00', '0.00', '0.00', 2, 'admin admin', '0.00', 0, 0, 'products/cook/250_nV3zTbD22w_ricardo-ricardo-set-of-2-double-wall-glasses.png', 'products/cook/70_nV3zTbD22w_ricardo-ricardo-set-of-2-double-wall-glasses.png', 2, '0.00', '0.00', 0, 0, 0, 0, NULL, 0, 'product'),
(3, 0, 0, 250, 'REF-1147524128', 'products/cook/130_VjdFCDRZB5_duralex-set-of-6-picardie-clear-glass.png', 'REF-1965171787', 'REF-1677516273', '', '', '', '', 'products/cook/640_VjdFCDRZB5_duralex-set-of-6-picardie-clear-glass.png', '80.0000', '2023-04-30 14:38:46', NULL, NULL, '3.0000', '', 1, 1, 1, 0, 1, '1', '1', 1, 0, 1, 0, '0.00', '0.00', '0.00', 2, 'admin admin', '0.00', 0, 0, 'products/cook/250_VjdFCDRZB5_duralex-set-of-6-picardie-clear-glass.png', 'products/cook/70_VjdFCDRZB5_duralex-set-of-6-picardie-clear-glass.png', 2, '0.00', '0.00', 0, 0, 0, 0, NULL, 0, 'product'),
(4, 0, 0, 50, 'REF-186302276', 'products/cook/130_2cHjuSorUJ_danica-heirloom-danica-heirloom-olives-swedish.jpg', 'REF-1420977306', 'REF-411608752', '', '', '', '', 'products/cook/640_2cHjuSorUJ_danica-heirloom-danica-heirloom-olives-swedish.jpg', '10.0000', '2023-04-30 14:44:12', NULL, NULL, '0.5000', '', 1, 1, 2, 0, 1, '1', '1', 2, 0, 1, 0, '0.00', '0.00', '0.00', 2, 'admin admin', '0.00', 0, 0, 'products/cook/250_2cHjuSorUJ_danica-heirloom-danica-heirloom-olives-swedish.jpg', 'products/cook/70_2cHjuSorUJ_danica-heirloom-danica-heirloom-olives-swedish.jpg', 2, '0.00', '0.00', 0, 0, 0, 0, NULL, 0, 'product'),
(5, 0, 0, 50, 'REF-186302276', 'products/cook/130_xSAITa13xo_danica-heirloom-danica-heirloom-peppers-swedish.jpg', 'REF-1420977306', 'REF-411608752', '', '', '', '', 'products/cook/640_xSAITa13xo_danica-heirloom-danica-heirloom-peppers-swedish.jpg', '10.0000', '2023-04-30 14:45:37', '2023-04-30 14:47:29', NULL, '0.5000', '', 1, 1, 2, 0, 1, '1', '1', 2, 0, 1, 0, '0.00', '0.00', '0.00', 2, 'admin admin', '0.00', 0, 0, 'products/cook/250_xSAITa13xo_danica-heirloom-danica-heirloom-peppers-swedish.jpg', 'products/cook/70_xSAITa13xo_danica-heirloom-danica-heirloom-peppers-swedish.jpg', 2, '0.00', '0.00', 0, 0, 0, 0, NULL, 0, 'product'),
(6, 0, 0, 200, 'REF-735105857', 'products/cook/130_eaWKTRL9nD_trudeau-trudeau-blink-wine-chiller.jpg', 'REF-1974356263', 'REF-682500556', '', '', '', '', 'products/cook/640_eaWKTRL9nD_trudeau-trudeau-blink-wine-chiller.jpg', '50.0000', '2023-04-30 14:56:27', NULL, NULL, '2.0000', '', 1, 1, 3, 0, 1, '1', '1', 3, 0, 1, 0, '0.00', '0.00', '0.00', 2, 'admin admin', '0.00', 0, 0, 'products/cook/250_eaWKTRL9nD_trudeau-trudeau-blink-wine-chiller.jpg', 'products/cook/70_eaWKTRL9nD_trudeau-trudeau-blink-wine-chiller.jpg', 2, '0.00', '0.00', 0, 0, 0, 0, NULL, 0, 'product'),
(7, 0, 0, 30, 'REF-167383567', 'products/cook/130_fIYPoeQI68_trudeau-pompe-a-vin-avec-2-bouchons-de-trudeau.jpg', 'REF-1245114511', 'REF-1405575828', '', '', '', '', 'products/cook/640_fIYPoeQI68_trudeau-pompe-a-vin-avec-2-bouchons-de-trudeau.jpg', '50.0000', '2023-04-30 14:59:55', NULL, NULL, '1.0000', '', 1, 1, 3, 0, 1, '1', '1', 3, 0, 1, 0, '0.00', '0.00', '0.00', 2, 'admin admin', '0.00', 0, 0, 'products/cook/250_fIYPoeQI68_trudeau-pompe-a-vin-avec-2-bouchons-de-trudeau.jpg', 'products/cook/70_fIYPoeQI68_trudeau-pompe-a-vin-avec-2-bouchons-de-trudeau.jpg', 2, '0.00', '0.00', 0, 0, 0, 0, NULL, 0, 'product'),
(8, 0, 0, 200, 'REF-381129254', 'products/cook/130_8VN7eHef7Y_zwilling-zwilling-twin-4-piece-eckbert-children.png', 'REF-748783096', 'REF-489165095', '', '', '', '', 'products/cook/640_8VN7eHef7Y_zwilling-zwilling-twin-4-piece-eckbert-children.png', '200.0000', '2023-04-30 15:06:23', NULL, NULL, '1.0000', '', 1, 1, 4, 0, 1, '1', '1', 4, 0, 1, 0, '0.00', '0.00', '0.00', 2, 'admin admin', '0.00', 0, 0, 'products/cook/250_8VN7eHef7Y_zwilling-zwilling-twin-4-piece-eckbert-children.png', 'products/cook/70_8VN7eHef7Y_zwilling-zwilling-twin-4-piece-eckbert-children.png', 2, '0.00', '0.00', 0, 0, 0, 0, NULL, 0, 'product'),
(9, 0, 0, 150, 'REF-1068978741', 'products/cook/130_ZmPHCiPEWk_josef-strauss-ensemble-dustensiles.jpg', 'REF-608085741', 'REF-784842224', '', '', '', '', 'products/cook/640_ZmPHCiPEWk_josef-strauss-ensemble-dustensiles.jpg', '350.0000', '2023-04-30 15:10:14', NULL, NULL, '2.0000', '', 1, 1, 5, 0, 1, '1', '1', 5, 0, 1, 0, '0.00', '0.00', '0.00', 2, 'admin admin', '0.00', 0, 0, 'products/cook/250_ZmPHCiPEWk_josef-strauss-ensemble-dustensiles.jpg', 'products/cook/70_ZmPHCiPEWk_josef-strauss-ensemble-dustensiles.jpg', 2, '0.00', '0.00', 0, 0, 0, 0, NULL, 0, 'product'),
(10, 0, 0, 200, 'REF-608054608', 'products/cook/130_SAFKKdCYV8_lot_plat.jpg', 'REF-74387683', 'REF-1559731276', '', '', '', '', 'products/cook/640_SAFKKdCYV8_lot_plat.jpg', '80.0000', '2023-04-30 15:53:36', NULL, NULL, '1.0000', '', 1, 1, 0, 0, 1, '1', '1', 0, 0, 1, 0, '0.00', '0.00', '0.00', 2, 'admin admin', '0.00', 0, 0, 'products/cook/250_SAFKKdCYV8_lot_plat.jpg', 'products/cook/70_SAFKKdCYV8_lot_plat.jpg', 2, '0.00', '0.00', 0, 0, 0, 0, NULL, 0, 'product');
-- --------------------------------------------------------
--
-- Table structure for table `clic_products_attributes`
--
CREATE TABLE `clic_products_attributes` (
`products_attributes_id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each product attribute combination',
`products_id` int NOT NULL COMMENT 'FK to products table - product this attribute belongs to',
`options_id` int NOT NULL COMMENT 'FK to products_options table - option type like Size or Color',
`options_values_id` int NOT NULL COMMENT 'FK to products_options_values table - specific value like Large or Red',
`options_values_price` decimal(15,4) NOT NULL COMMENT 'Price adjustment for this attribute - can be positive or negative',
`price_prefix` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '+' COMMENT 'Price modifier - + to add, - to subtract from base price',
`products_options_sort_order` int DEFAULT '1' COMMENT 'Display order for this attribute option',
`products_attributes_reference` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Internal reference code or SKU suffix for this attribute',
`customers_group_id` int NOT NULL DEFAULT '0' COMMENT 'FK to customers_groups table - customer group for this pricing, 0: all groups',
`products_attributes_image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Optional image showing this attribute variant',
`status` tinyint(1) NOT NULL DEFAULT '1' COMMENT 'Attribute status - 0: inactive, 1: active and selectable',
PRIMARY KEY (`products_attributes_id`),
KEY `idx_products_attributes_products_id` (`products_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `clic_products_attributes_download`
--
CREATE TABLE `clic_products_attributes_download` (
`products_attributes_id` int NOT NULL COMMENT 'FK to products_attributes table - product attribute that is downloadable',
`products_attributes_filename` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'Filename of downloadable file for this attribute',
`products_attributes_maxdays` int DEFAULT '0' COMMENT 'Maximum days for download availability - 0 for unlimited',
`products_attributes_maxcount` int DEFAULT '0' COMMENT 'Maximum number of downloads allowed - 0 for unlimited',
PRIMARY KEY (`products_attributes_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `clic_products_description`
--
CREATE TABLE `clic_products_description` (
`products_id` int NOT NULL AUTO_INCREMENT COMMENT 'FK to products table - product this description belongs to',
`language_id` int NOT NULL DEFAULT '1' COMMENT 'FK to languages table - language of this description',
`products_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'Product name in this language',
`products_description` text COLLATE utf8mb4_unicode_ci COMMENT 'Full product description in this language - HTML allowed',
`products_url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'External product URL for more information',
`products_viewed` int DEFAULT '0' COMMENT 'Number of times product has been viewed',
`products_seo_url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'SEO-friendly URL slug for this product',
`products_head_title_tag` text COLLATE utf8mb4_unicode_ci COMMENT 'HTML title tag content for SEO',
`products_head_desc_tag` text COLLATE utf8mb4_unicode_ci COMMENT 'HTML meta description tag content for SEO',
`products_head_keywords_tag` text COLLATE utf8mb4_unicode_ci COMMENT 'HTML meta keywords tag content for SEO',
`products_head_tag` text COLLATE utf8mb4_unicode_ci COMMENT 'Additional HTML head tags for this product',
`products_shipping_delay` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Shipping delay message when product is in stock',
`products_description_summary` text COLLATE utf8mb4_unicode_ci COMMENT 'Short product description or summary',
`products_shipping_delay_out_of_stock` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Shipping delay message when product is out of stock',
PRIMARY KEY (`products_id`,`language_id`),
KEY `products_name` (`products_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=11 ;
--
-- Dumping data for table `clic_products_description`
--
INSERT INTO `clic_products_description` VALUES
(2, 1, 'Ricardo Set of 2 Double Wall Glasses', 'Ideal for juices, cocktails, iced teas and coffees, beers and much more.\r\n<ul>\r\n <li>Made of durable borosilicate glass</li>\r\n <li>Double wall construction maintains beverages hot or cold longer</li>\r\n <li>Ideal for juices, cocktails, iced teas and coffees, beers and much more</li>\r\n <li>14 oz/420 ml capacity</li>\r\n <li>Dishwasher safe</li>\r\n</ul>\r\n', '', 0, '', '', '', '', '', '', 'Made of durable borosilicate glass', ''),
(2, 2, 'verres à double paroi de Ricardo', 'Idéal pour jus, cocktails, thé glacé, café, bière et plus encore.\r\n<ul>\r\n <li>Fabriqué de verre borosilicate durable</li>\r\n <li>Construction à double paroi afin de maintenir les breuvages chauds ou froids plus longtemps</li>\r\n <li>Idéal pour jus, cocktails, thé glacé, café, bière et plus encore</li>\r\n <li>Capacité de 14 oz / 420 ml</li>\r\n <li>Va au lave-vaisselle</li>\r\n</ul>\r\n', '', 0, '', '', '', '', '', '', 'Fabriqué de verre borosilicate durable', ''),
(3, 1, 'Set of 6 Duralex Picardie glasses', 'The original tempered (toughened) Picardie glasses are known as the "original French tumblers."\r\n<ul>\r\n <li>Shock Resistant tempered glass</li>\r\n <li>Thermal shock resistant</li>\r\n <li>100% Hygienic non-porous glass</li>\r\n <li>100% Safe non-cutting glass</li>\r\n <li>Can withstand sudden thermal shock from -4 F to 212 F</li>\r\n <li>Products maintain the original look for years</li>\r\n <li>Dishwasher safe, Microwave safe, Freezer safe</li>\r\n <li>Stackable</li>\r\n <li>Made in France</li>\r\n</ul>\r\n', '', 0, '', '', '', '', '', '', 'Shock Resistant tempered glass', ''),
(3, 2, 'Ensemble de 6 verres Picardie Duralex', 'Les verres originaux trempés (durcis) de Picardie sont connus comme les "gobelets français originaux".\r\n<ul>\r\n <li>Verre trempé résistant aux chocs</li>\r\n <li>Résistant aux chocs thermiques</li>\r\n <li>Verre non poreux 100% hygiénique</li>\r\n <li>Verre non coupant 100% sûr</li>\r\n <li>Peut résister à un choc thermique soudain de -4 F à 212 F</li>\r\n <li>Les produits conservent leur aspect original pendant des années</li>\r\n <li>Lavable au lave-vaisselle, au micro-ondes et au congélateur.</li>\r\n <li>Empilable</li>\r\n <li>Fabriqué en France</li>\r\n</ul>\r\n', '', 0, '', '', '', '', '', '', 'Verre trempé résistant aux chocs', ''),
(4, 1, ' Swedish Compostable Cloth ''Olives''', 'Made from cotton and plant-based cellulose fibers, these compostable cloths are an established must-have in Scandinavia. They offer a sustainable alternative to sponges, dishcloths and paper towels and become soft and pliable when wet for easy clean-up.\r\n<ul>\r\n <li>8x6.5x0.1</li>\r\n <li>70% Cellulose / 30% Cotton</li>\r\n <li>Machine wash warm, lay flat to dry</li>\r\n</ul>\r\n', '', 0, '', '', '', '', '', '', 'Made from cotton and plant-based cellulose fibers', ''),
(4, 2, 'Lavette Compostable Suédoise "Olives"', 'Fabriqués à partir de coton et de fibres cellulosiques d''origine végétale, ces chiffons compostables sont devenus incontournables en Scandinavie. Ils offrent une alternative durable aux éponges, aux torchons et aux serviettes en papier et deviennent doux et souples lorsqu''ils sont mouillés, ce qui facilite le nettoyage.\r\n<ul>\r\n <li>8x6.5x0.1</li>\r\n <li>70% Cellulose / 30% Coton</li>\r\n <li>Lavage en machine à chaud, séchage à plat</li>\r\n</ul>\r\n', '', 0, '', '', '', '', '', '', 'Fabriqués à partir de coton et de fibres cellulosiques d''origine végétale,', ''),
(5, 1, 'Peppers Swedish Compostable Wipes', 'Made from cotton and plant-based cellulose fibers, these compostable cloths are an established must-have in Scandinavia. They offer a sustainable alternative to sponges, dishcloths and paper towels and become soft and pliable when wet for easy clean-up.\r\n<ul>\r\n <li>8x6.5x0.1</li>\r\n <li>70% Cellulose / 30% Cotton</li>\r\n <li>Machine wash warm, lay flat to dry</li>\r\n</ul>\r\n', '', 0, '', '', '', '', '', '', 'Made from cotton and plant-based cellulose fibers', ''),
(5, 2, 'Lavette Compostable Suédoise Piments', 'Fabriqués à partir de coton et de fibres cellulosiques d''origine végétale, ces chiffons compostables sont devenus incontournables en Scandinavie. Ils offrent une alternative durable aux éponges, aux torchons et aux serviettes en papier et deviennent doux et souples lorsqu''ils sont mouillés, ce qui facilite le nettoyage.\r\n<ul>\r\n <li>8x6.5x0.1</li>\r\n <li>70% Cellulose / 30% Coton</li>\r\n <li>Lavage en machine à chaud, séchage à plat</li>\r\n</ul>\r\n', '', 0, '', '', '', '', '', '', 'Fabriqués à partir de coton et de fibres cellulosiques d''origine végétale,', ''),
(6, 1, 'TRUDEAU BLINK WINE CHILLER', 'Cooldown your drink of choice in the blink of an eye with our Blink wine chiller! A clever alternative to the classic ice bucket, this patented wine accessory that can fit any kind of bottle is essential to fine dining. The Blink Wine Chiller features two integrated freezing packs that maintain the temperature of your wine for hours without condensation. From 1L bottles of white wine for picnics with friends to champagne bottles for bigger occasions, we got your need for chilled beverages covered with this sleek accessory. The auto-closure system ensures a wine that is chilled to perfection every time. Enjoy it to the last drop!', '', 0, '', '', '', '', '', '', 'Cooldown your drink of choice in the blink of an eye with our Blink wine chiller!', ''),
(6, 2, 'Refroidisseur à vin Blink de Trudeau', '<br />\r\n<br />\r\nRafraîchissez votre vin en un instant avec notre rafraîchisseur à vin Blink. Cet accessoire breveté s''adapte à toutes les bouteilles et offre une alternative intelligente au classique seau à glace. Le rafraîchisseur à vin Blink est doté de deux éléments réfrigérants intégrés qui maintiennent la température de votre vin durant des heures sans condensation. Des bouteilles de vin blanc de 1L pour vos pique-niques au parc, au champagne pour les grandes occasions, nous avons ce qu''il vous faut avec cet accessoire simple. La fermeture automatique assure du vin refroidi à perfection à chaque fois. Savourez-le jusqu''à la dernière coupe!', '', 0, '', '', '', '', '', '', 'Rafraîchissez votre vin en un instant avec notre rafraîchisseur à vin Blink. Cet accessoire breveté s''adapte à toutes les bouteilles et offre une alternative intelligente au classique seau à glace.', ''),
(7, 1, 'Trudeau Wine Pump and 2 Stoppers', '', '', 0, '', '', '', '', '', '', '', ''),
(7, 2, 'Pompe à vin avec 2 bouchons de Trudeau', 'Conservez les restes de vin avec notre pompe à préserver le vin au design original Trudeau. Pratique et efficace, elle empêche l''oxydation et les changements de pression à l''intérieur de la bouteille durant une semaine. Simplement pomper jusqu''à ce que l''indicateur blanc sur le bouchon s''abaisse. De plus, les bouchons sont anti-fuites, même à l''horizontale. Vous pouvez ainsi limiter les dégâts et les pertes et prolonger le plaisir!<br />\r\n<br />\r\nCouleur/fini : Argent & Noir chromé<br />\r\nDimension/capacité : 14 cm<br />\r\nEmballage : Boîte cadeau', '', 14, '', '', '', '', '', '', 'Conservez les restes de vin avec notre pompe à préserver le vin au design original Trudeau. Pratique et efficace, elle empêche l''oxydation et les changements de pression à l''intérieur de la bouteille durant une semaine.', ''),
(8, 1, 'Eckbert Children Cutlery Set', 'Kid-sized flatware set is perfect for children''s small hands. Adorable designs keep children engaged and delighed for many meals to come.Since 1731 Henckels have been developing leading edge products that combine advanced technology, premium materials and the artistry of craftsmanship into functional forms. They have become a global symbol of excellence representing the best in German culinary design and precision manufacturing.\r\n<ul>\r\n <li>18/10 Stainless steel</li>\r\n <li>Eckbert the Knight, his two mischievous friends and a cheerful dragon are depicted on the tip of the handle</li>\r\n <li>Set includes child''s fork, knife, soup/cereal spoon and small spoon</li>\r\n <li>For ages 3 and up</li>\r\n <li>Dishwasher safe</li>\r\n <li>Use and Care : Dishwasher safe</li>\r\n</ul>\r\n', '', 0, '', '', '', '', '', '', ' Kid-sized flatware set is perfect for children''s small hands. Adorable designs keep children engaged and delighed for many meals to come.', ''),
(8, 2, 'Ustensiles Eckbert par ZWILLING', 'Cette coutelerie de petite taille est parfaite pour les mains d''enfants. Les motifs adorables garderont les enfants excités de manger pendant les repas.Depuis 1731, Henckels a développé des produits de pointe qui combinent la technologie avancée, les matériaux haut de gamme et l''artisanat dans des formes fonctionnelles. Ils sont devenus un symbol global d''excellence représentant le meilleur design culinaire et la meilleure fabrication de précision en Allemagne.\r\n<ul>\r\n <li>Parfait pour les petites mains</li>\r\n <li>Eckbert le chevalier, ses deux amis malicieux et un dragon joyeux dessinés sur les poignées</li>\r\n <li>L''ensemble contient : fourchette pour enfant, couteau, cuillère à soupe/céréale et petite cuillère</li>\r\n <li>Pour 3 ans et plus</li>\r\n <li>Peut être placé dans le lave-vaisselleEntretien : Peut être placé dans le lave-vaisselle.</li>\r\n</ul>\r\n', '', 0, '', '', '', '', '', '', 'Cette coutelerie de petite taille est parfaite pour les mains d''enfants. Les motifs adorables garderont les enfants excités de manger pendant les repas.', ''),
(9, 1, 'Josef Strauss Prestige Cutlery Set', 'This beautiful set will enhance any dinner table, whether for entertaining, or casual dining.\r\n<ul>\r\n <li>18/10 stainless steel</li>\r\n <li>Gaby - 20 pc set</li>\r\n</ul>\r\n\r\n<ol>\r\n <li>Includes: 4 dinner forks, 4 salad forks, 4 knives, 4 soup spoons, 4 tea spoons</li>\r\n</ol>\r\n', '', 0, '', '', '', '', '', '', 'This beautiful set will enhance any dinner table, whether for entertaining, or casual dining.', ''),
(9, 2, 'Ustensiles de Josef Strauss Prestige', 'Ce magnifique ensemble rehaussera toute table, qu''il s''agisse d''une réception ou d''un repas décontracté.\r\n<ul>\r\n <li>Acier inoxydable 18/10</li>\r\n <li>Gaby - Ensemble de 20 pièces</li>\r\n <li>Comprend 4 fourchettes à dîner, 4 fourchettes à salade, 4 couteaux, 4 cuillères à soupe, 4 cuillères à thé.</li>\r\n</ul>\r\n', '', 0, '', '', '', '', '', '', 'Ce magnifique ensemble rehaussera toute table, qu''il s''agisse d''une réception ou d''un repas décontracté.', ''),
(10, 1, 'Stainless steel cutlery', 'Beautifully created from a higher quality stainless steel material, our dishes are exquisitely designed. This unique and elegant design has a durable, well balanced and easy to grasp set. The whole is affordable as well as elegant and it is a judicious investment that will enrich your daily experience. Rust resistant, dishwasher, easy to wash and maintain.<br />\r\n<br />\r\n<strong>Available color </strong>:- or<br />\r\n<strong>Available size:- </strong><br />\r\n4 x Dinner fork 7.5 PO-<br />\r\n4 x tablespoon 7.5 in<br />\r\n4 x 6 -po tea spoon<br />\r\n4 x Dinner knife 8.5 POF<br />\r\n<br />\r\n<strong>features: </strong><br />\r\nRust resistant<br />\r\nDishwasher<br />\r\nEasy to wash and maintain.', '', 0, '', '', '', '', '', '', 'Beautifully created from a higher quality stainless steel material, our dishes are exquisitely designed.', ''),
(10, 2, 'Coutellerie en acier inoxidable', 'Magnifiquement créés à partir d''un matériau en acier inoxydable de qualité supérieure, nos ensembles de vaisselle sont conçus de manière exquise. Ce design unique et élégant présente un ensemble durable, bien équilibré et facile à saisir. L''ensemble est abordable ainsi que élégant et c''est un investissement judicieux qui enrichira votre expérience quotidienne. Résistant à la rouille, au lave-vaisselle, facile à laver et à entretenir.<br />\r\n<br />\r\n<strong>Couleur disponible</strong>:- Or<br />\r\n<strong>Taille disponible:- </strong><br />\r\n4 x fourchette à dîner 7.5 po-<br />\r\n4 x cuillère à soupe 7.5 po<br />\r\n4 x cuillère à thé 6 po<br />\r\n4 x couteau à dîner 8.5 poF<br />\r\n<br />\r\n<strong>Fonctionnalités:</strong><br />\r\n Résistant à la rouille<br />\r\nLave-vaisselle<br />\r\nFacile à laver et à entretenir.', '', 0, '', '', '', '', '', '', ' matériau en acier inoxydable de qualité supérieure', '');
-- --------------------------------------------------------
--
-- Table structure for table `clic_products_discount_quantity`
--
CREATE TABLE `clic_products_discount_quantity` (
`id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each quantity discount rule',
`products_id` int NOT NULL COMMENT 'FK to products table - product with quantity discount',
`suppliers_id` int NOT NULL COMMENT 'FK to suppliers table - supplier offering the discount',
`customers_group_id` int NOT NULL DEFAULT '0' COMMENT 'FK to customers_groups table - customer group eligible for discount, 0: all groups',
`discount_quantity` int NOT NULL COMMENT 'Minimum quantity required to receive discount',
`discount_supplier_price` decimal(10,2) NOT NULL COMMENT 'Supplier cost at this quantity level',
`discount_customer` decimal(10,2) NOT NULL COMMENT 'Customer discount percentage or amount at this quantity level',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `clic_products_favorites`
--
CREATE TABLE `clic_products_favorites` (
`products_favorites_id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each favorite/wishlist product',
`products_id` int NOT NULL DEFAULT '0' COMMENT 'FK to products table - product in favorites/wishlist',
`products_favorites_date_added` datetime DEFAULT NULL COMMENT 'Timestamp when product was added to favorites',
`products_favorites_last_modified` datetime DEFAULT NULL COMMENT 'Timestamp of last modification',
`scheduled_date` datetime DEFAULT NULL COMMENT 'Future date for scheduled favorites display - null for immediate',
`expires_date` datetime DEFAULT NULL COMMENT 'Expiration date for favorites promotion - null for no expiration',
`date_status_change` datetime DEFAULT NULL COMMENT 'Timestamp when status was last changed',
`status` int NOT NULL DEFAULT '1' COMMENT 'Favorites status - 0: inactive, 1: active',
`customers_group_id` int NOT NULL DEFAULT '0' COMMENT 'FK to customers_groups table - customer group, 0: all groups',
PRIMARY KEY (`products_favorites_id`),
KEY `idx_specials_products_id` (`products_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=4 ;
--
-- Dumping data for table `clic_products_favorites`
--
INSERT INTO `clic_products_favorites` VALUES
(1, 5, '2023-04-30 15:19:03', NULL, NULL, NULL, NULL, 1, 0),
(2, 4, '2023-04-30 15:19:13', NULL, NULL, NULL, NULL, 1, 0),
(3, 7, '2023-04-30 15:19:35', NULL, NULL, NULL, NULL, 1, 0);
-- --------------------------------------------------------
--
-- Table structure for table `clic_products_featured`
--
CREATE TABLE `clic_products_featured` (
`products_featured_id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each featured product',
`products_id` int NOT NULL DEFAULT '0' COMMENT 'FK to products table - product being featured',
`products_featured_date_added` datetime DEFAULT NULL COMMENT 'Timestamp when product was featured',
`products_featured_last_modified` datetime DEFAULT NULL COMMENT 'Timestamp of last modification',
`scheduled_date` datetime DEFAULT NULL COMMENT 'Future date when featuring becomes active - null for immediate',
`expires_date` datetime DEFAULT NULL COMMENT 'Expiration date when featuring ends - null for no expiration',
`date_status_change` datetime DEFAULT NULL COMMENT 'Timestamp when status was last changed',
`status` int NOT NULL DEFAULT '1' COMMENT 'Featured status - 0: inactive, 1: active and displaying',
`customers_group_id` int NOT NULL DEFAULT '0' COMMENT 'FK to customers_groups table - customer group who sees featured product, 0: all groups',
PRIMARY KEY (`products_featured_id`),
KEY `idx_products_featured_id` (`products_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=5 ;
--
-- Dumping data for table `clic_products_featured`
--
INSERT INTO `clic_products_featured` VALUES
(1, 2, '2023-04-30 15:18:10', NULL, NULL, NULL, NULL, 1, 0),
(2, 8, '2023-04-30 15:18:21', NULL, NULL, NULL, NULL, 1, 0),
(3, 6, '2023-04-30 15:18:34', NULL, NULL, NULL, NULL, 1, 0),
(4, 5, '2023-04-30 15:18:44', NULL, NULL, NULL, NULL, 1, 0);
-- --------------------------------------------------------
--
-- Table structure for table `clic_products_groups`
--
CREATE TABLE `clic_products_groups` (
`id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each customer group pricing rule',
`customers_group_id` int NOT NULL DEFAULT '0' COMMENT 'FK to customers_groups table - customer group this pricing applies to',
`customers_group_price` decimal(15,4) NOT NULL DEFAULT '0.0000' COMMENT 'Special price for this customer group',
`products_id` int NOT NULL DEFAULT '0' COMMENT 'FK to products table - product with group-specific pricing',
`products_price` decimal(15,4) NOT NULL DEFAULT '0.0000' COMMENT 'Base product price for reference',
`price_group_view` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1' COMMENT 'Price visibility - 0: hidden, 1: visible to group',
`products_group_view` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1' COMMENT 'Product visibility - 0: hidden, 1: visible to group',
`orders_group_view` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1' COMMENT 'Order capability - 0: cannot order, 1: can order',
`products_quantity_unit_id_group` int NOT NULL DEFAULT '0' COMMENT 'FK to products_quantity_unit table - unit of measure for this group',
`products_model_group` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Group-specific product model or SKU',
`products_quantity_fixed_group` int NOT NULL DEFAULT '1' COMMENT 'Fixed quantity requirement - minimum or exact quantity for group orders',
PRIMARY KEY (`id`),
KEY `idx_customers_group_id` (`customers_group_id`),
KEY `idx_products_group_view` (`products_group_view`),
KEY `idx_price_group_view` (`price_group_view`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=9 ;
--
-- Dumping data for table `clic_products_groups`
--
INSERT INTO `clic_products_groups` VALUES
(1, 1, '47.5000', 2, '50.0000', '1', '1', '1', 0, '', 1),
(2, 1, '76.0000', 3, '80.0000', '1', '1', '1', 0, '', 1),
(3, 1, '9.5000', 4, '10.0000', '1', '1', '1', 0, '', 1),
(4, 1, '47.5000', 6, '50.0000', '1', '1', '1', 0, '', 1),
(5, 1, '47.5000', 7, '50.0000', '1', '1', '1', 0, '', 1),
(6, 1, '190.0000', 8, '200.0000', '1', '1', '1', 0, '', 1),
(7, 1, '332.5000', 9, '350.0000', '1', '1', '1', 0, '', 1),
(8, 1, '76.0000', 10, '80.0000', '1', '1', '1', 0, '', 1);
-- --------------------------------------------------------
--
-- Table structure for table `clic_products_images`
--
CREATE TABLE `clic_products_images` (
`id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each product image',
`products_id` int NOT NULL COMMENT 'FK to products table - product this image belongs to',
`image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Path to image file',
`htmlcontent` text COLLATE utf8mb4_unicode_ci COMMENT 'HTML content or caption for the image',
`sort_order` int NOT NULL COMMENT 'Display order for product image gallery',
PRIMARY KEY (`id`),
KEY `products_images_prodid` (`products_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=8 ;
--
-- Dumping data for table `clic_products_images`
--
INSERT INTO `clic_products_images` VALUES
(2, 2, 'products/cook/ricardo-ricardo-set-of-2-double-wall-glasses1.png', '', 1),
(3, 3, 'products/cook/duralex-set-of-6-picardie-clear-glass1.png', '', 1),
(4, 3, 'products/cook/duralex-set-of-6-picardie-clear-glass2.png', '', 2),
(5, 6, 'products/cook/trudeau-trudeau-blink-wine-chiller1.jpg', '', 1),
(6, 6, 'products/cook/trudeau-trudeau-blink-wine-chiller2.jpg', '', 2),
(7, 7, 'products/cook/trudeau-pompe-a-vin-avec-2-bouchons-de-trudeau1.jpg', '', 1);
-- --------------------------------------------------------
--
-- Table structure for table `clic_products_length_classes`
--
CREATE TABLE `clic_products_length_classes` (
`products_length_class_id` int NOT NULL COMMENT 'Primary key - unique identifier for each length/dimension class',
`products_length_class_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Unique key for length class - e.g. cm, m, in, ft',
`language_id` int NOT NULL COMMENT 'FK to languages table - language for this length class name',
`products_length_class_title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Display name for length class - e.g. Centimeters, Meters, Inches, Feet',
PRIMARY KEY (`products_length_class_id`,`language_id`),
KEY `idx_products_length_classes_language_id` (`language_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `clic_products_length_classes`
--
INSERT INTO `clic_products_length_classes` VALUES
(1, 'mm', 1, 'Millimeter(s)'),
(1, 'mm', 2, 'millimètre(s)'),
(2, 'cm', 1, 'Centimeter(s)'),
(2, 'cm', 2, 'Centimètre(s)'),
(3, 'm', 1, 'meter(s)'),
(3, 'm', 2, 'mètre(s)'),
(4, 'in', 1, 'Inch(s)'),
(4, 'in', 2, 'Pouce(s)');
-- --------------------------------------------------------
--
-- Table structure for table `clic_products_length_classes_rules`
--
CREATE TABLE `clic_products_length_classes_rules` (
`products_length_class_from_id` int NOT NULL COMMENT 'FK to products_length_classes table - source length class for conversion',
`products_length_class_to_id` int NOT NULL COMMENT 'FK to products_length_classes table - target length class for conversion',
`products_length_class_rule` decimal(15,5) NOT NULL COMMENT 'Conversion multiplier - e.g. 1 cm = 0.39370 in, so rule would be 0.39370',
PRIMARY KEY (`products_length_class_from_id`,`products_length_class_to_id`),
KEY `idx_products_length_class_from_id` (`products_length_class_from_id`),
KEY `idx_products_length_class_to_id` (`products_length_class_to_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `clic_products_length_classes_rules`
--
INSERT INTO `clic_products_length_classes_rules` VALUES
(1, 2, '0.10000'),
(1, 3, '0.00100'),
(1, 4, '0.03937'),
(2, 1, '10.00000'),
(2, 3, '0.01000'),
(2, 4, '0.39370'),
(3, 1, '1000.00000'),
(3, 2, '100.00000'),
(3, 4, '39.37007'),
(4, 1, '25.40000'),
(4, 2, '2.54000'),
(4, 3, '0.02540');
-- --------------------------------------------------------
--
-- Table structure for table `clic_products_notifications`
--
CREATE TABLE `clic_products_notifications` (
`products_id` int NOT NULL COMMENT 'FK to products table - product customer wants notification for',
`customers_id` int NOT NULL COMMENT 'FK to customers table - customer requesting notification',
`date_added` datetime NOT NULL COMMENT 'Timestamp when notification request was created',
PRIMARY KEY (`products_id`,`customers_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `clic_products_options`
--
CREATE TABLE `clic_products_options` (
`products_options_id` int NOT NULL DEFAULT '0' COMMENT 'Primary key - unique identifier for each product option type',
`language_id` int NOT NULL DEFAULT '1' COMMENT 'FK to languages table - language for this option name',
`products_options_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'Option name - e.g. Size, Color, Material',
`products_options_sort_order` int NOT NULL DEFAULT '1' COMMENT 'Display order for option presentation',
`products_options_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Option input type - select, radio, checkbox, text, textarea',
PRIMARY KEY (`products_options_id`,`language_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `clic_products_options_values`
--
CREATE TABLE `clic_products_options_values` (
`products_options_values_id` int NOT NULL DEFAULT '0' COMMENT 'Primary key - unique identifier for each option value',
`language_id` int NOT NULL DEFAULT '1' COMMENT 'FK to languages table - language for this value name',
`products_options_values_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'Option value name - e.g. Small, Medium, Large or Red, Blue, Green',
PRIMARY KEY (`products_options_values_id`,`language_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `clic_products_options_values_to_products_options`
--
CREATE TABLE `clic_products_options_values_to_products_options` (
`products_options_values_to_products_options_id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each option-value association',
`products_options_id` int NOT NULL COMMENT 'FK to products_options table - option identifier like Size, Color',
`products_options_values_id` int NOT NULL COMMENT 'FK to products_options_values table - specific value like Small, Red',
PRIMARY KEY (`products_options_values_to_products_options_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `clic_products_quantity_unit`
--
CREATE TABLE `clic_products_quantity_unit` (
`products_quantity_unit_id` int NOT NULL COMMENT 'Primary key - unique identifier for each quantity unit',
`language_id` int NOT NULL COMMENT 'FK to languages table - language for this unit name',
`products_quantity_unit_title` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Display name for quantity unit - e.g. Each, Box, Case, Dozen, Pallet',
PRIMARY KEY (`products_quantity_unit_id`,`language_id`),
KEY `idx_products_quantity_unit_title` (`products_quantity_unit_title`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `clic_products_quantity_unit`
--
INSERT INTO `clic_products_quantity_unit` VALUES
(4, 2, 'douzaine'),
(4, 1, 'dozen'),
(2, 1, 'kg'),
(2, 2, 'kg'),
(3, 1, 'liter'),
(3, 2, 'litre'),
(5, 2, 'pcs'),
(5, 1, 'pièces'),
(1, 1, 'unit'),
(1, 2, 'unité');
-- --------------------------------------------------------
--
-- Table structure for table `clic_products_recommendations`
--
CREATE TABLE `clic_products_recommendations` (
`id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each product recommendation',
`customers_id` int NOT NULL COMMENT 'FK to customers table - customer receiving recommendation',
`products_id` int NOT NULL COMMENT 'FK to products table - recommended product',
`score` float DEFAULT NULL COMMENT 'Recommendation score - higher score indicates stronger recommendation',
`recommendation_date` date DEFAULT NULL COMMENT 'Date when recommendation was generated',
`product_tag` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Tag or category for recommendation grouping - e.g. frequently_bought, similar_items',
`customers_group_id` int NOT NULL COMMENT 'FK to customers_groups table - customer group for targeted recommendations',
`status` int NOT NULL DEFAULT '1' COMMENT 'Recommendation status - 0: inactive, 1: active and displaying',
PRIMARY KEY (`id`),
KEY `idx_products_id` (`products_id`),
KEY `idx_customers_id` (`customers_id`),
KEY `idx_score` (`score`),
KEY `idx_customers_group_id` (`customers_group_id`),
KEY `idx_recommendation_date` (`recommendation_date`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `clic_products_recommendations_to_categories`
--
CREATE TABLE `clic_products_recommendations_to_categories` (
`id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each product-category recommendation link',
`products_id` int NOT NULL COMMENT 'FK to products table - recommended product',
`categories_id` int NOT NULL COMMENT 'FK to categories table - category where product is recommended',
PRIMARY KEY (`id`),
KEY `idx_products_id` (`products_id`),
KEY `idx_categories_id` (`categories_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
-- --------------------------------------------------------
--
-- Table structure for table `clic_products_to_categories`
--
CREATE TABLE `clic_products_to_categories` (
`products_id` int NOT NULL COMMENT 'FK to products table - product identifier',
`categories_id` int NOT NULL COMMENT 'FK to categories table - category identifier',
PRIMARY KEY (`products_id`,`categories_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `clic_products_to_categories`
--
INSERT INTO `clic_products_to_categories` VALUES
(2, 1),
(3, 1),
(4, 2),
(5, 2),
(6, 4),
(7, 4),
(8, 0),
(9, 0),
(10, 5);
-- --------------------------------------------------------
--
-- Table structure for table `clic_return_orders`
--
CREATE TABLE `clic_return_orders` (
`return_id` int NOT NULL COMMENT 'Primary key - unique identifier for each return/RMA request',
`return_ref` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Return reference number displayed to customer - e.g. RMA-2024-001',
`order_id` int NOT NULL COMMENT 'FK to orders table - original order containing returned product',
`product_id` int NOT NULL COMMENT 'FK to products table - product being returned',
`customer_id` int NOT NULL COMMENT 'FK to customers table - customer requesting return',
`customer_firstname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Customer first name at time of return',
`customer_lastname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Customer last name at time of return',
`customer_email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Customer email for return communication',
`customer_telephone` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Customer phone number for return coordination',
`product_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Product name at time of return',
`product_model` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Product model/SKU at time of return',
`quantity` int NOT NULL COMMENT 'Quantity of items being returned',
`opened` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Product condition - 0: unopened/sealed, 1: opened/used',
`return_reason_id` int NOT NULL COMMENT 'FK to return_orders_reason table - reason for return',
`return_action_id` int NOT NULL COMMENT 'FK to return_orders_action table - requested action - refund, exchange, credit',
`return_status_id` int NOT NULL DEFAULT '1' COMMENT 'FK to return_orders_status table - current return status',
`comment` text COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Customer comments explaining the return',
`date_ordered` date NOT NULL COMMENT 'Date of original order',
`date_added` datetime NOT NULL COMMENT 'Timestamp when return request was submitted',
`date_modified` datetime DEFAULT NULL COMMENT 'Timestamp of last modification to return',
`archive` tinyint(1) NOT NULL COMMENT 'Archive status - 0: active, 1: archived',
PRIMARY KEY (`return_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `clic_return_orders_action`
--
CREATE TABLE `clic_return_orders_action` (
`return_action_id` int NOT NULL DEFAULT '0' COMMENT 'Primary key - unique identifier for each return action type',
`language_id` int NOT NULL DEFAULT '1' COMMENT 'FK to languages table - language for action name',
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Action name - e.g. Refund, Exchange, Store Credit, Repair',
PRIMARY KEY (`return_action_id`,`language_id`),
KEY `idx_name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `clic_return_orders_action`
--
INSERT INTO `clic_return_orders_action` VALUES
(1, 2, 'Aucune action'),
(3, 1, 'Credit Issued'),
(1, 1, 'no action'),
(3, 2, 'Problème crédit'),
(2, 2, 'Produit à Rembourser'),
(2, 1, 'Refunded'),
(4, 2, 'Remplacement envoyé'),
(4, 1, 'Replacement Sent');
-- --------------------------------------------------------
--
-- Table structure for table `clic_return_orders_history`
--
CREATE TABLE `clic_return_orders_history` (
`return_history_id` int NOT NULL COMMENT 'Primary key - unique identifier for each return status change',
`return_id` int NOT NULL COMMENT 'FK to return_orders table - return order identifier',
`return_status_id` int NOT NULL COMMENT 'FK to return_orders_status table - new status applied',
`notify` tinyint(1) NOT NULL COMMENT 'Customer notification flag - 0: no email sent, 1: email sent to customer',
`comment` text COLLATE utf8mb4_unicode_ci COMMENT 'Administrator comment about this status change',
`date_added` datetime NOT NULL COMMENT 'Timestamp when status change occurred',
`admin_user_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Administrator username who made the status change',
PRIMARY KEY (`return_history_id`),
KEY `idx_return_id` (`return_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `clic_return_orders_reason`
--
CREATE TABLE `clic_return_orders_reason` (
`return_reason_id` int NOT NULL DEFAULT '0' COMMENT 'Primary key - unique identifier for each return reason',
`language_id` int NOT NULL DEFAULT '1' COMMENT 'FK to languages table - language for reason name',
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Reason name - e.g. Defective, Wrong Item, Changed Mind, Not as Described',
PRIMARY KEY (`return_reason_id`,`language_id`),
KEY `idx_name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `clic_return_orders_reason`
--
INSERT INTO `clic_return_orders_reason` VALUES
(5, 2, 'Autres'),
(1, 2, 'Colis non conforme'),
(4, 1, 'Do not meet my expectations'),
(3, 2, 'Erreur commande'),
(2, 2, 'Mauvais produit reçu'),
(4, 2, 'Ne répond pas à mes attentes'),
(1, 1, 'No-compliant package'),
(3, 1, 'Order Error'),
(5, 1, 'Others'),
(2, 1, 'Received Wrong Item');
-- --------------------------------------------------------
--
-- Table structure for table `clic_return_orders_status`
--
CREATE TABLE `clic_return_orders_status` (
`return_status_id` int NOT NULL DEFAULT '0' COMMENT 'Primary key - unique identifier for each return status',
`language_id` int NOT NULL DEFAULT '1' COMMENT 'FK to languages table - language for status name',
`name` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Status name - e.g. Pending, Approved, Rejected, Refunded, Exchanged',
PRIMARY KEY (`return_status_id`,`language_id`),
KEY `idx_name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `clic_return_orders_status`
--
INSERT INTO `clic_return_orders_status` VALUES
(2, 1, 'Awaiting Products'),
(3, 1, 'Complete'),
(3, 2, 'Complété'),
(1, 2, 'En attente'),
(2, 2, 'en attente du retour du produit'),
(1, 1, 'Pending');
-- --------------------------------------------------------
--
-- Table structure for table `clic_reviews`
--
CREATE TABLE `clic_reviews` (
`reviews_id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each review',
`products_id` int NOT NULL COMMENT 'FK to products table - product being reviewed',
`customers_id` int DEFAULT NULL COMMENT 'FK to customers table - customer who wrote the review, null for guest reviews',
`customers_name` text COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Customer name displayed with review - preserved even if account deleted',
`reviews_rating` int DEFAULT NULL COMMENT 'Product rating - typically 1 to 5 stars',
`date_added` datetime DEFAULT NULL COMMENT 'Timestamp when review was submitted',
`last_modified` datetime DEFAULT NULL COMMENT 'Timestamp of last modification to review',
`reviews_read` int NOT NULL DEFAULT '0' COMMENT 'Number of times this review has been viewed',
`status` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Review status - 0: pending approval, 1: approved and visible',
`customers_group_id` int NOT NULL DEFAULT '0' COMMENT 'FK to customers_groups table - customer group at time of review',
`customers_tag` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Customer tag or badge - verified buyer, top reviewer, etc',
PRIMARY KEY (`reviews_id`),
KEY `idx_reviews_products_id` (`products_id`),
KEY `idx_reviews_customers_id` (`customers_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `clic_reviews_description`
--
CREATE TABLE `clic_reviews_description` (
`reviews_id` int NOT NULL COMMENT 'FK to reviews table - review this text belongs to',
`languages_id` int NOT NULL COMMENT 'FK to languages table - language of review text',
`reviews_text` text COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Detailed review text written by customer',
PRIMARY KEY (`reviews_id`,`languages_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `clic_reviews_sentiment`
--
CREATE TABLE `clic_reviews_sentiment` (
`id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each sentiment analysis',
`sentiment_status` int NOT NULL DEFAULT '0' COMMENT 'Sentiment classification - 0: neutral, 1: positive, 2: negative, 3: mixed',
`sentiment_approved` int NOT NULL DEFAULT '0' COMMENT 'Approval status - 0: pending review, 1: approved, 2: rejected',
`reviews_id` int NOT NULL COMMENT 'FK to reviews table - review being analyzed',
`products_id` int NOT NULL COMMENT 'FK to products table - product being reviewed',
`date_added` datetime DEFAULT NULL COMMENT 'Timestamp when sentiment analysis was performed',
`date_modified` datetime DEFAULT NULL COMMENT 'Timestamp of last modification to sentiment record',
`user_admin` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Administrator username who reviewed or modified the sentiment',
PRIMARY KEY (`id`),
KEY `idx_reviews_reviews_id` (`reviews_id`),
KEY `idx_reviews_products_id` (`products_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `clic_reviews_sentiment_description`
--
CREATE TABLE `clic_reviews_sentiment_description` (
`id` int NOT NULL COMMENT 'FK to reviews_sentiment table - sentiment analysis identifier',
`language_id` int NOT NULL COMMENT 'FK to languages table - language for this translation',
`description` text COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Translated description or summary of the sentiment analysis',
PRIMARY KEY (`id`,`language_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `clic_reviews_vote`
--
CREATE TABLE `clic_reviews_vote` (
`id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each review vote',
`products_id` int NOT NULL COMMENT 'FK to products table - product being reviewed',
`reviews_id` int NOT NULL COMMENT 'FK to reviews table - review being voted on',
`vote` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Vote type - 0: not helpful, 1: helpful',
`customer_id` int NOT NULL COMMENT 'FK to customers table - customer who voted',
`sentiment` tinyint NOT NULL DEFAULT '0' COMMENT 'Sentiment indicator - -1: negative, 0: neutral, 1: positive',
PRIMARY KEY (`id`),
KEY `idx_reviews_products_id` (`products_id`),
KEY `idx_reviews_reviews_id` (`reviews_id`),
KEY `idx_reviews_vote` (`vote`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `clic_sec_directory_whitelist`
--
CREATE TABLE `clic_sec_directory_whitelist` (
`id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each whitelisted directory',
`directory` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Directory path allowed for file operations - security whitelist',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=8 ;
--
-- Dumping data for table `clic_sec_directory_whitelist`
--
INSERT INTO `clic_sec_directory_whitelist` VALUES
(1, 'Core/ClicShopping/Work/Backups'),
(2, 'ext/images'),
(4, 'sources'),
(5, 'sources/images'),
(6, 'pub'),
(7, 'Core/Work');
-- --------------------------------------------------------
--
-- Table structure for table `clic_seo`
--
CREATE TABLE `clic_seo` (
`seo_id` int NOT NULL DEFAULT '1' COMMENT 'Primary key - SEO configuration identifier',
`language_id` int NOT NULL DEFAULT '1' COMMENT 'FK to languages table - language for SEO content',
`seo_defaut_language_title` text COLLATE utf8mb4_unicode_ci COMMENT 'Default homepage title tag',
`seo_defaut_language_keywords` text COLLATE utf8mb4_unicode_ci COMMENT 'Default homepage meta keywords',
`seo_defaut_language_description` text COLLATE utf8mb4_unicode_ci COMMENT 'Default homepage meta description',
`seo_defaut_language_footer` text COLLATE utf8mb4_unicode_ci COMMENT 'Default footer SEO content',
`seo_language_products_info_title` text COLLATE utf8mb4_unicode_ci COMMENT 'Product detail page title template',
`seo_language_products_info_keywords` text COLLATE utf8mb4_unicode_ci COMMENT 'Product detail page keywords template',
`seo_language_products_info_description` text COLLATE utf8mb4_unicode_ci COMMENT 'Product detail page description template',
`seo_language_products_new_title` text COLLATE utf8mb4_unicode_ci COMMENT 'New products page title',
`seo_language_products_new_keywords` text COLLATE utf8mb4_unicode_ci COMMENT 'New products page keywords',
`seo_language_products_new_description` text COLLATE utf8mb4_unicode_ci COMMENT 'New products page description',
`seo_language_special_title` text COLLATE utf8mb4_unicode_ci COMMENT 'Special offers page title',
`seo_language_special_keywords` text COLLATE utf8mb4_unicode_ci COMMENT 'Special offers page keywords',
`seo_language_special_description` text COLLATE utf8mb4_unicode_ci COMMENT 'Special offers page description',
`seo_language_reviews_title` text COLLATE utf8mb4_unicode_ci COMMENT 'Reviews page title',
`seo_language_reviews_keywords` text COLLATE utf8mb4_unicode_ci COMMENT 'Reviews page keywords',
`seo_language_reviews_description` text COLLATE utf8mb4_unicode_ci COMMENT 'Reviews page description',
`seo_language_favorites_title` text COLLATE utf8mb4_unicode_ci COMMENT 'Favorites/wishlist page title',
`seo_language_favorites_keywords` text COLLATE utf8mb4_unicode_ci COMMENT 'Favorites/wishlist page keywords',
`seo_language_favorites_description` text COLLATE utf8mb4_unicode_ci COMMENT 'Favorites/wishlist page description',
`seo_language_featured_title` text COLLATE utf8mb4_unicode_ci COMMENT 'Featured products page title',
`seo_language_featured_keywords` text COLLATE utf8mb4_unicode_ci COMMENT 'Featured products page keywords',
`seo_language_featured_description` text COLLATE utf8mb4_unicode_ci COMMENT 'Featured products page description',
`seo_defaut_language_title_h1` text COLLATE utf8mb4_unicode_ci COMMENT 'Default H1 heading for homepage',
`seo_language_recommendations_title` text COLLATE utf8mb4_unicode_ci COMMENT 'Recommendations page title',
`seo_language_recommendations_description` text COLLATE utf8mb4_unicode_ci COMMENT 'Recommendations page description',
`seo_language_recommendations_keywords` text COLLATE utf8mb4_unicode_ci COMMENT 'Recommendations page keywords',
PRIMARY KEY (`seo_id`,`language_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `clic_seo`
--
INSERT INTO `clic_seo` VALUES
(1, 1, 'ClicShopping AI B2B B2C Solution', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'ClicShopping AI B2B B2C Solution', '', '', ''),
(1, 2, 'ClicShopping AI B2B B2C Solution', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'ClicShopping AI B2B B2C Solution', '', '', '');
-- --------------------------------------------------------
--
-- Table structure for table `clic_sessions`
--
CREATE TABLE `clic_sessions` (
`sesskey` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Primary key - unique session identifier',
`expiry` int unsigned NOT NULL COMMENT 'Unix timestamp when session expires',
`value` text COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Serialized session data - cart contents, user state, etc',
PRIMARY KEY (`sesskey`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `clic_specials`
--
CREATE TABLE `clic_specials` (
`specials_id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each special price',
`products_id` int NOT NULL COMMENT 'FK to products table - product with special pricing',
`specials_new_products_price` decimal(15,4) NOT NULL COMMENT 'Special discounted price for the product',
`specials_date_added` datetime DEFAULT NULL COMMENT 'Timestamp when special price was created',
`specials_last_modified` datetime DEFAULT NULL COMMENT 'Timestamp of last modification to special price',
`expires_date` datetime DEFAULT NULL COMMENT 'Expiration date when special price ends - null for no expiration',
`date_status_change` datetime DEFAULT NULL COMMENT 'Timestamp when status was last changed',
`status` int NOT NULL DEFAULT '1' COMMENT 'Special price status - 0: inactive, 1: active',
`scheduled_date` datetime DEFAULT NULL COMMENT 'Future date when special price becomes active - null for immediate',
`customers_group_id` int NOT NULL DEFAULT '0' COMMENT 'FK to customers_groups table - customer group eligible for special, 0: all groups',
`flash_discount` int NOT NULL DEFAULT '0' COMMENT 'Flash sale flag - 0: regular special, 1: flash discount with urgency',
PRIMARY KEY (`specials_id`),
KEY `idx_specials_products_id` (`products_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=3 ;
--
-- Dumping data for table `clic_specials`
--
INSERT INTO `clic_specials` VALUES
(1, 3, '76.0000', '2023-04-30 15:17:35', NULL, NULL, NULL, 1, NULL, 0, 0),
(2, 6, '47.5000', '2023-04-30 15:17:51', NULL, NULL, NULL, 1, NULL, 0, 0);
-- --------------------------------------------------------
--
-- Table structure for table `clic_suppliers`
--
CREATE TABLE `clic_suppliers` (
`suppliers_id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each supplier',
`suppliers_name` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Supplier company name',
`suppliers_image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Path to supplier logo or image file',
`date_added` datetime DEFAULT NULL COMMENT 'Timestamp when supplier was created',
`last_modified` datetime DEFAULT NULL COMMENT 'Timestamp of last modification to supplier',
`suppliers_manager` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Name of supplier account manager or contact person',
`suppliers_phone` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Supplier primary phone number',
`suppliers_email_address` varchar(96) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Supplier email address for communication',
`suppliers_fax` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Supplier fax number',
`suppliers_address` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Supplier street address',
`suppliers_suburb` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Supplier suburb or district',
`suppliers_postcode` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Supplier postal code',
`suppliers_city` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Supplier city',
`suppliers_states` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Supplier state or province',
`suppliers_country_id` int NOT NULL DEFAULT '0' COMMENT 'FK to countries table - supplier country',
`suppliers_notes` text COLLATE utf8mb4_unicode_ci COMMENT 'Internal notes about the supplier',
`suppliers_status` int NOT NULL DEFAULT '0' COMMENT 'Supplier status - 0: inactive, 1: active',
PRIMARY KEY (`suppliers_id`),
KEY `idx_suppliers_name` (`suppliers_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=6 ;
--
-- Dumping data for table `clic_suppliers`
--
INSERT INTO `clic_suppliers` VALUES
(1, 'Duralex', '', '2023-04-30 14:34:44', NULL, '', '', '', '', '', '', '', '', '', 0, '', 0),
(2, 'Danica Heirloom', '', '2023-04-30 14:41:43', NULL, '', '', '', '', '', '', '', '', '', 0, '', 0),
(3, 'Trudeau', '', '2023-04-30 14:53:26', NULL, '', '', '', '', '', '', '', '', '', 0, '', 0),
(4, 'ZWILLING', '', '2023-04-30 15:02:29', NULL, '', '', '', '', '', '', '', '', '', 0, '', 0),
(5, 'Josef Strauss', '', '2023-04-30 15:07:16', NULL, '', '', '', '', '', '', '', '', '', 0, '', 0);
-- --------------------------------------------------------
--
-- Table structure for table `clic_suppliers_info`
--
CREATE TABLE `clic_suppliers_info` (
`suppliers_id` int NOT NULL DEFAULT '0' COMMENT 'FK to suppliers table - supplier identifier',
`languages_id` int NOT NULL DEFAULT '0' COMMENT 'FK to languages table - language for this translation',
`suppliers_url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Supplier website URL for this language',
`url_clicked` int NOT NULL DEFAULT '0' COMMENT 'Click count for supplier URL tracking',
`date_last_click` datetime DEFAULT NULL COMMENT 'Timestamp of last click on supplier URL',
PRIMARY KEY (`suppliers_id`,`languages_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `clic_suppliers_info`
--
INSERT INTO `clic_suppliers_info` VALUES
(1, 1, '', 0, NULL),
(1, 2, '', 0, NULL),
(2, 1, '', 0, NULL),
(2, 2, '', 0, NULL),
(3, 1, '', 0, NULL),
(3, 2, '', 0, NULL),
(4, 1, '', 0, NULL),
(4, 2, '', 0, NULL),
(5, 1, '', 0, NULL),
(5, 2, '', 0, NULL);
-- --------------------------------------------------------
--
-- Table structure for table `clic_tax_class`
--
CREATE TABLE `clic_tax_class` (
`tax_class_id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each tax class',
`tax_class_title` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Short tax class name - e.g. Taxable Goods, Digital Products',
`tax_class_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Detailed description of what this tax class applies to',
`last_modified` datetime DEFAULT NULL COMMENT 'Timestamp of last modification',
`date_added` datetime NOT NULL COMMENT 'Timestamp when tax class was created',
PRIMARY KEY (`tax_class_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Tax classification categories for products and services' AUTO_INCREMENT=5 ;
--
-- Dumping data for table `clic_tax_class`
--
INSERT INTO `clic_tax_class` VALUES
(1, 'TVA 20', 'TVA France 20', '2015-02-09 16:13:40', '2006-04-09 16:13:48'),
(2, 'TVA 5.5', 'TVA France 5.5', '2008-09-03 13:33:35', '2006-04-16 00:30:06'),
(3, 'Biens taxables Canada', 'Biens taxables Canada', NULL, '2008-09-16 15:02:29'),
(4, 'Taxe hamonisée Québec', 'Taxe hamonisée Québec', NULL, '2015-01-25 01:23:07');
-- --------------------------------------------------------
--
-- Table structure for table `clic_tax_rates`
--
CREATE TABLE `clic_tax_rates` (
`tax_rates_id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each tax rate',
`tax_zone_id` int NOT NULL COMMENT 'FK to geo_zones table - geographic zone where this tax rate applies',
`tax_class_id` int NOT NULL COMMENT 'FK to tax_class table - tax class this rate applies to',
`tax_priority` int DEFAULT '1' COMMENT 'Priority for applying multiple tax rates - lower numbers applied first',
`tax_rate` decimal(7,4) NOT NULL COMMENT 'Tax rate as decimal - e.g. 0.0850 for 8.5% tax',
`tax_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Description of the tax - e.g. State Sales Tax, VAT',
`last_modified` datetime DEFAULT NULL COMMENT 'Timestamp of last modification',
`date_added` datetime NOT NULL COMMENT 'Timestamp when tax rate was created',
`code_tax_erp` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'External ERP system tax code reference',
PRIMARY KEY (`tax_rates_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Tax rates for different geographic zones and product classes' AUTO_INCREMENT=10 ;
--
-- Dumping data for table `clic_tax_rates`
--
INSERT INTO `clic_tax_rates` VALUES
(1, 1, 1, 1, '20.0000', 'TVA 20%', '2015-02-09 16:14:24', '2006-04-09 16:13:48', '20.0'),
(2, 1, 2, 0, '5.5000', 'TVA 5.5%', '2015-02-09 17:01:13', '2006-04-16 00:30:21', '5.5'),
(3, 9, 3, 1, '9.9750', 'Zone TVH 9.975', '2015-02-09 16:16:14', '2008-09-16 15:04:49', 'TVQ'),
(5, 7, 3, 1, '5.0000', 'Zone TPS 5%', '2015-02-09 16:16:55', '2008-09-16 15:05:48', 'TPS_SALE'),
(6, 15, 4, 1, '14.9750', 'Taxe hamonisée Québec', '2015-02-09 17:00:14', '2015-01-25 01:25:11', 'TPSTVQ_SALE'),
(7, 11, 3, 1, '13.0000', 'Zone TVH 13%', '2015-02-09 16:18:27', '2015-02-09 16:15:01', 'TVH13_SALE'),
(8, 12, 3, 1, '14.0000', 'Zone fédérale 14%', '2015-02-09 16:18:38', '2015-02-09 16:17:18', 'TVH14_SALE'),
(9, 8, 3, 1, '12.0000', 'Zone Fédérale 12%', '2015-02-09 16:18:46', '2015-02-09 16:17:47', 'TVH12_SALE');
-- --------------------------------------------------------
--
-- Table structure for table `clic_template_email`
--
CREATE TABLE `clic_template_email` (
`template_email_id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each email template',
`template_email_variable` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Template variable name or identifier for email type',
`customers_group_id` int NOT NULL DEFAULT '0' COMMENT 'FK to customers_groups table - customer group this template applies to, 0 for all groups',
`template_email_type` smallint NOT NULL DEFAULT '0' COMMENT 'Email template type - 0: transactional, 1: marketing, 2: system notification',
`template_app_code` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Application module code this template belongs to',
PRIMARY KEY (`template_email_id`),
KEY `idx_customers_group_id` (`customers_group_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=8 ;
--
-- Dumping data for table `clic_template_email`
--
INSERT INTO `clic_template_email` VALUES
(1, 'TEMPLATE_EMAIL_WELCOME', 0, 0, NULL),
(2, 'TEMPLATE_EMAIL_TEXT_FOOTER', 0, 0, NULL),
(3, 'TEMPLATE_EMAIL_WELCOME_ADMIN', 0, 0, NULL),
(4, 'TEMPLATE_EMAIL_TEXT_COUPON', 0, 0, NULL),
(5, 'TEMPLATE_EMAIL_SIGNATURE', 0, 0, NULL),
(6, 'TEMPLATE_EMAIL_INTRO_COMMAND', 0, 0, NULL),
(7, 'TEMPLATE_EMAIL_NEWSLETTER_TEXT_FOOTER', 0, 0, NULL);
-- --------------------------------------------------------
--
-- Table structure for table `clic_template_email_description`
--
CREATE TABLE `clic_template_email_description` (
`template_email_id` int NOT NULL COMMENT 'FK to template_email table - email template identifier',
`language_id` int NOT NULL COMMENT 'FK to languages table - language for this translation',
`template_email_name` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Translated name of the email template',
`template_email_short_description` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Brief description of template purpose',
`template_email_description` longtext COLLATE utf8mb4_unicode_ci COMMENT 'Full HTML email template content with placeholders',
PRIMARY KEY (`template_email_id`,`language_id`),
KEY `idx_template_email_name` (`template_email_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `clic_template_email_description`
--
INSERT INTO `clic_template_email_description` VALUES
(1, 1, 'Welcome message on catalogue', 'Catalog - welcome message for a new customer', '<div align="justify"> Thank you for the trust you place in us by registering as a new customer on site {{http_shop}}.</div>\r\n\r\n<div align="justify"> Following your request to open an account on {{store_name}} we confirm its validity. You can now log on {{store_name}}.</div>\r\n\r\n<div align="justify">We are delighted to count you among our new clients and we remain at your service to make shopping easy! !</div>\r\n\r\n<div align="justify"> ''<strong>Your links :</strong>''</div>\r\n\r\n<div align="justify"> 1) To access your account, change your address, your delivery address and / or billing, {{http_shop}}index.php?Account&Main</div>\r\n\r\n<div align="justify">2) To go directly to track your orders, {{http_shop}}index.php?Account&History</div>\r\n\r\n<div align="justify">3) Recover lost password : {{http_shop}}index.php?Account&PasswordForgotten</div>\r\n\r\n<div align="justify">To access all the above, you should check before your login..</div>\r\n\r\n<div align="justify"> </div>\r\n\r\n<div align="justify">For assistance on our services, please contact our customer service: {{store_owner_email_address}} : {{store_owner_email_address}}</div>\r\n'),
(1, 2, 'Message de bienvenue catalogue', 'Catalogue -Message de bienvenue lors de l''inscription du client', '<div align="justify"> Nous vous remercions pour la confiance que vous nous témoigniez en vous enregistrant comme nouveau client sur le site {{http_shop}}.</div>\r\n\r\n<div align="justify"> Comme suite à votre demande d''ouverture de compte sur {{store_name}} nous vous confirmons sa validation. Vous pouvez dès a présent vous connecter sur {{store_name}}.</div>\r\n\r\n<div align="justify">Nous sommes ravis de vous compter parmi nos nouveaux clients et nous restons à votre service pour vous faciliter vos achats !</div>\r\n\r\n<div align="justify"> ''<strong>Vos liens utiles :</strong>''</div>\r\n\r\n<div align="justify"> 1) Pour accéder à votre compte client, modifier vos coordonnées, vos adresses de livraison et/ou facturation, {{http_shop}}index.php?Account&Main</div>\r\n\r\n<div>2) Pour accéder directement au suivi de vos commandes, {{http_shop}}index.php?Account&History</div>\r\n\r\n<div align="justify">3) Retrouver son mot de passe oublié : {{http_shop}}index.php?Account&PasswordForgotten</div>\r\n\r\n<div align="justify">Pour tous les accès précités, vous devrez renseigner au préalable vos identifiants.</div>\r\n\r\n<div align="justify"> </div>\r\n\r\n<div align="justify">Pour toute aide sur nos services, n''hésitez pas à contacter notre service clientèle : {{store_owner_email_address}}</div>\r\n'),
(2, 1, 'Confidentialities', 'Regulation : footer for all email sending except newsletter', 'This e-mail and any files transmitted with it are confidential and intended solely for the use of the individual to whom it is addressed. If you have received this email in error please send it back to the person that sent it to you. Any views or opinions presented are solely those of its author and do not necessarily represent those of {{store_name}} or any of its subsidiary companies. Unauthorized publication, use, dissemination, forwarding, printing or copying of this email and its associated attachments is strictly prohibited.<br /><br />.Pursuant to the Act in the country of residence of the company operating the store {{store_name}}, you are entitled to the correction of your personal data at any time or upon request by email at {{store_owner_email_address}} .<p> </p>'),
(2, 2, 'Avis de confidentialité', 'Législation : pied de page pour tous les emails envoyés sauf newsletter', '<p> <u>Avis de confidentialité :</u><br />Ce message ainsi que les documents qui seraient joints en annexe sont adressés exclusivement à leur destinataire et pourraient contenir une information confidentielle soumise au secret professionnel ou dont la divulgation est interdite en vertu de la législation en vigueur. De ce fait, nous avertissons la personne qui le recevrait sans àªtre le destinataire ou une personne autorisée, que cette information est confidentielle et que toute utilisation, copie, archive ou divulgation en est interdite. Si vous avez reà§u ce message, nous vous prions de bien vouloir nous le communiquer par courriel : {{store_owner_email_address}} et de procéder directement à sa destruction.</p><p>Conformément à la Loi dans le pays de résidence de la société exploitant la boutique {{store_name}}, vous avez droit à la rectification de vos données personnelles à tout moment ou sur simple demande par email. {{store_owner_email_address}}</p>'),
(3, 1, 'Customer create account', 'Admin : Welcome message - Customer create account', '<div align="justify"> </div><div align="justify">We just create an account following an order by you (by phone or otherwise) on site {{store_name}} .</div><div align="justify"> </div><div align="justify">By logging on {{store_name}} (after retrieving your password), we can enjoy a range of services..</div><div align="justify"> </div><div align="justify">We are delighted to count you among our new clients and we remain at your service to make shopping easy! !</div><div align="justify"> </div><div align="justify"><strong>Your links :</strong>''</div><div align="justify"> 1) To access your account, change your address, your delivery address and / or billing, {{http_shop}}index.php?Account&Main</div><div align="justify">2) To go directly to track your orders, {{http_shop}}index.php?Account&History</div><div align="justify">3) Recover lost password : {{http_shop}}index.php?Account&PasswordForgotten</div><div align="justify">To access all the above, you should check before your login..</div><div align="justify"> </div><div align="justify">For assistance on our services, please contact our customer service: {{store_owner_email_address}}</div>'),
(3, 2, 'Création du compte client', 'Admin : Message de bienvenue lors de la création du comte client', '<div align="justify"> </div><div align="justify">Nous venons de vous créer un compte suite à une commande de votre part (par téléphone ou autre) sur le site {{store_name}} .</div><div align="justify"> </div><div align="justify">En vous connectant sur {{store_name}} (après avoir récupéré votre mot de passe), nous pourrez bénéficier d''un ensemble de services.</div><div align="justify"> </div><div align="justify">Nous sommes ravis de vous compter parmi nos nouveaux clients et nous restons à votre service pour vous faciliter vos achats !</div><div align="justify"> </div><div align="justify"><strong>Vos liens utiles :</strong></div><div align="justify"> </div><div>1) Pour accéder à votre compte client, modifier vos coordonnées, vos adresses de livraison et/ou facturation : {{http_shop}}index.php?Account&Main</div><div>2) Pour accéder directement au suivi de vos commandes : {{http_shop}}index.php?Account&History</div><div>3) Retrouver son mot de passe oublié : {{http_shop}}index.php?Account&PasswordFogotten<br />4) Pour contacter notre service après vente concernant une commande, veuillez éditer votre commande dans votre espace et cliquez sur support.</div><div align="justify">Pour tous les accès précités, vous devrez renseigner au préalable vos identifiants.</div><div>Pour toute aide sur nos services, n''hésitez pas à contacter notre service clientèle : {{store_owner_email_address}}</div>'),
(4, 1, 'Customer coupon', 'Give a coupon during the creation a customer account', '<p>{{store_name}} is pleased to offer you a discount on your next order coupon that you can use anytime Store. To know the rules for applying the coupon, please visit our online help. .</p><p>The coupon number is: :</p>'),
(4, 2, 'Coupon Client', 'Offrir un coupon lors de la création d''un compte client', '<p>{{store_name}} se fait un plaisir de vous offrir un coupon remise sur votre prochaine commande que vous pourrez utiliser n''importe quand sur la boutique. Pour connaitre les modalités d''application du coupon, veuillez consulter notre aide en ligne.</p><p>Le numéro du coupon est :</p>'),
(5, 1, 'Signature', 'Signature at the bottom of the message', '<p>---------------------</p><p>Regards,</p><p>{{store_name}} team</p>'),
(5, 2, 'Signature', 'Qui sera associé au bas d''un mail envoyé : signature', '<p>---------------------</p><p>Cordialement,</p><p>L''équipe {{store_name}}</p>'),
(6, 1, 'Order status', 'Order status email', 'Email sent after an update statusp>Hello,<br /><br /> The status of your order has been updated..<br /><br /> For all subsequent requests, please log into your administration area..<br /><br /> - View your orders and your order history : {{http_shop}}index.php?Account&History<br /> - We send a message regarding this order (click edit your order and contact our support)<br /> - Print, download an order, an invoice (edit your order and click on the PDF icon invoice)</p>'),
(6, 2, 'Statut commande', 'Mail concernant le statut commande', 'Email envoyé suite à une MAJ d''un statut<p> Bonjour,<br /><br /> Le statut de votre commande a été mis à jour.<br /><br /> Pour toutes les demandes suivantes, veuillez vous connecter à votre espace d''administration.<br /><br /> - Consulter vos commandes ou votre historique de commande : {{http_shop}}index.php?Account&History<br /> - Nous envoyer un message concernant cette commande (éditer votre commande et cliquez contacter notre support)<br /> - Imprimer, télécharger une commande, une facture (éditer votre commande et cliquez sur l''icone PDF facture)<br /> </p>'),
(7, 1, 'Newsletter regulation', 'Regulation footer text', 'In accordance with the <strong>Law of the </strong>{{store_name}}, you are entitled to change your personal data or on request by email.<br />To unsubscribe from our newsletter, send us an email or just click on the following link: {{http_shop}}?Account&Newsletters'),
(7, 2, 'Législation newsletter', 'text bas de page législation newsletter', 'Conformément aux <strong>Lois</strong> en vigueur dans le pays de la boutique {{store_name}}, vous avez droit à la rectification de vos données personnelles à tout moment ou sur simple demande par email.<br />Pour se désabonner de notre Newsletter, veuillez recopier sur le lien suivant : {{http_shop}}index.php?Account&Newsletters');
-- --------------------------------------------------------
--
-- Table structure for table `clic_weight_classes`
--
CREATE TABLE `clic_weight_classes` (
`weight_class_id` int NOT NULL COMMENT 'Primary key - unique identifier for each weight class',
`weight_class_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Unique key for weight class - e.g. kg, lb, oz, g',
`language_id` int NOT NULL COMMENT 'FK to languages table - language for this weight class name',
`weight_class_title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Display name for weight class - e.g. Kilograms, Pounds, Ounces',
PRIMARY KEY (`weight_class_id`,`language_id`),
KEY `idx_weight_classes_language_id` (`language_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `clic_weight_classes`
--
INSERT INTO `clic_weight_classes` VALUES
(1, 'g', 1, 'Gram(s)'),
(1, 'g', 2, 'Gramme(s)'),
(2, 'kg', 1, 'Kilogram(s)'),
(2, 'kg', 2, 'Kilogramme(s)'),
(3, 'oz', 1, 'Ounce(s)'),
(3, 'oz', 2, 'Ounce(s)'),
(4, 'lb', 1, 'Pound(s)'),
(4, 'lb', 2, 'Pound(s)');
-- --------------------------------------------------------
--
-- Table structure for table `clic_weight_classes_rules`
--
CREATE TABLE `clic_weight_classes_rules` (
`weight_class_from_id` int NOT NULL COMMENT 'FK to weight_classes table - source weight class for conversion',
`weight_class_to_id` int NOT NULL COMMENT 'FK to weight_classes table - target weight class for conversion',
`weight_class_rule` decimal(15,4) NOT NULL COMMENT 'Conversion multiplier - e.g. 1 kg = 2.2046 lb, so rule would be 2.2046',
PRIMARY KEY (`weight_class_from_id`,`weight_class_to_id`),
KEY `idx_weight_class_from_id` (`weight_class_from_id`),
KEY `idx_weight_class_to_id` (`weight_class_to_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `clic_weight_classes_rules`
--
INSERT INTO `clic_weight_classes_rules` VALUES
(1, 2, '0.0010'),
(1, 3, '0.0352'),
(1, 4, '0.0022'),
(2, 1, '1000.0000'),
(2, 3, '10.0000'),
(2, 4, '2.2046'),
(3, 1, '28.3495'),
(3, 2, '4.0000'),
(3, 4, '0.0625'),
(4, 1, '453.5923'),
(4, 2, '0.4535'),
(4, 3, '16.0000');
-- --------------------------------------------------------
--
-- Table structure for table `clic_whos_online`
--
CREATE TABLE `clic_whos_online` (
`customer_id` int DEFAULT NULL COMMENT 'FK to customers table - logged in customer, null for guests',
`full_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Customer full name or Guest identifier',
`session_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Unique session identifier for tracking',
`ip_address` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'IP address of visitor - IPv4 or IPv6 format',
`hostname` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Resolved hostname from IP address',
`time_entry` varchar(14) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Timestamp when visitor first entered site - YYYYMMDDHHmmss format',
`time_last_click` varchar(14) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Timestamp of last activity - YYYYMMDDHHmmss format',
`last_page_url` text COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'URL of last page visited',
`http_referer` text COLLATE utf8mb4_unicode_ci COMMENT 'HTTP referer - where visitor came from',
`user_agent` mediumtext COLLATE utf8mb4_unicode_ci COMMENT 'Browser user agent string for device/browser identification',
KEY `idx_whos_online_session_id` (`session_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `clic_zones`
--
CREATE TABLE `clic_zones` (
`zone_id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each zone/region',
`zone_country_id` int NOT NULL COMMENT 'FK to countries table - country this zone belongs to',
`zone_code` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Zone code - e.g. state abbreviation like CA, NY, TX',
`zone_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Full zone name - e.g. California, New York, Texas',
`zone_status` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Zone status - 0: inactive, 1: active',
PRIMARY KEY (`zone_id`),
KEY `idx_zones_country_id` (`zone_country_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Geographic zones and regions within countries - states, provinces, etc.' AUTO_INCREMENT=642 ;
--
-- Dumping data for table `clic_zones`
--
INSERT INTO `clic_zones` VALUES
(1, 223, 'AL', 'Alabama', 0),
(2, 223, 'AK', 'Alaska', 0),
(3, 223, 'AS', 'American Samoa', 0),
(4, 223, 'AZ', 'Arizona', 0),
(5, 223, 'AR', 'Arkansas', 0),
(6, 223, 'AF', 'Armed Forces Africa', 0),
(7, 223, 'AA', 'Armed Forces Americas', 0),
(8, 223, 'AC', 'Armed Forces Canada', 0),
(9, 223, 'AE', 'Armed Forces Europe', 0),
(10, 223, 'AM', 'Armed Forces Middle East', 0),
(11, 223, 'AP', 'Armed Forces Pacific', 0),
(12, 223, 'CA', 'California', 0),
(13, 223, 'CO', 'Colorado', 0),
(14, 223, 'CT', 'Connecticut', 0),
(15, 223, 'DE', 'Delaware', 0),
(16, 223, 'DC', 'District of Columbia', 0),
(17, 223, 'FM', 'Federated States Of Micronesia', 0),
(18, 223, 'FL', 'Florida', 0),
(19, 223, 'GA', 'Georgia', 0),
(20, 223, 'GU', 'Guam', 0),
(21, 223, 'HI', 'Hawaii', 0),
(22, 223, 'ID', 'Idaho', 0),
(23, 223, 'IL', 'Illinois', 0),
(24, 223, 'IN', 'Indiana', 0),
(25, 223, 'IA', 'Iowa', 0),
(26, 223, 'KS', 'Kansas', 0),
(27, 223, 'KY', 'Kentucky', 0),
(28, 223, 'LA', 'Louisiana', 0),
(29, 223, 'ME', 'Maine', 0),
(30, 223, 'MH', 'Marshall Islands', 0),
(31, 223, 'MD', 'Maryland', 0),
(32, 223, 'MA', 'Massachusetts', 0),
(33, 223, 'MI', 'Michigan', 0),
(34, 223, 'MN', 'Minnesota', 0),
(35, 223, 'MS', 'Mississippi', 0),
(36, 223, 'MO', 'Missouri', 0),
(37, 223, 'MT', 'Montana', 0),
(38, 223, 'NE', 'Nebraska', 0),
(39, 223, 'NV', 'Nevada', 0),
(40, 223, 'NH', 'New Hampshire', 0),
(41, 223, 'NJ', 'New Jersey', 0),
(42, 223, 'NM', 'New Mexico', 0),
(43, 223, 'NY', 'New York', 0),
(44, 223, 'NC', 'North Carolina', 0),
(45, 223, 'ND', 'North Dakota', 0),
(46, 223, 'MP', 'Northern Mariana Islands', 0),
(47, 223, 'OH', 'Ohio', 0),
(48, 223, 'OK', 'Oklahoma', 0),
(49, 223, 'OR', 'Oregon', 0),
(50, 223, 'PW', 'Palau', 0),
(51, 223, 'PA', 'Pennsylvania', 0),
(52, 223, 'PR', 'Puerto Rico', 0),
(53, 223, 'RI', 'Rhode Island', 0),
(54, 223, 'SC', 'South Carolina', 0),
(55, 223, 'SD', 'South Dakota', 0),
(56, 223, 'TN', 'Tennessee', 0),
(57, 223, 'TX', 'Texas', 0),
(58, 223, 'UT', 'Utah', 0),
(59, 223, 'VT', 'Vermont', 0),
(60, 223, 'VI', 'Virgin Islands', 0),
(61, 223, 'VA', 'Virginia', 0),
(62, 223, 'WA', 'Washington', 0),
(63, 223, 'WV', 'West Virginia', 0),
(64, 223, 'WI', 'Wisconsin', 0),
(65, 223, 'WY', 'Wyoming', 0),
(66, 38, 'AB', 'Alberta', 0),
(67, 38, 'BC', 'British Columbia', 0),
(68, 38, 'MB', 'Manitoba', 0),
(69, 38, 'NF', 'Newfoundland', 0),
(70, 38, 'NB', 'New Brunswick', 0),
(71, 38, 'NS', 'Nova Scotia', 0),
(72, 38, 'NT', 'Northwest Territories', 0),
(73, 38, 'NU', 'Nunavut', 0),
(74, 38, 'ON', 'Ontario', 0),
(75, 38, 'PE', 'Prince Edward Island', 0),
(76, 38, 'QC', 'Quebec', 0),
(77, 38, 'SK', 'Saskatchewan', 0),
(78, 38, 'YT', 'Yukon Territory', 0),
(79, 81, 'NDS', 'Niedersachsen', 0),
(80, 81, 'BAW', 'Baden-Württemberg', 0),
(81, 81, 'BAY', 'Bayern', 0),
(82, 81, 'BER', 'Berlin', 0),
(83, 81, 'BRG', 'Brandenburg', 0),
(84, 81, 'BRE', 'Bremen', 0),
(85, 81, 'HAM', 'Hamburg', 0),
(86, 81, 'HES', 'Hessen', 0),
(87, 81, 'MEC', 'Mecklenburg-Vorpommern', 0),
(88, 81, 'NRW', 'Nordrhein-Westfalen', 0),
(89, 81, 'RHE', 'Rheinland-Pfalz', 0),
(90, 81, 'SAR', 'Saarland', 0),
(91, 81, 'SAS', 'Sachsen', 0),
(92, 81, 'SAC', 'Sachsen-Anhalt', 0),
(93, 81, 'SCN', 'Schleswig-Holstein', 0),
(94, 81, 'THE', 'Thüringen', 0),
(95, 14, 'WI', 'Wien', 0),
(96, 14, 'NO', 'Niederösterreich', 0),
(97, 14, 'OO', 'Oberösterreich', 0),
(98, 14, 'SB', 'Salzburg', 0),
(99, 14, 'KN', 'Kärnten', 0),
(100, 14, 'ST', 'Steiermark', 0),
(101, 14, 'TI', 'Tirol', 0),
(102, 14, 'BL', 'Burgenland', 0),
(103, 14, 'VB', 'Voralberg', 0),
(104, 204, 'AG', 'Aargau', 0),
(105, 204, 'AI', 'Appenzell Innerrhoden', 0),
(106, 204, 'AR', 'Appenzell Ausserrhoden', 0),
(107, 204, 'BE', 'Bern', 0),
(108, 204, 'BL', 'Basel-Landschaft', 0),
(109, 204, 'BS', 'Basel-Stadt', 0),
(110, 204, 'FR', 'Freiburg', 0),
(111, 204, 'GE', 'Genf', 0),
(112, 204, 'GL', 'Glarus', 0),
(113, 204, 'JU', 'Graubünden', 0),
(114, 204, 'JU', 'Jura', 0),
(115, 204, 'LU', 'Luzern', 0),
(116, 204, 'NE', 'Neuenburg', 0),
(117, 204, 'NW', 'Nidwalden', 0),
(118, 204, 'OW', 'Obwalden', 0),
(119, 204, 'SG', 'St. Gallen', 0),
(120, 204, 'SH', 'Schaffhausen', 0),
(121, 204, 'SO', 'Solothurn', 0),
(122, 204, 'SZ', 'Schwyz', 0),
(123, 204, 'TG', 'Thurgau', 0),
(124, 204, 'TI', 'Tessin', 0),
(125, 204, 'UR', 'Uri', 0),
(126, 204, 'VD', 'Waadt', 0),
(127, 204, 'VS', 'Wallis', 0),
(128, 204, 'ZG', 'Zug', 0),
(129, 204, 'ZH', 'Zürich', 0),
(130, 195, 'A Coruna', 'A Coruna', 0),
(131, 195, 'Alava', 'Alava', 0),
(132, 195, 'Albacete', 'Albacete', 0),
(133, 195, 'Alicante', 'Alicante', 0),
(134, 195, 'Almeria', 'Almeria', 0),
(135, 195, 'Asturias', 'Asturias', 0),
(136, 195, 'Avila', 'Avila', 0),
(137, 195, 'Badajoz', 'Badajoz', 0),
(138, 195, 'Baleares', 'Baleares', 0),
(139, 195, 'Barcelona', 'Barcelona', 0),
(140, 195, 'Burgos', 'Burgos', 0),
(141, 195, 'Caceres', 'Caceres', 0),
(142, 195, 'Cadiz', 'Cadiz', 0),
(143, 195, 'Cantabria', 'Cantabria', 0),
(144, 195, 'Castellon', 'Castellon', 0),
(145, 195, 'Ceuta', 'Ceuta', 0),
(146, 195, 'Ciudad Real', 'Ciudad Real', 0),
(147, 195, 'Cordoba', 'Cordoba', 0),
(148, 195, 'Cuenca', 'Cuenca', 0),
(149, 195, 'Girona', 'Girona', 0),
(150, 195, 'Granada', 'Granada', 0),
(151, 195, 'Guadalajara', 'Guadalajara', 0),
(152, 195, 'Guipuzcoa', 'Guipuzcoa', 0),
(153, 195, 'Huelva', 'Huelva', 0),
(154, 195, 'Huesca', 'Huesca', 0),
(155, 195, 'Jaen', 'Jaen', 0),
(156, 195, 'La Rioja', 'La Rioja', 0),
(157, 195, 'Las Palmas', 'Las Palmas', 0),
(158, 195, 'Leon', 'Leon', 0),
(159, 195, 'Lleida', 'Lleida', 0),
(160, 195, 'Lugo', 'Lugo', 0),
(161, 195, 'Madrid', 'Madrid', 0),
(162, 195, 'Malaga', 'Malaga', 0),
(163, 195, 'Melilla', 'Melilla', 0),
(164, 195, 'Murcia', 'Murcia', 0),
(165, 195, 'Navarra', 'Navarra', 0),
(166, 195, 'Ourense', 'Ourense', 0),
(167, 195, 'Palencia', 'Palencia', 0),
(168, 195, 'Pontevedra', 'Pontevedra', 0),
(169, 195, 'Salamanca', 'Salamanca', 0),
(170, 195, 'Santa Cruz de Tenerife', 'Santa Cruz de Tenerife', 0),
(171, 195, 'Segovia', 'Segovia', 0),
(172, 195, 'Sevilla', 'Sevilla', 0),
(173, 195, 'Soria', 'Soria', 0),
(174, 195, 'Tarragona', 'Tarragona', 0),
(175, 195, 'Teruel', 'Teruel', 0),
(176, 195, 'Toledo', 'Toledo', 0),
(177, 195, 'Valencia', 'Valencia', 0),
(178, 195, 'Valladolid', 'Valladolid', 0),
(179, 195, 'Vizcaya', 'Vizcaya', 0),
(180, 195, 'Zamora', 'Zamora', 0),
(181, 73, 'Et', 'Etranger', 0),
(182, 73, '01', 'Ain', 0),
(183, 73, '02', 'Aisne', 0),
(184, 73, '03', 'Allier', 0),
(185, 73, '04', 'Alpes de Haute Provence', 0),
(186, 73, '05', 'Hautes-Alpes', 0),
(187, 73, '06', 'Alpes Maritimes', 0),
(188, 73, '07', 'Ardèche', 0),
(189, 73, '08', 'Ardennes', 0),
(190, 73, '09', 'Ariège', 0),
(191, 73, '10', 'Aube', 0),
(192, 73, '11', 'Aude', 0),
(193, 73, '12', 'Aveyron', 0),
(194, 73, '13', 'Bouches du Rhône', 0),
(195, 73, '14', 'Calvados', 0),
(196, 73, '15', 'Cantal', 0),
(197, 73, '16', 'Charente', 0),
(198, 73, '17', 'Charente Maritime', 0),
(199, 73, '18', 'Cher', 0),
(200, 73, '19', 'Corrèze', 0),
(201, 73, '2A', 'Corse du Sud', 0),
(202, 73, '2B', 'Haute Corse', 0),
(203, 73, '21', 'Cote d''or', 0),
(204, 73, '22', 'Cotes d''Armor', 0),
(205, 73, '23', 'Creuse', 0),
(206, 73, '24', 'Dordogne', 0),
(207, 73, '25', 'Doubs', 0),
(208, 73, '26', 'Drôme', 0),
(209, 73, '27', 'Eure', 0),
(210, 73, '28', 'Eure et Loir', 0),
(211, 73, '29', 'Finistère', 0),
(212, 73, '30', 'Gard', 0),
(213, 73, '31', 'Haute Garonne', 0),
(214, 73, '32', 'Gers', 0),
(215, 73, '33', 'Gironde', 0),
(216, 73, '34', 'Hérault', 0),
(217, 73, '35', 'Ille et Vilaine', 0),
(218, 73, '36', 'Indre', 0),
(219, 73, '37', 'Indre et Loire', 0),
(220, 73, '38', 'Isère', 0),
(221, 73, '39', 'Jura', 0),
(222, 73, '40', 'Landes', 0),
(223, 73, '41', 'Loir et Cher', 0),
(224, 73, '42', 'Loire', 0),
(225, 73, '43', 'Haute Loire', 0),
(226, 73, '44', 'Loire Atlantique', 0),
(227, 73, '45', 'Loiret', 0),
(228, 73, '46', 'Lot', 0),
(229, 73, '47', 'Lot et Garonne', 0),
(230, 73, '48', 'Lozère', 0),
(231, 73, '49', 'Maine et Loire', 0),
(232, 73, '50', 'Manche', 0),
(233, 73, '51', 'Marne', 0),
(234, 73, '52', 'Haute Marne', 0),
(235, 73, '53', 'Mayenne', 0),
(236, 73, '54', 'Meurthe et Moselle', 0),
(237, 73, '55', 'Meuse', 0),
(238, 73, '56', 'Morbihan', 0),
(239, 73, '57', 'Moselle', 0),
(240, 73, '58', 'Nièvre', 0),
(241, 73, '59', 'Nord', 0),
(242, 73, '60', 'Oise', 0),
(243, 73, '61', 'Orne', 0),
(244, 73, '62', 'Pas de Calais', 0),
(245, 73, '63', 'Puy de Dôme', 0),
(246, 73, '64', 'Pyrénées Atlantiques', 0),
(247, 73, '65', 'Hautes Pyrénées', 0),
(248, 73, '66', 'Pyrénées Orientales', 0),
(249, 73, '67', 'Bas Rhin', 0),
(250, 73, '68', 'Haut Rhin', 0),
(251, 73, '69', 'Rhone', 0),
(252, 73, '70', 'Haute Saône', 0),
(253, 73, '71', 'Saône et Loire', 0),
(254, 73, '72', 'Sarthe', 0),
(255, 73, '73', 'Savoie', 0),
(256, 73, '74', 'Haute Savoie', 0),
(257, 73, '75', 'Paris', 0),
(258, 73, '76', 'Seine Maritime', 0),
(259, 73, '77', 'Seine et Marne', 0),
(260, 73, '78', 'Yvelines', 0),
(261, 73, '79', 'Deux Sèvres', 0),
(262, 73, '80', 'Somme', 0),
(263, 73, '81', 'Tarn', 0),
(264, 73, '82', 'Tarn et Garonne', 0),
(265, 73, '83', 'Var', 0),
(266, 73, '84', 'Vaucluse', 0),
(267, 73, '85', 'Vendée', 0),
(268, 73, '86', 'Vienne', 0),
(269, 73, '87', 'Haute Vienne', 0),
(270, 73, '88', 'Vosges', 0),
(271, 73, '89', 'Yonne', 0),
(272, 73, '90', 'Territoire de Belfort', 0),
(273, 73, '91', 'Essonne', 0),
(274, 73, '92', 'Hauts de Seine', 0),
(275, 73, '93', 'Seine St-Denis', 0),
(276, 73, '94', 'Val de Marne', 0),
(277, 73, '95', 'Val d''Oise', 0),
(278, 73, '971 (DOM)', 'Guadeloupe', 0),
(279, 73, '972 (DOM)', 'Martinique', 0),
(280, 73, '973 (DOM)', 'Guyane', 0),
(281, 73, '974 (DOM)', 'Saint Denis', 0),
(282, 73, '975 (DOM)', 'St-Pierre de Miquelon', 0),
(283, 73, '976 (TOM)', 'Mayotte', 0),
(284, 73, '984 (TOM)', 'Terres australes et Antartiques ', 0),
(285, 73, '985 (TOM)', 'Nouvelle Calédonie', 0),
(286, 73, '986 (TOM)', 'Wallis et Futuna', 0),
(287, 73, '987 (TOM)', 'Polynésie française', 0),
(288, 21, 'Anvers', 'Anvers', 0),
(289, 21, 'Limbourg', 'Limbourg', 0),
(290, 21, 'Hainaut', 'Hainaut', 0),
(291, 21, 'Brabant Flamand', 'Brabant Flamand', 0),
(292, 21, 'Brabant Wallon', 'Brabant Wallon', 0),
(293, 21, 'Liege', 'Liege', 0),
(294, 21, 'Namur', 'Namur', 0),
(295, 21, 'Luxembourg', 'Luxembourg', 0),
(296, 21, 'Flandre Occidental', 'Namen', 0),
(297, 21, 'Flandre Orientale', 'Flandre Orientale', 0),
(298, 105, 'AG', 'Agrigento', 0),
(299, 105, 'AL', 'Alessandria', 0),
(300, 105, 'AN', 'Ancona', 0),
(301, 105, 'AO', 'Aosta', 0),
(302, 105, 'AR', 'Arezzo', 0),
(303, 105, 'AP', 'Ascoli Piceno', 0),
(304, 105, 'AT', 'Asti', 0),
(305, 105, 'AV', 'Avellino', 0),
(306, 105, 'BA', 'Bari', 0),
(307, 105, 'BL', 'Belluno', 0),
(308, 105, 'BN', 'Benevento', 0),
(309, 105, 'BG', 'Bergamo', 0),
(310, 105, 'BI', 'Biella', 0),
(311, 105, 'BO', 'Bologna', 0),
(312, 105, 'BZ', 'Bolzano', 0),
(313, 105, 'BS', 'Brescia', 0),
(314, 105, 'BR', 'Brindisi', 0),
(315, 105, 'CA', 'Cagliari', 0),
(316, 105, 'CL', 'Caltanissetta', 0),
(317, 105, 'CB', 'Campobasso', 0),
(318, 105, 'CE', 'Caserta', 0),
(319, 105, 'CT', 'Catania', 0),
(320, 105, 'CZ', 'Catanzaro', 0),
(321, 105, 'CH', 'Chieti', 0),
(322, 105, 'CO', 'Como', 0),
(323, 105, 'CS', 'Cosenza', 0),
(324, 105, 'CR', 'Cremona', 0),
(325, 105, 'KR', 'Crotone', 0),
(326, 105, 'CN', 'Cuneo', 0),
(327, 105, 'EN', 'Enna', 0),
(328, 105, 'FE', 'Ferrara', 0),
(329, 105, 'FI', 'Firenze', 0),
(330, 105, 'FG', 'Foggia', 0),
(331, 105, 'FO', 'Forlì', 0),
(332, 105, 'FR', 'Frosinone', 0),
(333, 105, 'GE', 'Genova', 0),
(334, 105, 'GO', 'Gorizia', 0),
(335, 105, 'GR', 'Grosseto', 0),
(336, 105, 'IM', 'Imperia', 0),
(337, 105, 'IS', 'Isernia', 0),
(338, 105, 'AQ', 'Aquila', 0),
(339, 105, 'SP', 'La Spezia', 0),
(340, 105, 'LT', 'Latina', 0),
(341, 105, 'LE', 'Lecce', 0),
(342, 105, 'LC', 'Lecco', 0),
(343, 105, 'LI', 'Livorno', 0),
(344, 105, 'LO', 'Lodi', 0),
(345, 105, 'LU', 'Lucca', 0),
(346, 105, 'MC', 'Macerata', 0),
(347, 105, 'MN', 'Mantova', 0),
(348, 105, 'MS', 'Massa-Carrara', 0),
(349, 105, 'MT', 'Matera', 0),
(350, 105, 'ME', 'Messina', 0),
(351, 105, 'MI', 'Milano', 0),
(352, 105, 'MO', 'Modena', 0),
(353, 105, 'NA', 'Napoli', 0),
(354, 105, 'NO', 'Novara', 0),
(355, 105, 'NU', 'Nuoro', 0),
(356, 105, 'OR', 'Oristano', 0),
(357, 105, 'PD', 'Padova', 0),
(358, 105, 'PA', 'Palermo', 0),
(359, 105, 'PR', 'Parma', 0),
(360, 105, 'PG', 'Perugia', 0),
(361, 105, 'PV', 'Pavia', 0),
(362, 105, 'PS', 'Pesaro e Urbino', 0),
(363, 105, 'PE', 'Pescara', 0),
(364, 105, 'PC', 'Piacenza', 0),
(365, 105, 'PI', 'Pisa', 0),
(366, 105, 'PT', 'Pistoia', 0),
(367, 105, 'PN', 'Pordenone', 0),
(368, 105, 'PZ', 'Potenza', 0),
(369, 105, 'PO', 'Prato', 0),
(370, 105, 'RG', 'Ragusa', 0),
(371, 105, 'RA', 'Ravenna', 0),
(372, 105, 'RC', 'Reggio di Calabria', 0),
(373, 105, 'RE', 'Reggio Emilia', 0),
(374, 105, 'RI', 'Rieti', 0),
(375, 105, 'RN', 'Rimini', 0),
(376, 105, 'RM', 'Roma', 0),
(377, 105, 'RO', 'Rovigo', 0),
(378, 105, 'SA', 'Salerno', 0),
(379, 105, 'SS', 'Sassari', 0),
(380, 105, 'SV', 'Savona', 0),
(381, 105, 'SI', 'Siena', 0),
(382, 105, 'SR', 'Siracusa', 0),
(383, 105, 'SO', 'Sondrio', 0),
(384, 105, 'TA', 'Taranto', 0),
(385, 105, 'TE', 'Teramo', 0),
(386, 105, 'TR', 'Terni', 0),
(387, 105, 'TO', 'Torino', 0),
(388, 105, 'TP', 'Trapani', 0),
(389, 105, 'TN', 'Trento', 0),
(390, 105, 'TV', 'Treviso', 0),
(391, 105, 'TS', 'Trieste', 0),
(392, 105, 'UD', 'Udine', 0),
(393, 105, 'VA', 'Varese', 0),
(394, 105, 'VE', 'Venezia', 0),
(395, 105, 'VB', 'Verbania', 0),
(396, 105, 'VC', 'Vercelli', 0),
(397, 105, 'VR', 'Verona', 0),
(398, 105, 'VV', 'Vibo Valentia', 0),
(399, 105, 'VI', 'Vicenza', 0),
(400, 105, 'VT', 'Viterbo', 0),
(401, 182, 'RSM', 'Acquaviva', 0),
(402, 182, 'RSM', 'Borgo Maggiore', 0),
(403, 182, 'RSM', 'Ca''Rigo', 0),
(404, 182, 'RSM', 'Cailungo', 0),
(405, 182, 'RSM', 'Casole', 0),
(406, 182, 'RSM', 'Cerbaiola', 0),
(407, 182, 'RSM', 'Chiesanuova', 0),
(408, 182, 'RSM', 'Dogana', 0),
(409, 182, 'RSM', 'Domagnano', 0),
(410, 182, 'RSM', 'Faetano', 0),
(411, 182, 'RSM', 'Falciano', 0),
(412, 182, 'RSM', 'Fiorentino', 0),
(413, 182, 'RSM', 'Fiorina', 0),
(414, 182, 'RSM', 'Galazzano', 0),
(415, 182, 'RSM', 'Gualdicciolo', 0),
(416, 182, 'RSM', 'Montegiardino', 0),
(417, 182, 'RSM', 'Murata', 0),
(418, 182, 'RSM', 'Rovereta', 0),
(419, 182, 'RSM', 'S.Giovanni', 0),
(420, 182, 'RSM', 'S.ta Mustiola', 0),
(421, 182, 'RSM', 'SanMarino', 0),
(422, 182, 'RSM', 'Serravalle', 0),
(423, 182, 'RSM', 'Teglio', 0),
(424, 182, 'RSM', 'Torraccia', 0),
(425, 182, 'RSM', 'Valdragone', 0),
(426, 182, 'RSM', 'Ventoso', 0),
(427, 97, 'BUD', 'Budapest', 0),
(428, 97, 'BAR', 'Baranya', 0),
(429, 97, 'BKK', 'Bacs-Kiskun', 0),
(430, 97, 'Békés', 'Békés', 0),
(431, 97, 'BAZ', 'Borsod-Abaúj-Zemplén', 0),
(432, 97, 'CSO', 'Csongrad', 0),
(433, 97, 'FEJ', 'Fejér', 0),
(434, 97, 'GYS', 'Gyõr-Sopron', 0),
(435, 97, 'HAB', 'Hajdú-Bihar', 0),
(436, 97, 'HEV', 'Heves', 0),
(437, 97, 'JNS', 'Jasz-Nagykun-Szolnok', 0),
(438, 97, 'KOE', 'Komarom-Esztergom', 0),
(439, 97, 'NOG', 'Nógrad', 0),
(440, 97, 'PES', 'Pest', 0),
(441, 97, 'SOM', 'Somogy', 0),
(442, 97, 'SSB', 'Szabolcs-Szatmar-Bereg', 0),
(443, 97, 'TOL', 'Tolna', 0),
(444, 97, 'VAS', 'Vas', 0),
(445, 97, 'VES', 'Veszprém', 0),
(446, 97, 'ZAL', 'Zala', 0),
(447, 103, 'CAR', 'Carlow', 0),
(448, 103, 'CAV', 'Cavan', 0),
(449, 103, 'CLA', 'Clare', 0),
(450, 103, 'COR', 'Cork', 0),
(451, 103, 'DON', 'Donegal', 0),
(452, 103, 'DUB', 'Dublin', 0),
(453, 103, 'GAL', 'Galway', 0),
(454, 103, 'KER', 'Kerry', 0),
(455, 103, 'KID', 'Kildare', 0),
(456, 103, 'KIK', 'Kilkenny', 0),
(457, 103, 'LET', 'Leitrim', 0),
(458, 103, 'LEX', 'Leix', 0),
(459, 103, 'LIM', 'Limerick', 0),
(460, 103, 'LOG', 'Longford', 0),
(461, 103, 'LOU', 'Louth', 0),
(462, 103, 'MAY', 'Mayo', 0),
(463, 103, 'MEA', 'Meath', 0),
(464, 103, 'MOG', 'Monaghan', 0),
(465, 103, 'OFF', 'Offaly', 0),
(466, 103, 'ROS', 'Roscommon', 0),
(467, 103, 'SLI', 'Sligo', 0),
(468, 103, 'TIP', 'Tipperary', 0),
(469, 103, 'WAT', 'Waterford', 0),
(470, 103, 'WEM', 'Westmeath', 0),
(471, 103, 'WEX', 'Wexford', 0),
(472, 103, 'WIC', 'Wicklow', 0),
(473, 56, 'B', 'Jihomoravsky', 0),
(474, 56, 'C', 'Jihoèesky', 0),
(475, 56, 'J', 'Vysoèina', 0),
(476, 56, 'K', 'Karlovarsky kraj', 0),
(477, 56, 'H', 'Kralovéhradecky kraj', 0),
(478, 56, 'L', 'Liberecky kraj', 0),
(479, 56, 'M', 'Olomoucky kraj', 0),
(480, 56, 'P', 'Plzeosky kraj', 0),
(481, 56, 'A', 'Hlavní město Praha', 0),
(482, 56, 'S', 'Středočeský', 0),
(483, 56, 'U', 'Ustecky kraj', 0),
(484, 56, 'Z', 'Zlínský', 0),
(485, 56, 'T', 'Moravskoslezsky', 0),
(486, 56, 'E', 'Pardubicky', 0),
(487, 160, 'OSL', 'Oslo', 0),
(488, 160, 'AKE', 'Akershus', 0),
(489, 160, 'AUA', 'Aust-Agder', 0),
(490, 160, 'BUS', 'Buskerud', 0),
(491, 160, 'FIN', 'Finnmark', 0),
(492, 160, 'HED', 'Hedmark', 0),
(493, 160, 'HOR', 'Hordaland', 0),
(494, 160, 'MOR', 'Nord-Trøndelag', 0),
(495, 160, 'NOR', 'Nordland', 0),
(496, 160, 'NTR', 'Nord-Trøndelag', 0),
(497, 160, 'OPP', 'Oppland', 0),
(498, 160, 'ROG', 'Rogaland', 0),
(499, 160, 'SOF', 'Sogn og Fjordane', 0),
(500, 160, 'STR', 'Sør-Trøndelag', 0),
(501, 160, 'TEL', 'Telemark', 0),
(502, 160, 'TRO', 'Troms', 0),
(503, 160, 'VEA', 'Vest-Agder', 0),
(504, 160, 'OST', 'Ostfold', 0),
(505, 160, 'SVA', 'Svalbard', 0),
(506, 203, 'AB', 'Stockholm', 0),
(507, 203, 'C', 'Uppsala', 0),
(508, 203, 'D', 'Södermanland', 0),
(509, 203, 'E', 'Östergötland', 0),
(510, 203, 'F', 'Jönköping', 0),
(511, 203, 'G', 'Kronoberg', 0),
(512, 203, 'H', 'Kalmar', 0),
(513, 203, 'I', 'Gotland', 0),
(514, 203, 'K', 'Blekinge', 0),
(515, 203, 'M', 'Skane', 0),
(516, 203, 'N', 'Halland', 0),
(517, 203, 'O', 'Västra Götaland', 0),
(518, 203, 'S', 'Värmland', 0),
(519, 203, 'T', 'Örebro', 0),
(520, 203, 'U', 'Västmanland', 0),
(521, 203, 'W', 'Dalarna', 0),
(522, 203, 'X', 'Gävleborg', 0),
(523, 203, 'Y', 'Västernorrland', 0),
(524, 203, 'Z', 'Jämtland', 0),
(525, 203, 'AC', 'Västerbotten', 0),
(526, 203, 'BD', 'Norrbotten', 0),
(527, 222, 'Avon', 'England - Avon', 0),
(528, 222, 'Bath and Northeast Somerset', 'England - Bath and Northeast Som', 0),
(529, 222, 'Bedfordshire', 'England - Bedfordshire', 0),
(530, 222, 'Bristol', 'England - Bristol', 0),
(531, 222, 'Buckinghamshire', 'England - Buckinghamshire', 0),
(532, 222, 'Cambridgeshire', 'England - Cambridgeshire', 0),
(533, 222, 'Cheshire', 'England - Cheshire', 0),
(534, 222, 'Cleveland', 'England - Cleveland', 0),
(535, 222, 'Cornwall', 'England - Cornwall', 0),
(536, 222, 'Cumbria', 'England - Cumbria', 0),
(537, 222, 'Derbyshire', 'England - Derbyshire', 0),
(538, 222, 'Devon', 'England - Devon', 0),
(539, 222, 'Dorset', 'England - Dorset', 0),
(540, 222, 'Durham', 'England - Durham', 0),
(541, 222, 'E. Riding', 'England - East Riding of Yorkshi', 0),
(542, 222, 'E. Sussex', 'England - East Sussex', 0),
(543, 222, 'Essex', 'England - Essex', 0),
(544, 222, 'Gloucestershire', 'England - Gloucestershire', 0),
(545, 222, 'Gr. Manchester', 'England - Greater Manchester', 0),
(546, 222, 'Hampshire', 'England - Hampshire', 0),
(547, 222, 'Herefordshire', 'England - Herefordshire', 0),
(548, 222, 'Hertfordshire', 'England - Hertfordshire', 0),
(549, 222, 'Humberside', 'England - Humberside', 0),
(550, 222, 'Isle of Wight', 'England - Isle of Wight', 0),
(551, 222, 'Isles of Scilly', 'England - Isles of Scilly', 0),
(552, 222, 'Kent', 'England - Kent', 0),
(553, 222, 'Lancashire', 'England - Lancashire', 0),
(554, 222, 'Leicestershire', 'England - Leicestershire', 0),
(555, 222, 'Lincolnshire', 'England - Lincolnshire', 0),
(556, 222, 'London', 'England - London', 0),
(557, 222, 'Merseyside', 'England - Merseyside', 0),
(558, 222, 'Middlesex', 'England - Middlesex', 0),
(559, 222, 'Norfolk', 'England - Norfolk', 0),
(560, 222, 'N. Yorkshire', 'England - North Yorkshire', 0),
(561, 222, 'Northamptonshire', 'England - Northamptonshire', 0),
(562, 222, 'Northumberland', 'England - Northumberland', 0),
(563, 222, 'Nottinghamshire', 'England - Nottinghamshire', 0),
(564, 222, 'Oxfordshire', 'England - Oxfordshire', 0),
(565, 222, 'Rutland', 'England - Rutland', 0),
(566, 222, 'Shropshire', 'England - Shropshire', 0),
(567, 222, 'Somerset', 'England - Somerset', 0),
(568, 222, 'S. Gloucestershire', 'England - South Gloucestershire', 0),
(569, 222, 'S. Yorkshire', 'England - South Yorkshire', 0),
(570, 222, 'Staffordshire', 'England - Staffordshire', 0),
(571, 222, 'Suffolk', 'England - Suffolk', 0),
(572, 222, 'Surrey', 'England - Surrey', 0),
(573, 222, 'Tyne and Wear', 'England - Tyne and Wear', 0),
(574, 222, 'Warwickshire', 'England - Warwickshire', 0),
(575, 222, 'W. Midlands', 'England - West Midlands', 0),
(576, 222, 'W. Sussex', 'England - West Sussex', 0),
(577, 222, 'W. Yorkshire', 'England - West Yorkshire', 0),
(578, 222, 'Wiltshire', 'England - Wiltshire', 0),
(579, 222, 'Worcestershire', 'England - Worcestershire', 0),
(580, 222, 'Antrim', 'N. Ireland - Antrim', 0),
(581, 222, 'Armagh', 'N. Ireland - Armagh', 0),
(582, 222, 'Down', 'N. Ireland - Down', 0),
(583, 222, 'Fermanagh', 'N. Ireland - Fermanagh', 0),
(584, 222, 'Londonderry', 'N. Ireland - Londonderry', 0),
(585, 222, 'Tyrone', 'N. Ireland - Tyrone', 0),
(586, 222, 'Aberdeen City', 'Scotland - Aberdeen City', 0),
(587, 222, 'Aberdeenshire', 'Scotland - Aberdeenshire', 0),
(588, 222, 'Angus', 'Scotland - Angus', 0),
(589, 222, 'Argyll and Bute', 'Scotland - Argyll and Bute', 0),
(590, 222, 'Borders', 'Scotland - Borders', 0),
(591, 222, 'Clackmannan', 'Scotland - Clackmannan', 0),
(592, 222, 'Dumfries and Galloway', 'Scotland - Dumfries and Galloway', 0),
(593, 222, 'E. Ayrshire', 'Scotland - East Ayrshire', 0),
(594, 222, 'E. Dunbartonshire', 'Scotland - East Dunbartonshire', 0),
(595, 222, 'E. Lothian', 'Scotland - East Lothian', 0),
(596, 222, 'E. Renfrewshire', 'Scotland - East Renfrewshire', 0),
(597, 222, 'Edinburgh City', 'Scotland - Edinburgh City', 0),
(598, 222, 'Falkirk', 'Scotland - Falkirk', 0),
(599, 222, 'Fife', 'Scotland - Fife', 0),
(600, 222, 'Glasgow', 'Scotland - Glasgow', 0),
(601, 222, 'Highland', 'Scotland - Highland', 0),
(602, 222, 'Inverclyde', 'Scotland - Inverclyde', 0),
(603, 222, 'Midlothian', 'Scotland - Midlothian', 0),
(604, 222, 'Moray', 'Scotland - Moray', 0),
(605, 222, 'North Ayrshire', 'Scotland - North Ayrshire', 0),
(606, 222, 'North Lanarkshire', 'Scotland - North Lanarkshire', 0),
(607, 222, 'Orkney', 'Scotland - Orkney', 0),
(608, 222, 'Perthshire and Kinross', 'Scotland - Perthshire and Kinros', 0),
(609, 222, 'Renfrewshire', 'Scotland - Renfrewshire', 0),
(610, 222, 'Shetland', 'Scotland - Shetland', 0),
(611, 222, 'South Ayrshire', 'Scotland - South Ayrshire', 0),
(612, 222, 'South Lanarkshire', 'Scotland - South Lanarkshire', 0),
(613, 222, 'Stirling', 'Scotland - Stirling', 0),
(614, 222, 'West Dunbartonshire', 'Scotland - West Dunbartonshire', 0),
(615, 222, 'West Lothian', 'Scotland - West Lothian', 0),
(616, 222, 'Western Isles', 'Scotland - Western Isles', 0),
(617, 222, 'Blaenau Gwent', 'UA Wales - Blaenau Gwent', 0),
(618, 222, 'Bridgend', 'UA Wales - Bridgend', 0),
(619, 222, 'Caerphilly', 'UA Wales - Caerphilly', 0),
(620, 222, 'Cardiff', 'UA Wales - Cardiff', 0),
(621, 222, 'Carmarthenshire', 'UA Wales - Carmarthenshire', 0),
(622, 222, 'Ceredigion', 'UA Wales - Ceredigion', 0),
(623, 222, 'Conwy', 'UA Wales - Conwy', 0),
(624, 222, 'Denbighshire', 'UA Wales - Denbighshire', 0),
(625, 222, 'Flintshire', 'UA Wales - Flintshire', 0),
(626, 222, 'Gwynedd', 'UA Wales - Gwynedd', 0),
(627, 222, 'Isle of Anglesey', 'UA Wales - Isle of Anglesey', 0),
(628, 222, 'Merthyr Tydfil', 'UA Wales - Merthyr Tydfil', 0),
(629, 222, 'Monmouthshire', 'UA Wales - Monmouthshire', 0),
(630, 222, 'Neath Port Talbot', 'UA Wales - Neath Port Talbot', 0),
(631, 222, 'Newport', 'UA Wales - Newport', 0),
(632, 222, 'Pembrokeshire', 'UA Wales - Pembrokeshire', 0),
(633, 222, 'Powys', 'UA Wales - Powys', 0),
(634, 222, 'Rhondda Cynon Taff', 'UA Wales - Rhondda Cynon Taff', 0),
(635, 222, 'Swansea', 'UA Wales - Swansea', 0),
(636, 222, 'Torfaen', 'UA Wales - Torfaen', 0),
(637, 222, 'The Vale of Glamorgan', 'UA Wales - The Vale of Glamorgan', 0),
(638, 222, 'Wrexham', 'UA Wales - Wrexham', 0),
(639, 222, 'Channel Islands', 'UK Offshore Dependencies - Chann', 0),
(640, 222, 'Isle of Man', 'UK Offshore Dependencies - Isle ', 0),
(641, 195, 'Zaragoza', 'Zaragoza', 0);
-- --------------------------------------------------------
--
-- Table structure for table `clic_zones_to_geo_zones`
--
CREATE TABLE `clic_zones_to_geo_zones` (
`association_id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary key - unique identifier for each zone-to-geo-zone association',
`zone_country_id` int NOT NULL COMMENT 'FK to countries table - country identifier',
`zone_id` int DEFAULT NULL COMMENT 'FK to zones table - specific zone/region, NULL for all zones in country',
`geo_zone_id` int DEFAULT NULL COMMENT 'FK to geo_zones table - geographic zone group identifier',
`last_modified` datetime DEFAULT NULL COMMENT 'Timestamp of last modification',
`date_added` datetime NOT NULL COMMENT 'Timestamp when association was created',
PRIMARY KEY (`association_id`),
KEY `idx_zones_to_geo_zones_country_id` (`zone_country_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Mapping between zones and geographic zone groups for tax and shipping rules' AUTO_INCREMENT=84 ;
--
-- Dumping data for table `clic_zones_to_geo_zones`
--
INSERT INTO `clic_zones_to_geo_zones` VALUES
(2, 73, 0, 2, NULL, '2006-04-11 18:48:48'),
(4, 81, 0, 3, NULL, '2006-05-04 10:29:41'),
(5, 14, 0, 3, NULL, '2006-05-04 10:31:27'),
(6, 21, 0, 3, NULL, '2006-05-04 10:31:49'),
(7, 55, 0, 3, NULL, '2006-05-04 10:32:32'),
(8, 57, 0, 3, NULL, '2006-05-04 10:32:47'),
(9, 67, 0, 3, NULL, '2006-05-04 10:33:17'),
(10, 72, 0, 3, NULL, '2006-05-04 10:33:31'),
(12, 84, 0, 3, NULL, '2006-05-04 10:33:56'),
(14, 103, 0, 3, NULL, '2006-05-04 10:35:42'),
(15, 105, 0, 3, NULL, '2006-05-04 10:35:57'),
(16, 117, 0, 3, NULL, '2006-05-04 10:36:50'),
(17, 123, 0, 3, NULL, '2006-05-04 10:37:26'),
(18, 124, 0, 3, NULL, '2006-05-04 10:37:53'),
(19, 132, 0, 3, NULL, '2006-05-04 10:38:21'),
(20, 150, 0, 3, NULL, '2006-05-04 10:39:27'),
(21, 170, 0, 3, NULL, '2006-05-04 10:39:43'),
(22, 171, 0, 3, NULL, '2006-05-04 10:40:22'),
(23, 56, 0, 3, NULL, '2006-05-04 10:41:04'),
(24, 222, 0, 3, NULL, '2006-05-04 10:41:39'),
(25, 189, 0, 3, NULL, '2006-05-04 10:42:32'),
(26, 190, 0, 3, NULL, '2006-05-04 10:43:00'),
(27, 203, 0, 3, NULL, '2006-05-04 10:43:41'),
(28, 195, 0, 3, NULL, '2006-05-04 10:45:45'),
(30, 0, 0, 3, NULL, '2006-07-08 17:51:18'),
(60, 38, 66, 7, NULL, '2008-09-15 21:52:33'),
(63, 38, 72, 7, NULL, '2008-09-15 21:53:08'),
(71, 38, 67, 8, NULL, '2015-02-09 16:04:56'),
(72, 38, 70, 11, NULL, '2015-02-09 16:05:57'),
(73, 38, 69, 11, NULL, '2015-02-09 16:06:12'),
(74, 38, 74, 11, NULL, '2015-02-09 16:06:26'),
(75, 38, 75, 12, NULL, '2015-02-09 16:07:25'),
(76, 38, 71, 13, NULL, '2015-02-09 16:08:19'),
(77, 38, 76, 7, NULL, '2015-02-09 16:10:12'),
(78, 38, 78, 7, NULL, '2015-02-09 16:10:29'),
(79, 38, 68, 7, NULL, '2015-02-09 16:10:46'),
(80, 38, 77, 7, NULL, '2015-02-09 16:11:01'),
(81, 38, 68, 14, NULL, '2015-02-09 16:12:03'),
(82, 38, 77, 14, NULL, '2015-02-09 16:12:14'),
(83, 38, 76, 9, NULL, '2015-02-09 18:53:27');
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;