diff --git a/catalog/account.php b/catalog/account.php index ae34868b0..4adc12443 100644 --- a/catalog/account.php +++ b/catalog/account.php @@ -1,15 +1,11 @@ _type = 'pro template pack'; + /** + * The addon class name + */ + $this->_code = 'Pro_Pack_595'; + /** + * The addon title used in the addons store listing + */ + $this->_title = $lC_Language->get('addon_pro_pack_595_title'); + /** + * The addon description used in the addons store listing + */ + $this->_description = $lC_Language->get('addon_pro_pack_595_description'); + /** + * The developers name + */ + $this->_author = 'Algozone, Inc.'; + /** + * The developers web address + */ + $this->_authorWWW = 'http://www.algozone.com'; + /** + * The addon version + */ + $this->_version = '1.0.0'; + /** + * The Loaded 7 core compatibility version + */ + $this->_compatibility = '7.0'; // the addon is compatible with this core version and later + /** + * The addon image used in the addons store listing + */ + $this->_thumbnail = '' . lc_image(DIR_WS_CATALOG . 'addons/' . $this->_code . '/images/LCAZ00595.png', null, 160, 120) . ''; + /** + * The addon enable/disable switch + */ + $this->_enabled = true; + + $this->_rating = '5'; + } + /** + * Checks to see if the addon has been installed + * + * @access public + * @return boolean + */ + public function isInstalled() { + return (bool)defined('ADDONS_PROPACK_' . strtoupper($this->_code) . '_STATUS'); + } + /** + * Install the addon + * + * @access public + * @return void + */ + public function install() { + global $lC_Database; + + // $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_function, set_function, date_added) values ('Enable AddOn', 'ADDONS_PROPACK_" . strtoupper($this->_code) . "_STATUS', '-1', 'Do you want to enable this addon?', '6', '0', 'lc_cfg_use_get_boolean_value', 'lc_cfg_set_boolean_value(array(1, -1))', now())"); + // $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Order Threshold', 'ADDONS_PROPACK_" . strtoupper($this->_code) . "_MINIMUM_ORDER', '20', 'The minimum order amount to apply free shipping to.', '6', '0', now())"); + // $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_function, set_function, date_added) values ('Shipping Zone', 'ADDONS_PROPACK_" . strtoupper($this->_code) . "_ZONE', '0', 'If a zone is selected, only enable this shipping method for that zone.', '6', '0', 'lc_cfg_use_get_zone_class_title', 'lc_cfg_set_zone_classes_pull_down_menu', now())"); + } + /** + * Return the configuration parameter keys an an array + * + * @access public + * @return array + */ + public function getKeys() { + if (!isset($this->_keys)) { + $this->_keys = array('ADDONS_PROPACK_' . strtoupper($this->_code) . '_STATUS', + 'ADDONS_PROPACK_' . strtoupper($this->_code) . '_MINIMUM_ORDER', + 'ADDONS_PROPACK_' . strtoupper($this->_code) . '_ZONE'); + } + + return $this->_keys; + } +} +?> \ No newline at end of file diff --git a/catalog/addons/Pro_Pack_595/images/LCAZ00595.png b/catalog/addons/Pro_Pack_595/images/LCAZ00595.png new file mode 100644 index 000000000..4015f045a Binary files /dev/null and b/catalog/addons/Pro_Pack_595/images/LCAZ00595.png differ diff --git a/catalog/addons/Pro_Pack_595/languages/en_US.xml b/catalog/addons/Pro_Pack_595/languages/en_US.xml new file mode 100644 index 000000000..15c33aeb6 --- /dev/null +++ b/catalog/addons/Pro_Pack_595/languages/en_US.xml @@ -0,0 +1,15 @@ + + + + + addon_pro_pack_595_title + + general + + + addon_pro_pack_595_description + + general + + + \ No newline at end of file diff --git a/catalog/addons/Pro_Pack_596/controller.php b/catalog/addons/Pro_Pack_596/controller.php new file mode 100644 index 000000000..19e8ea4b8 --- /dev/null +++ b/catalog/addons/Pro_Pack_596/controller.php @@ -0,0 +1,98 @@ +_type = 'pro template pack'; + /** + * The addon class name + */ + $this->_code = 'Pro_Pack_596'; + /** + * The addon title used in the addons store listing + */ + $this->_title = $lC_Language->get('addon_pro_pack_596_title'); + /** + * The addon description used in the addons store listing + */ + $this->_description = $lC_Language->get('addon_pro_pack_596_description'); + /** + * The developers name + */ + $this->_author = 'Algozone, Inc.'; + /** + * The developers web address + */ + $this->_authorWWW = 'http://www.algozone.com'; + /** + * The addon version + */ + $this->_version = '1.0.0'; + /** + * The Loaded 7 core compatibility version + */ + $this->_compatibility = '7.0'; // the addon is compatible with this core version and later + /** + * The addon image used in the addons store listing + */ + $this->_thumbnail = '' . lc_image(DIR_WS_CATALOG . 'addons/' . $this->_code . '/images/LCAZ00596.png', null, 160, 120) . ''; + /** + * The addon enable/disable switch + */ + $this->_enabled = true; + + $this->_rating = '5'; + } + /** + * Checks to see if the addon has been installed + * + * @access public + * @return boolean + */ + public function isInstalled() { + return (bool)defined('ADDONS_PROPACK_' . strtoupper($this->_code) . '_STATUS'); + } + /** + * Install the addon + * + * @access public + * @return void + */ + public function install() { + global $lC_Database; + + // $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_function, set_function, date_added) values ('Enable AddOn', 'ADDONS_PROPACK_" . strtoupper($this->_code) . "_STATUS', '-1', 'Do you want to enable this addon?', '6', '0', 'lc_cfg_use_get_boolean_value', 'lc_cfg_set_boolean_value(array(1, -1))', now())"); + // $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Order Threshold', 'ADDONS_PROPACK_" . strtoupper($this->_code) . "_MINIMUM_ORDER', '20', 'The minimum order amount to apply free shipping to.', '6', '0', now())"); + // $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_function, set_function, date_added) values ('Shipping Zone', 'ADDONS_PROPACK_" . strtoupper($this->_code) . "_ZONE', '0', 'If a zone is selected, only enable this shipping method for that zone.', '6', '0', 'lc_cfg_use_get_zone_class_title', 'lc_cfg_set_zone_classes_pull_down_menu', now())"); + } + /** + * Return the configuration parameter keys an an array + * + * @access public + * @return array + */ + public function getKeys() { + if (!isset($this->_keys)) { + $this->_keys = array('ADDONS_PROPACK_' . strtoupper($this->_code) . '_STATUS', + 'ADDONS_PROPACK_' . strtoupper($this->_code) . '_MINIMUM_ORDER', + 'ADDONS_PROPACK_' . strtoupper($this->_code) . '_ZONE'); + } + + return $this->_keys; + } +} +?> \ No newline at end of file diff --git a/catalog/addons/Pro_Pack_596/images/LCAZ00596.png b/catalog/addons/Pro_Pack_596/images/LCAZ00596.png new file mode 100644 index 000000000..cd4192518 Binary files /dev/null and b/catalog/addons/Pro_Pack_596/images/LCAZ00596.png differ diff --git a/catalog/addons/Pro_Pack_596/languages/en_US.xml b/catalog/addons/Pro_Pack_596/languages/en_US.xml new file mode 100644 index 000000000..e64806dde --- /dev/null +++ b/catalog/addons/Pro_Pack_596/languages/en_US.xml @@ -0,0 +1,15 @@ + + + + + addon_pro_pack_596_title + + general + + + addon_pro_pack_596_description + + general + + + \ No newline at end of file diff --git a/catalog/addons/Pro_Pack_598/controller.php b/catalog/addons/Pro_Pack_598/controller.php new file mode 100644 index 000000000..31d814887 --- /dev/null +++ b/catalog/addons/Pro_Pack_598/controller.php @@ -0,0 +1,98 @@ +_type = 'pro template pack'; + /** + * The addon class name + */ + $this->_code = 'Pro_Pack_598'; + /** + * The addon title used in the addons store listing + */ + $this->_title = $lC_Language->get('addon_pro_pack_598_title'); + /** + * The addon description used in the addons store listing + */ + $this->_description = $lC_Language->get('addon_pro_pack_598_description'); + /** + * The developers name + */ + $this->_author = 'Algozone, Inc.'; + /** + * The developers web address + */ + $this->_authorWWW = 'http://www.algozone.com'; + /** + * The addon version + */ + $this->_version = '1.0.0'; + /** + * The Loaded 7 core compatibility version + */ + $this->_compatibility = '7.0'; // the addon is compatible with this core version and later + /** + * The addon image used in the addons store listing + */ + $this->_thumbnail = '' . lc_image(DIR_WS_CATALOG . 'addons/' . $this->_code . '/images/LCAZ00598.png', null, 160, 120) . ''; + /** + * The addon enable/disable switch + */ + $this->_enabled = true; + + $this->_rating = '5'; + } + /** + * Checks to see if the addon has been installed + * + * @access public + * @return boolean + */ + public function isInstalled() { + return (bool)defined('ADDONS_PROPACK_' . strtoupper($this->_code) . '_STATUS'); + } + /** + * Install the addon + * + * @access public + * @return void + */ + public function install() { + global $lC_Database; + + // $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_function, set_function, date_added) values ('Enable AddOn', 'ADDONS_PROPACK_" . strtoupper($this->_code) . "_STATUS', '-1', 'Do you want to enable this addon?', '6', '0', 'lc_cfg_use_get_boolean_value', 'lc_cfg_set_boolean_value(array(1, -1))', now())"); + // $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Order Threshold', 'ADDONS_PROPACK_" . strtoupper($this->_code) . "_MINIMUM_ORDER', '20', 'The minimum order amount to apply free shipping to.', '6', '0', now())"); + // $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_function, set_function, date_added) values ('Shipping Zone', 'ADDONS_PROPACK_" . strtoupper($this->_code) . "_ZONE', '0', 'If a zone is selected, only enable this shipping method for that zone.', '6', '0', 'lc_cfg_use_get_zone_class_title', 'lc_cfg_set_zone_classes_pull_down_menu', now())"); + } + /** + * Return the configuration parameter keys an an array + * + * @access public + * @return array + */ + public function getKeys() { + if (!isset($this->_keys)) { + $this->_keys = array('ADDONS_PROPACK_' . strtoupper($this->_code) . '_STATUS', + 'ADDONS_PROPACK_' . strtoupper($this->_code) . '_MINIMUM_ORDER', + 'ADDONS_PROPACK_' . strtoupper($this->_code) . '_ZONE'); + } + + return $this->_keys; + } +} +?> \ No newline at end of file diff --git a/catalog/addons/Pro_Pack_598/images/LCAZ00598.png b/catalog/addons/Pro_Pack_598/images/LCAZ00598.png new file mode 100644 index 000000000..061f2194e Binary files /dev/null and b/catalog/addons/Pro_Pack_598/images/LCAZ00598.png differ diff --git a/catalog/addons/Pro_Pack_598/languages/en_US.xml b/catalog/addons/Pro_Pack_598/languages/en_US.xml new file mode 100644 index 000000000..4cf6d4a62 --- /dev/null +++ b/catalog/addons/Pro_Pack_598/languages/en_US.xml @@ -0,0 +1,15 @@ + + + + + addon_pro_pack_598_title + + general + + + addon_pro_pack_598_description + + general + + + \ No newline at end of file diff --git a/catalog/addons/Pro_Pack_601/controller.php b/catalog/addons/Pro_Pack_601/controller.php new file mode 100644 index 000000000..f1e75b904 --- /dev/null +++ b/catalog/addons/Pro_Pack_601/controller.php @@ -0,0 +1,98 @@ +_type = 'pro template pack'; + /** + * The addon class name + */ + $this->_code = 'Pro_Pack_601'; + /** + * The addon title used in the addons store listing + */ + $this->_title = $lC_Language->get('addon_pro_pack_601_title'); + /** + * The addon description used in the addons store listing + */ + $this->_description = $lC_Language->get('addon_pro_pack_601_description'); + /** + * The developers name + */ + $this->_author = 'Algozone, Inc.'; + /** + * The developers web address + */ + $this->_authorWWW = 'http://www.algozone.com'; + /** + * The addon version + */ + $this->_version = '1.0.0'; + /** + * The Loaded 7 core compatibility version + */ + $this->_compatibility = '7.0'; // the addon is compatible with this core version and later + /** + * The addon image used in the addons store listing + */ + $this->_thumbnail = '' . lc_image(DIR_WS_CATALOG . 'addons/' . $this->_code . '/images/LCAZ00601.png', null, 160, 120) . ''; + /** + * The addon enable/disable switch + */ + $this->_enabled = true; + + $this->_rating = '5'; + } + /** + * Checks to see if the addon has been installed + * + * @access public + * @return boolean + */ + public function isInstalled() { + return (bool)defined('ADDONS_PROPACK_' . strtoupper($this->_code) . '_STATUS'); + } + /** + * Install the addon + * + * @access public + * @return void + */ + public function install() { + global $lC_Database; + + // $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_function, set_function, date_added) values ('Enable AddOn', 'ADDONS_PROPACK_" . strtoupper($this->_code) . "_STATUS', '-1', 'Do you want to enable this addon?', '6', '0', 'lc_cfg_use_get_boolean_value', 'lc_cfg_set_boolean_value(array(1, -1))', now())"); + // $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Order Threshold', 'ADDONS_PROPACK_" . strtoupper($this->_code) . "_MINIMUM_ORDER', '20', 'The minimum order amount to apply free shipping to.', '6', '0', now())"); + // $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_function, set_function, date_added) values ('Shipping Zone', 'ADDONS_PROPACK_" . strtoupper($this->_code) . "_ZONE', '0', 'If a zone is selected, only enable this shipping method for that zone.', '6', '0', 'lc_cfg_use_get_zone_class_title', 'lc_cfg_set_zone_classes_pull_down_menu', now())"); + } + /** + * Return the configuration parameter keys an an array + * + * @access public + * @return array + */ + public function getKeys() { + if (!isset($this->_keys)) { + $this->_keys = array('ADDONS_PROPACK_' . strtoupper($this->_code) . '_STATUS', + 'ADDONS_PROPACK_' . strtoupper($this->_code) . '_MINIMUM_ORDER', + 'ADDONS_PROPACK_' . strtoupper($this->_code) . '_ZONE'); + } + + return $this->_keys; + } +} +?> \ No newline at end of file diff --git a/catalog/addons/Pro_Pack_601/images/LCAZ00601.png b/catalog/addons/Pro_Pack_601/images/LCAZ00601.png new file mode 100644 index 000000000..564c02704 Binary files /dev/null and b/catalog/addons/Pro_Pack_601/images/LCAZ00601.png differ diff --git a/catalog/addons/Pro_Pack_601/languages/en_US.xml b/catalog/addons/Pro_Pack_601/languages/en_US.xml new file mode 100644 index 000000000..4ebfcd413 --- /dev/null +++ b/catalog/addons/Pro_Pack_601/languages/en_US.xml @@ -0,0 +1,15 @@ + + + + + addon_pro_pack_601_title + + general + + + addon_pro_pack_601_description + + general + + + \ No newline at end of file diff --git a/catalog/addons/Pro_Pack_602/controller.php b/catalog/addons/Pro_Pack_602/controller.php new file mode 100644 index 000000000..eec4a0114 --- /dev/null +++ b/catalog/addons/Pro_Pack_602/controller.php @@ -0,0 +1,98 @@ +_type = 'pro template pack'; + /** + * The addon class name + */ + $this->_code = 'Pro_Pack_602'; + /** + * The addon title used in the addons store listing + */ + $this->_title = $lC_Language->get('addon_pro_pack_602_title'); + /** + * The addon description used in the addons store listing + */ + $this->_description = $lC_Language->get('addon_pro_pack_602_description'); + /** + * The developers name + */ + $this->_author = 'Algozone, Inc'; + /** + * The developers web address + */ + $this->_authorWWW = 'http://www.algozone.com'; + /** + * The addon version + */ + $this->_version = '1.0.0'; + /** + * The Loaded 7 core compatibility version + */ + $this->_compatibility = '7.0'; // the addon is compatible with this core version and later + /** + * The addon image used in the addons store listing + */ + $this->_thumbnail = '' . lc_image(DIR_WS_CATALOG . 'addons/' . $this->_code . '/images/LCAZ00602.png', null, 160, 120) . ''; + /** + * The addon enable/disable switch + */ + $this->_enabled = true; + + $this->_rating = '5'; + } + /** + * Checks to see if the addon has been installed + * + * @access public + * @return boolean + */ + public function isInstalled() { + return (bool)defined('ADDONS_PROPACK_' . strtoupper($this->_code) . '_STATUS'); + } + /** + * Install the addon + * + * @access public + * @return void + */ + public function install() { + global $lC_Database; + + // $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_function, set_function, date_added) values ('Enable AddOn', 'ADDONS_PROPACK_" . strtoupper($this->_code) . "_STATUS', '-1', 'Do you want to enable this addon?', '6', '0', 'lc_cfg_use_get_boolean_value', 'lc_cfg_set_boolean_value(array(1, -1))', now())"); + // $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Order Threshold', 'ADDONS_PROPACK_" . strtoupper($this->_code) . "_MINIMUM_ORDER', '20', 'The minimum order amount to apply free shipping to.', '6', '0', now())"); + // $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_function, set_function, date_added) values ('Shipping Zone', 'ADDONS_PROPACK_" . strtoupper($this->_code) . "_ZONE', '0', 'If a zone is selected, only enable this shipping method for that zone.', '6', '0', 'lc_cfg_use_get_zone_class_title', 'lc_cfg_set_zone_classes_pull_down_menu', now())"); + } + /** + * Return the configuration parameter keys an an array + * + * @access public + * @return array + */ + public function getKeys() { + if (!isset($this->_keys)) { + $this->_keys = array('ADDONS_PROPACK_' . strtoupper($this->_code) . '_STATUS', + 'ADDONS_PROPACK_' . strtoupper($this->_code) . '_MINIMUM_ORDER', + 'ADDONS_PROPACK_' . strtoupper($this->_code) . '_ZONE'); + } + + return $this->_keys; + } +} +?> \ No newline at end of file diff --git a/catalog/addons/Pro_Pack_602/images/LCAZ00602.png b/catalog/addons/Pro_Pack_602/images/LCAZ00602.png new file mode 100644 index 000000000..f5ee3fc7e Binary files /dev/null and b/catalog/addons/Pro_Pack_602/images/LCAZ00602.png differ diff --git a/catalog/addons/Pro_Pack_602/languages/en_US.xml b/catalog/addons/Pro_Pack_602/languages/en_US.xml new file mode 100644 index 000000000..7a33fc817 --- /dev/null +++ b/catalog/addons/Pro_Pack_602/languages/en_US.xml @@ -0,0 +1,15 @@ + + + + + addon_pro_pack_602_title + + general + + + addon_pro_pack_602_description + + general + + + \ No newline at end of file diff --git a/catalog/admin/backups/.htaccess b/catalog/admin/backups/.htaccess index 8dc05d16b..1a016d4d4 100644 --- a/catalog/admin/backups/.htaccess +++ b/catalog/admin/backups/.htaccess @@ -1,5 +1,3 @@ -# $Id$ -# # This is used with Apache WebServers # The following blocks direct HTTP requests in this directory recursively # @@ -21,5 +19,4 @@ Options -Indexes Order Deny,Allow Deny from all - - + \ No newline at end of file diff --git a/catalog/admin/dot.htaccess b/catalog/admin/dot.htaccess index db61ec00a..4e7f7dfc7 100644 --- a/catalog/admin/dot.htaccess +++ b/catalog/admin/dot.htaccess @@ -1,5 +1,3 @@ -# $Id: .htaccess.php v1.0 2009-11-04 zdev $ -# # This is used with Apache WebServers # # For this to work, you must include the parameter 'Options' to diff --git a/catalog/admin/external/vqmod/vqmod.php b/catalog/admin/external/vqmod/vqmod.php index d46017b0c..f420a68d0 100644 --- a/catalog/admin/external/vqmod/vqmod.php +++ b/catalog/admin/external/vqmod/vqmod.php @@ -375,7 +375,7 @@ private function _loadProtected() { * @description Returns cache file name for a path */ private function _cacheName($file) { - return $this->_cachePathFull . 'vq2-' . preg_replace('~[/\\\\]+~', '_', $file); + return $this->_cachePathFull . 'vq2-' . preg_replace('~[:/\\\\]+~', '_', $file); } /** * VQMod::_setCwd() diff --git a/catalog/admin/images/prodchart.png b/catalog/admin/images/prodchart.png deleted file mode 100644 index 4df887ce9..000000000 Binary files a/catalog/admin/images/prodchart.png and /dev/null differ diff --git a/catalog/admin/includes/application_bottom.php b/catalog/admin/includes/application_bottom.php index e138da1b0..855459078 100644 --- a/catalog/admin/includes/application_bottom.php +++ b/catalog/admin/includes/application_bottom.php @@ -1,15 +1,11 @@ close(); diff --git a/catalog/admin/includes/application_top.php b/catalog/admin/includes/application_top.php index 953b0b41f..5ce3cd2f2 100644 --- a/catalog/admin/includes/application_top.php +++ b/catalog/admin/includes/application_top.php @@ -1,15 +1,11 @@ +?> \ No newline at end of file diff --git a/catalog/admin/includes/applications/administrators/modal/delete.php b/catalog/admin/includes/applications/administrators/modal/delete.php index 83018196c..b7364399f 100644 --- a/catalog/admin/includes/applications/administrators/modal/delete.php +++ b/catalog/admin/includes/applications/administrators/modal/delete.php @@ -1,15 +1,12 @@ \ No newline at end of file diff --git a/catalog/admin/includes/applications/branding_manager/pages/edit.php b/catalog/admin/includes/applications/branding_manager/pages/edit.php index 81ba1fa98..57cec8add 100644 --- a/catalog/admin/includes/applications/branding_manager/pages/edit.php +++ b/catalog/admin/includes/applications/branding_manager/pages/edit.php @@ -1,61 +1,57 @@ getModule())); - LoadedCommerce, Innovative eCommerce Solutions - http://www.loadedcommerce.com +$slogan = array(); +$meta_description = array(); +$meta_keywords = array(); +$meta_title = array(); +$meta_title_prefix = array(); +$meta_title_suffix = array(); +$footer_text = array(); - Copyright (c) 2011 LoadedCommerce.com +$QbrandingData = $lC_Database->query('select * from :table_branding_data'); +$QbrandingData->bindTable(':table_branding_data', TABLE_BRANDING_DATA); +$QbrandingData->execute(); - @author LoadedCommerce Team - @copyright (c) 2011 LoadedCommerce Team - @license http://loadedcommerce.com/license.html - */ +$site_image = $QbrandingData->value('site_image'); +$og_image = $QbrandingData->value('og_image'); +$chat_code = $QbrandingData->value('chat_code'); +$support_phone = $QbrandingData->value('support_phone'); +$support_email = $QbrandingData->value('support_email'); +$sales_phone = $QbrandingData->value('sales_phone'); +$sales_email = $QbrandingData->value('sales_email'); +$meta_delimeter = $QbrandingData->value('meta_delimeter'); +$social_facebook_page = $QbrandingData->value('social_facebook_page'); +$social_twitter = $QbrandingData->value('social_twitter'); +$social_pinterest = $QbrandingData->value('social_pinterest'); +$social_google_plus = $QbrandingData->value('social_google_plus'); +$social_youtube = $QbrandingData->value('social_youtube'); +$social_linkedin = $QbrandingData->value('social_linkedin'); - $bInfo = new lC_ObjectInfo(lC_Branding_manager_Admin::get($lC_Template->getModule())); +$Qbranding = $lC_Database->query('select * from :table_branding'); +$Qbranding->bindTable(':table_branding', TABLE_BRANDING); +$Qbranding->execute(); - $slogan = array(); - $meta_description = array(); - $meta_keywords = array(); - $meta_title = array(); - $meta_title_prefix = array(); - $meta_title_suffix = array(); - $footer_text = array(); - - $QbrandingData = $lC_Database->query('select * from :table_branding_data'); - $QbrandingData->bindTable(':table_branding_data', TABLE_BRANDING_DATA); - $QbrandingData->execute(); - - $site_image = $QbrandingData->value('site_image'); - $og_image = $QbrandingData->value('og_image'); - $chat_code = $QbrandingData->value('chat_code'); - $support_phone = $QbrandingData->value('support_phone'); - $support_email = $QbrandingData->value('support_email'); - $sales_phone = $QbrandingData->value('sales_phone'); - $sales_email = $QbrandingData->value('sales_email'); - $meta_delimeter = $QbrandingData->value('meta_delimeter'); - $social_facebook_page = $QbrandingData->value('social_facebook_page'); - $social_twitter = $QbrandingData->value('social_twitter'); - $social_pinterest = $QbrandingData->value('social_pinterest'); - $social_google_plus = $QbrandingData->value('social_google_plus'); - $social_youtube = $QbrandingData->value('social_youtube'); - $social_linkedin = $QbrandingData->value('social_linkedin'); - - $Qbranding = $lC_Database->query('select * from :table_branding'); - $Qbranding->bindTable(':table_branding', TABLE_BRANDING); - $Qbranding->execute(); - - if ($Qbranding->numberOfRows() > 0) { - while ($Qbranding->next()) { - $slogan[$Qbranding->valueInt('language_id')] = $Qbranding->value('slogan'); - $meta_description[$Qbranding->valueInt('language_id')] = $Qbranding->value('meta_description'); - $meta_keywords[$Qbranding->valueInt('language_id')] = $Qbranding->value('meta_keywords'); - $meta_title[$Qbranding->valueInt('language_id')] = $Qbranding->value('meta_title'); - $meta_title_prefix[$Qbranding->valueInt('language_id')] = $Qbranding->value('meta_title_prefix'); - $meta_title_suffix[$Qbranding->valueInt('language_id')] = $Qbranding->value('meta_title_suffix'); - $footer_text[$Qbranding->valueInt('language_id')] = $Qbranding->value('footer_text'); - } +if ($Qbranding->numberOfRows() > 0) { + while ($Qbranding->next()) { + $slogan[$Qbranding->valueInt('language_id')] = $Qbranding->value('slogan'); + $meta_description[$Qbranding->valueInt('language_id')] = $Qbranding->value('meta_description'); + $meta_keywords[$Qbranding->valueInt('language_id')] = $Qbranding->value('meta_keywords'); + $meta_title[$Qbranding->valueInt('language_id')] = $Qbranding->value('meta_title'); + $meta_title_prefix[$Qbranding->valueInt('language_id')] = $Qbranding->value('meta_title_prefix'); + $meta_title_suffix[$Qbranding->valueInt('language_id')] = $Qbranding->value('meta_title_suffix'); + $footer_text[$Qbranding->valueInt('language_id')] = $Qbranding->value('footer_text'); } +} ?> diff --git a/catalog/admin/includes/applications/cache/cache.php b/catalog/admin/includes/applications/cache/cache.php index ce65bfbc0..92b22cea3 100644 --- a/catalog/admin/includes/applications/cache/cache.php +++ b/catalog/admin/includes/applications/cache/cache.php @@ -1,17 +1,12 @@ _page_title = $lC_Language->get('heading_title'); diff --git a/catalog/admin/includes/applications/cache/classes/cache.php b/catalog/admin/includes/applications/cache/classes/cache.php index e5ac38d68..7c9f43e4b 100644 --- a/catalog/admin/includes/applications/cache/classes/cache.php +++ b/catalog/admin/includes/applications/cache/classes/cache.php @@ -1,17 +1,12 @@ diff --git a/catalog/admin/includes/applications/cache/pages/main.php b/catalog/admin/includes/applications/cache/pages/main.php index 6fbc0c49c..38f413454 100644 --- a/catalog/admin/includes/applications/cache/pages/main.php +++ b/catalog/admin/includes/applications/cache/pages/main.php @@ -1,15 +1,12 @@ diff --git a/catalog/admin/includes/applications/categories/actions/new.php b/catalog/admin/includes/applications/categories/actions/new.php index b41ca6577..fd85ccb23 100644 --- a/catalog/admin/includes/applications/categories/actions/new.php +++ b/catalog/admin/includes/applications/categories/actions/new.php @@ -1,24 +1,20 @@ _page_contents = 'new.php'; - } +class lC_Application_Categories_Actions_new extends lC_Application_Categories { + public function __construct() { + global $lC_Language, $lC_MessageStack; + + parent::__construct(); + + $this->_page_contents = 'new.php'; } +} ?> \ No newline at end of file diff --git a/catalog/admin/includes/applications/categories/actions/save.php b/catalog/admin/includes/applications/categories/actions/save.php index 58b991191..8b05a157d 100644 --- a/catalog/admin/includes/applications/categories/actions/save.php +++ b/catalog/admin/includes/applications/categories/actions/save.php @@ -1,60 +1,56 @@ _page_contents = 'edit.php'; - class lC_Application_Categories_Actions_save extends lC_Application_Categories { - public function __construct() { - global $lC_Language, $lC_MessageStack; - - parent::__construct(); - - $this->_page_contents = 'edit.php'; - - if ( isset($_POST['subaction']) && ($_POST['subaction'] == 'confirm') ) { - switch ( $_GET['action'] ) { - case 'save': - $data = array('image' => (isset($_POST['categories_image']) ? $_POST['categories_image'] : null), - 'parent_id' => $_POST['parent_id'], - 'sort_order' => $_POST['sort_order'], - 'mode' => $_POST['categories_mode'], - 'link_target' => ($_POST['categories_link_target'] == 'on') ? 1 : 0, - 'custom_url' => $_POST['categories_custom_url'], - 'status' => ($_POST['categories_status'] == 'on') ? 1 : 0, - 'nav' => ($_POST['categories_visibility_nav'] == 'on') ? 1 : 0, - 'box' => ($_POST['categories_visibility_box'] == 'on') ? 1 : 0, - 'name' => $_POST['categories_name'], - 'menu_name' => $_POST['categories_menu_name'], - 'blurb' => $_POST['categories_blurb'], - 'description' => $_POST['categories_description'], - 'permalink' => $_POST['categories_permalink'], - 'tags' => $_POST['categories_tags']); - /* - * Save the category information - * - * @param integer $_GET['cid'] The categories id used on update, null on insert - * @param array $data The categories information - * @access public - * @return boolean - */ - if ( lC_Categories_Admin::save((isset($_GET['categories']) && is_numeric($_GET['categories']) ? $_GET['categories'] : null), $data) ) { - lc_redirect_admin(lc_href_link_admin(FILENAME_DEFAULT, $this->_module . '=' . $data['parent_id'] . '&cid=' . $_GET['cid'])); - } else { - $_SESSION['error'] = true; - $_SESSION['errmsg'] = $lC_Language->get('ms_error_action_not_performed'); - } - break; - } + if ( isset($_POST['subaction']) && ($_POST['subaction'] == 'confirm') ) { + switch ( $_GET['action'] ) { + case 'save': + $data = array('image' => (isset($_POST['categories_image']) ? $_POST['categories_image'] : null), + 'parent_id' => $_POST['parent_id'], + 'sort_order' => $_POST['sort_order'], + 'mode' => $_POST['categories_mode'], + 'link_target' => ($_POST['categories_link_target'] == 'on') ? 1 : 0, + 'custom_url' => $_POST['categories_custom_url'], + 'status' => ($_POST['categories_status'] == 'on') ? 1 : 0, + 'nav' => ($_POST['categories_visibility_nav'] == 'on') ? 1 : 0, + 'box' => ($_POST['categories_visibility_box'] == 'on') ? 1 : 0, + 'name' => $_POST['categories_name'], + 'menu_name' => $_POST['categories_menu_name'], + 'blurb' => $_POST['categories_blurb'], + 'description' => $_POST['categories_description'], + 'permalink' => $_POST['categories_permalink'], + 'tags' => $_POST['categories_tags']); + /* + * Save the category information + * + * @param integer $_GET['cid'] The categories id used on update, null on insert + * @param array $data The categories information + * @access public + * @return boolean + */ + if ( lC_Categories_Admin::save((isset($_GET['categories']) && is_numeric($_GET['categories']) ? $_GET['categories'] : null), $data) ) { + lc_redirect_admin(lc_href_link_admin(FILENAME_DEFAULT, $this->_module . '=' . $data['parent_id'] . '&cid=' . $_GET['cid'])); + } else { + $_SESSION['error'] = true; + $_SESSION['errmsg'] = $lC_Language->get('ms_error_action_not_performed'); + } + break; } } } +} ?> \ No newline at end of file diff --git a/catalog/admin/includes/applications/categories/categories.php b/catalog/admin/includes/applications/categories/categories.php index 3bc28c419..30b485388 100644 --- a/catalog/admin/includes/applications/categories/categories.php +++ b/catalog/admin/includes/applications/categories/categories.php @@ -1,17 +1,12 @@ next() ) { $check = ''; - $category = ' ' . $Qcategories->value('categories_name') . ''; + $category = '' . $Qcategories->value('categories_name') . ''; $status = '' . (($Qcategories->valueInt('categories_status') == 1) ? '' : '') . ''; $visibility = '' . (($Qcategories->valueInt('parent_id') == 0) ? @@ -687,7 +684,7 @@ public static function getCategoryIcon($type) { } else if ($type == 'page') { $icon = 'page-list icon-black'; } else if ($type == 'specials') { - $icon = 'price-tag icon-red'; + $icon = 'star icon-red'; } else if ($type == 'featured') { $icon = 'star icon-orange'; } else if ($type == 'new') { diff --git a/catalog/admin/includes/applications/categories/classes/rpc.php b/catalog/admin/includes/applications/categories/classes/rpc.php index b7a8efc4c..e89119d99 100644 --- a/catalog/admin/includes/applications/categories/classes/rpc.php +++ b/catalog/admin/includes/applications/categories/classes/rpc.php @@ -1,17 +1,12 @@ diff --git a/catalog/admin/includes/applications/categories/modal/batchDelete.php b/catalog/admin/includes/applications/categories/modal/batchDelete.php index f2f41303c..7770767c3 100644 --- a/catalog/admin/includes/applications/categories/modal/batchDelete.php +++ b/catalog/admin/includes/applications/categories/modal/batchDelete.php @@ -1,15 +1,12 @@ \ No newline at end of file diff --git a/catalog/admin/includes/applications/login/login.php b/catalog/admin/includes/applications/login/login.php index 5ac06eaf9..4252fb267 100644 --- a/catalog/admin/includes/applications/login/login.php +++ b/catalog/admin/includes/applications/login/login.php @@ -1,17 +1,12 @@ _has_wrapper = false; $this->_has_header = false; $this->_has_footer = false; - } } -?> +?> \ No newline at end of file diff --git a/catalog/admin/includes/applications/login/pages/activate_free.php b/catalog/admin/includes/applications/login/pages/activate_free.php index 29197bb48..4b201f9f0 100644 --- a/catalog/admin/includes/applications/login/pages/activate_free.php +++ b/catalog/admin/includes/applications/login/pages/activate_free.php @@ -1,16 +1,13 @@ diff --git a/catalog/admin/includes/applications/login/pages/free_success.php b/catalog/admin/includes/applications/login/pages/free_success.php index cf84a7138..59b650c35 100644 --- a/catalog/admin/includes/applications/login/pages/free_success.php +++ b/catalog/admin/includes/applications/login/pages/free_success.php @@ -1,15 +1,12 @@ diff --git a/catalog/admin/includes/applications/login/pages/lost_password.php b/catalog/admin/includes/applications/login/pages/lost_password.php index b8c3294d6..a7220b3f1 100644 --- a/catalog/admin/includes/applications/login/pages/lost_password.php +++ b/catalog/admin/includes/applications/login/pages/lost_password.php @@ -1,15 +1,12 @@ diff --git a/catalog/admin/includes/applications/login/pages/lost_password_confirm.php b/catalog/admin/includes/applications/login/pages/lost_password_confirm.php index fa0fac596..cd9db1b5d 100644 --- a/catalog/admin/includes/applications/login/pages/lost_password_confirm.php +++ b/catalog/admin/includes/applications/login/pages/lost_password_confirm.php @@ -1,15 +1,12 @@ diff --git a/catalog/admin/includes/applications/login/pages/main.php b/catalog/admin/includes/applications/login/pages/main.php index 9953db6c2..18667bfb6 100644 --- a/catalog/admin/includes/applications/login/pages/main.php +++ b/catalog/admin/includes/applications/login/pages/main.php @@ -1,15 +1,12 @@ @@ -27,7 +25,8 @@ - get('table_heading_templates'); ?> + get('table_heading_preview'); ?> + get('table_heading_templates'); ?> get('table_heading_action'); ?> @@ -35,7 +34,7 @@ - + diff --git a/catalog/admin/includes/applications/templates/templates.php b/catalog/admin/includes/applications/templates/templates.php index 9e7cba08c..f5ec9ca63 100644 --- a/catalog/admin/includes/applications/templates/templates.php +++ b/catalog/admin/includes/applications/templates/templates.php @@ -1,17 +1,12 @@ _page_title = $lC_Language->get('heading_title'); diff --git a/catalog/admin/includes/applications/templates_modules/classes/rpc.php b/catalog/admin/includes/applications/templates_modules/classes/rpc.php index 8a159223f..ea5df5d0a 100644 --- a/catalog/admin/includes/applications/templates_modules/classes/rpc.php +++ b/catalog/admin/includes/applications/templates_modules/classes/rpc.php @@ -1,17 +1,12 @@ modCheck('../includes/classes/modules.php')); - $lC_Language->load('modules-' . $_GET['set']); + $lC_Language->load('modules-' . $_GET['set'], null, false); $result = array('aaData' => array()); foreach ( $lC_DirectoryListing->getFiles() as $file ) { @@ -166,6 +161,7 @@ public static function install($module_name) { lC_Cache::clear('configuration'); lC_Cache::clear('modules_' . $_GET['set']); lC_Cache::clear('templates_' . $_GET['set'] . '_layout'); + lC_Cache::clear('languages-en'); return true; } @@ -196,6 +192,7 @@ public static function uninstall($module_name) { lC_Cache::clear('configuration'); lC_Cache::clear('modules_' . $_GET['set']); lC_Cache::clear('templates_' . $_GET['set'] . '_layout'); + lC_Cache::clear('languages-en'); return true; } diff --git a/catalog/admin/includes/applications/templates_modules/js/templates_modules.js.php b/catalog/admin/includes/applications/templates_modules/js/templates_modules.js.php index 00bc8dedb..367ad4328 100644 --- a/catalog/admin/includes/applications/templates_modules/js/templates_modules.js.php +++ b/catalog/admin/includes/applications/templates_modules/js/templates_modules.js.php @@ -1,15 +1,12 @@ diff --git a/catalog/admin/includes/applications/templates_modules/modal/edit.php b/catalog/admin/includes/applications/templates_modules/modal/edit.php index 8d5476cd1..bf8514c80 100644 --- a/catalog/admin/includes/applications/templates_modules/modal/edit.php +++ b/catalog/admin/includes/applications/templates_modules/modal/edit.php @@ -1,15 +1,12 @@ + \ No newline at end of file diff --git a/catalog/admin/includes/applications/zone_groups/modal/newEntry.php b/catalog/admin/includes/applications/zone_groups/modal/newEntry.php index 7a5d697a6..410b17715 100644 --- a/catalog/admin/includes/applications/zone_groups/modal/newEntry.php +++ b/catalog/admin/includes/applications/zone_groups/modal/newEntry.php @@ -1,15 +1,12 @@ - - - - - '; - - return $status; - } - - - -/** + function lc_href_link_admin($page = null, $parameters = null) { + if (ENABLE_SSL === true) { + $link = HTTPS_SERVER . DIR_WS_HTTPS_CATALOG . DIR_WS_ADMIN; + } else { + $link = HTTP_SERVER . DIR_WS_HTTP_CATALOG . DIR_WS_ADMIN; + } + + $link .= $page; + + if (empty($parameters) && !lc_empty(SID)) { + $link .= '?' . SID; + } else { + $link .= '?' . $parameters; + + if (!lc_empty(SID)) { + $link .= '&' . SID; + } + } + + while ( (substr($link, -1) == '&') || (substr($link, -1) == '?') ) { + $link = substr($link, 0, -1); + } + + return $link; + } + //// + // javascript to dynamically update the states/provinces list when the country is changed + // TABLES: zones + function lc_js_zone_list($country, $form, $field) { + global $lC_Database, $lC_Language; + + $num_country = 1; + $output_string = ''; + + $Qcountries = $lC_Database->query('select distinct zone_country_id from :table_zones order by zone_country_id'); + $Qcountries->bindTable(':table_zones', TABLE_ZONES); + $Qcountries->execute(); + + while ($Qcountries->next()) { + if ($num_country == 1) { + $output_string .= ' if (' . $country . ' == "' . $Qcountries->valueInt('zone_country_id') . '") {' . "\n"; + } else { + $output_string .= ' } else if (' . $country . ' == "' . $Qcountries->valueInt('zone_country_id') . '") {' . "\n"; + } + + $num_state = 1; + + $Qzones = $lC_Database->query('select zone_name, zone_id from :table_zones where zone_country_id = :zone_country_id order by zone_name'); + $Qzones->bindTable(':table_zones', TABLE_ZONES); + $Qzones->bindInt(':zone_country_id', $Qcountries->valueInt('zone_country_id')); + $Qzones->execute(); + + while ($Qzones->next()) { + if ($num_state == '1') { + $output_string .= ' ' . $form . '.' . $field . '.options[0] = new Option("' . $lC_Language->get('all_zones') . '", "");' . "\n"; + } + + $output_string .= ' ' . $form . '.' . $field . '.options[' . $num_state . '] = new Option("' . $Qzones->value('zone_name') . '", "' . $Qzones->valueInt('zone_id') . '");' . "\n"; + + $num_state++; + } + + $num_country++; + } + + $output_string .= ' } else {' . "\n" . + ' ' . $form . '.' . $field . '.options[0] = new Option("' . $lC_Language->get('all_zones') . '", "");' . "\n" . + ' }' . "\n"; + + return $output_string; + } + + function lc_legend($params) { + global $lC_Language; + + if (!is_array($params)) return false; + + $legend = '' . $lC_Language->get('table_action_legend') . ':'; + foreach ($params as $value) { + $icon_name = $value . '.png'; + $icon_text = 'icon_' . $value; + $legend .= '' . lc_icon($icon_name) . '' . $lC_Language->get($icon_text) . ''; + } + $legend .= ''; + + return $legend; + } + + function lc_status() { + $status = ' + + + + + '; + + return $status; + } + /** * Display an icon from a template set * * @param string $image The icon to display @@ -135,82 +125,79 @@ function lc_status() { * @param string $parameters The parameters to pass to the image * @access public */ + function lc_icon_admin($image, $title = null, $group = null, $parameters = null, $default = true) { + global $lC_Language; - function lc_icon_admin($image, $title = null, $group = null, $parameters = null, $default = true) { - global $lC_Language; - - if ($image == null) return false; + if ($image == null) return false; - if ( is_null($title) ) { - $title = $lC_Language->get('icon_' . substr($image, 0, strpos($image, '.'))); - } + if ( is_null($title) ) { + $title = $lC_Language->get('icon_' . substr($image, 0, strpos($image, '.'))); + } - if ( is_null($group) ) { - $group = '16'; - } + if ( is_null($group) ) { + $group = '16'; + } - $template_code = (isset($_SESSION['template']['code'])) ? $_SESSION['template']['code'] : $lC_Template->getCode(); + $template_code = (isset($_SESSION['template']['code'])) ? $_SESSION['template']['code'] : $lC_Template->getCode(); - return lc_image('templates/' . $template_code . '/img/icons/' . (!empty($group) ? $group . '/' : null) . $image, $title, null, null, $parameters); - } - -/** + return lc_image('templates/' . $template_code . '/img/icons/' . (!empty($group) ? $group . '/' : null) . $image, $title, null, null, $parameters); + } + /** * Get the raw URL to an icon from a template set * * @param string $image The icon to display * @param string $group The size group of the icon * @access public */ - - function lc_icon_admin_raw($image, $group = '16') { - global $lC_Template; - - return 'templates/' . $lC_Template->getCode() . '/img/icons/' . (!empty($group) ? $group . '/' : null) . $image; - } - - function lc_go_pro($no_tooltip = false) { - global $lC_Language; - - if ($no_tooltip) { - $html = '' . - ' ' . - ' ' . $lC_Language->get('text_pro') . '' . - ' ' . - ''; - } else { - $html = '' . - ' ' . - ' ' . $lC_Language->get('text_pro') . '' . - ' ' . - ''; - } - - return $html; - } - - function lc_go_b2b($no_tooltip = false) { - global $lC_Language; - - if ($no_tooltip) { - $html = '' . - ' ' . - ' ' . $lC_Language->get('text_b2b') . '' . - ' ' . - ''; - } else { - $html = '' . - ' ' . - ' ' . $lC_Language->get('text_b2b') . '' . - ' ' . - ''; - } - - return $html; - } - - function lc_show_info_bubble($msg, $styleA = 'margin-right:6px;', $classA = 'on-left grey float-right', $classB = 'blue-bg', $minWidth = '180px') { - $html = '' . $msg . ''; - - return $html; - } + function lc_icon_admin_raw($image, $group = '16') { + global $lC_Template; + + return 'templates/' . $lC_Template->getCode() . '/img/icons/' . (!empty($group) ? $group . '/' : null) . $image; + } + + function lc_go_pro($no_tooltip = false) { + global $lC_Language; + + if ($no_tooltip) { + $html = '' . + ' ' . + ' ' . $lC_Language->get('text_pro') . '' . + ' ' . + ''; + } else { + $html = '' . + ' ' . + ' ' . $lC_Language->get('text_pro') . '' . + ' ' . + ''; + } + + return $html; + } + + function lc_go_b2b($no_tooltip = false) { + global $lC_Language; + + if ($no_tooltip) { + $html = '' . + ' ' . + ' ' . $lC_Language->get('text_b2b') . '' . + ' ' . + ''; + } else { + $html = '' . + ' ' . + ' ' . $lC_Language->get('text_b2b') . '' . + ' ' . + ''; + } + + return $html; + } + + function lc_show_info_bubble($msg, $styleA = 'margin-right:6px;', $classA = 'on-left grey float-right', $classB = 'blue-bg', $minWidth = '180px') { + $html = '' . $msg . ''; + + return $html; + } ?> \ No newline at end of file diff --git a/catalog/admin/includes/functions/localization.php b/catalog/admin/includes/functions/localization.php index db852092d..980b822af 100644 --- a/catalog/admin/includes/functions/localization.php +++ b/catalog/admin/includes/functions/localization.php @@ -1,42 +1,37 @@ 0) { - return $match[3]; - } else { - return false; - } + if (sizeof($match) > 0) { + return $match[3]; + } else { + return false; } +} - function quote_xe_currency($to, $from = DEFAULT_CURRENCY) { - $page = file('http://www.xe.net/ucc/convert.cgi?Amount=1&From=' . $from . '&To=' . $to); +function quote_xe_currency($to, $from = DEFAULT_CURRENCY) { + $page = file('http://www.xe.net/ucc/convert.cgi?Amount=1&From=' . $from . '&To=' . $to); - $match = array(); + $match = array(); - preg_match('/[0-9.]+\s*' . $from . '\s*=\s*([0-9.]+)\s*' . $to . '/', implode('', $page), $match); + preg_match('/[0-9.]+\s*' . $from . '\s*=\s*([0-9.]+)\s*' . $to . '/', implode('', $page), $match); - if (sizeof($match) > 0) { - return $match[1]; - } else { - return false; - } + if (sizeof($match) > 0) { + return $match[1]; + } else { + return false; } +} ?> \ No newline at end of file diff --git a/catalog/admin/includes/general.js b/catalog/admin/includes/general.js index ed4d69a6b..80dd63d43 100644 --- a/catalog/admin/includes/general.js +++ b/catalog/admin/includes/general.js @@ -1,14 +1,10 @@ -/* - $Id: general.php v1.0 2011-11-04 datazen $ - - LoadedCommerce, Innovative eCommerce Solutions - http://www.loadedcommerce.com - - Copyright (c) 2013 Loaded Commerce, LLC - - @author LoadedCommerce Team - @copyright (c) 2013 LoadedCommerce Team - @license http://loadedcommerce.com/license.html +/** + @package admin + @author Loaded Commerce + @copyright Copyright 2003-2014 Loaded Commerce, LLC + @copyright Portions Copyright 2003 osCommerce + @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt + @version $Id: general.js.php v1.0 2013-08-08 datazen $ */ function rowOverEffect(object) { diff --git a/catalog/admin/includes/graphs/banner_daily.php b/catalog/admin/includes/graphs/banner_daily.php index bb4de38aa..3a7be3f3c 100644 --- a/catalog/admin/includes/graphs/banner_daily.php +++ b/catalog/admin/includes/graphs/banner_daily.php @@ -1,17 +1,12 @@ %d to %d (of %d entries) -result_set_current_page = Page %s of %d -maximum_file_upload_size = Max: %s - -text_top = Top -text_hello = Hello -text_with_selected = With Selected -text_delete = Delete -text_move = Move -text_version_info = Version Info -text_error = Error - -menu_title_addons = Add Ons -menu_title_app_store = Add Ons -menu_title_license_management = License Management -menu_title_core_update = Core Update -menu_title_report_issues = Report Issues -menu_title_get_help = Get Help button_add = Add button_add_new = Add New @@ -87,11 +53,19 @@ button_no = No button_info = Info +customer_view_details = View details for + +default = Default +default_entry = default + field_admin_language = Admin Language: field_username = Email: field_first_name = First Name: field_last_name = Last Name: +gender_male = Male +gender_female = Female + icon_all = All icon_app_store = Add Ons icon_preview = Preview @@ -155,6 +129,23 @@ icon_view = View icon_processing = Processing ... +introduction_profile_pass_change = Please make the necessary changes for this administrator. +introduction_edit_administrator = Please make the necessary changes for this administrator. +invalid_current_password = The current password you entered is not correct. Please re-enter it and try again. +invalid_new_password_match = The new password and confirmation does not match. Please try again. + +maximum_file_upload_size = Max: %s + +menu_title_addons = Add Ons +menu_title_app_store = Add Ons +menu_title_license_management = License Management +menu_title_core_update = Core Update +menu_title_report_issues = Report Issues +menu_title_get_help = Get Help + +modal_heading_profile_edit = Edit Profile +modal_heading_profile_pass_change = Change Profile Password + ms_success_action_performed = Success: The action was successfully performed. ms_success_upload_file_saved = Success: The file uploaded has been saved successfully. @@ -178,23 +169,22 @@ ms_error_javascript_not_enabled_for_upload = Please enable JavaScript to use ajax file uploader. ms_error_javascript_not_enabled_warning = Your browser does not support JavaScript! Some features won't work as expected. +password_change_success = You have successfully updated your password. +parameter_true = Yes +parameter_false = No +parameter_optional = Optional +parameter_none = -- None -- + profile_slate_edit_logout = edit or logout profile_slate_edit_profile = editprofile profile_slate_change_password = changepassword profile_slate_logout = log out -modal_heading_profile_edit = Edit Profile -modal_heading_profile_pass_change = Change Profile Password profile_password = Current Password profile_password_new = New Password profile_password_confirm = Confirm New Password -introduction_profile_pass_change = Please make the necessary changes for this administrator. -introduction_edit_administrator = Please make the necessary changes for this administrator. profile_password = Current Password profile_password_new = New Password profile_password_confirm = Confirm Password -invalid_current_password = The current password you entered is not correct. Please re-enter it and try again. -invalid_new_password_match = The new password and confirmation does not match. Please try again. -password_change_success = You have successfully updated your password. profile_image = Profile Image: profile_new_image = New Image @@ -207,7 +197,7 @@ quick_add_manufacturer = Manufacturer quick_add_banner = Banner quick_add_newsletter = Newsletter - + quick_add_order_title = Add new Order quick_add_customer_title = Add new Customer quick_add_category_title = Add new Category @@ -246,19 +236,33 @@ messaging_drafts = Drafts messaging_trash = Trash -search_placeholder = Search - order_view_details = View details for order number -customer_view_details = View details for + product_view_details = View details for +result_set_current_page = Page %s of %d + +search_placeholder = Search +site_maintenance_message_title = Maintenance Mode +site_maintenance_message_text = Site is in Maintenance Mode. Click here to disable it. + +slider_switch_enabled = ENABLED +slider_switch_disabled = DISABLED +slider_switch_preview = PREVIEW text_status = Statustext_select_product = Select Product + +table_action_legend = Legend tooltip_search = Search (space bar) tooltip_quick_add = Quick Add (a) tooltip_messages = Messages (m) tooltip_settings = Settings (s) / Main Menu (escape) - top_category = Top Category - +text_top = Top +text_hello = Hello +text_with_selected = With Selected +text_delete = Delete +text_move = Move +text_version_info = Version Info +text_error = Error text_all = All text_version = Version text_confirm_delete = Confirm Delete? @@ -273,8 +277,7 @@ text_mode_cart = Link To: Shopping Cart text_mode_account = Link To: My Account text_mode_info = Link To: Info -text_mode_override = Custom Link - +text_mode_override = Custom Link text_hide_in_nav = Click to hide in Top Nav text_hide_in_box = Click to hide in Infobox text_show_in_nav = Click to show in Top Nav @@ -283,7 +286,6 @@ text_disable_category = Click to disable Category text_enable_coupon = Click to Enable Coupon text_disable_coupon = Click to Disable Coupon - text_enable = Click to Enable text_disable = Click to Disable @@ -291,9 +293,6 @@ update_message_text1 = New version update_message_text2 = released. -site_maintenance_message_title = Maintenance Mode -site_maintenance_message_text = Site is in Maintenance Mode. Click here to disable it. - product_attributes_product_classes_title = Product Classes text_coming_soon = Pro Feature Coming Soon @@ -316,7 +315,6 @@ text_purchase_over = Minimum Purchase text_free_shipping = Free Shipping text_free_product = Free Product - text_actions = Actions text_free_product = Free Product text_upgrade_now = Upgrade Now @@ -325,9 +323,5 @@ text_print_packing_slip = Print Packing Slip text_spin_off_order = Spin Off Order text_go_to_customer = Go to Customer - text_resize_images = Upgrade Clean Up: Creating Image Sets - -slider_switch_enabled = ENABLED -slider_switch_disabled = DISABLED -slider_switch_preview = PREVIEW text_status = Statustext_select_product = Select Product \ No newline at end of file +text_status = Status diff --git a/catalog/admin/includes/languages/en_US/administrators.php b/catalog/admin/includes/languages/en_US/administrators.php index 9c7b77721..02f3d3cfb 100644 --- a/catalog/admin/includes/languages/en_US/administrators.php +++ b/catalog/admin/includes/languages/en_US/administrators.php @@ -1,13 +1,9 @@ -# $Id: administrators.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: administrators.php v1.0 2013-08-08 datazen $ heading_title = Administrators heading_title_groups = Administrator Groups diff --git a/catalog/admin/includes/languages/en_US/administrators_log.php b/catalog/admin/includes/languages/en_US/administrators_log.php index 7ad9e93f0..276c5ae4c 100644 --- a/catalog/admin/includes/languages/en_US/administrators_log.php +++ b/catalog/admin/includes/languages/en_US/administrators_log.php @@ -1,13 +1,9 @@ -# $Id: administrators_log.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: administrators_log.php v1.0 2013-08-08 datazen $ heading_title = Administrators Log diff --git a/catalog/admin/includes/languages/en_US/backup.php b/catalog/admin/includes/languages/en_US/backup.php index ea4284515..c29bc2f42 100644 --- a/catalog/admin/includes/languages/en_US/backup.php +++ b/catalog/admin/includes/languages/en_US/backup.php @@ -1,13 +1,9 @@ -# $Id: backup.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: backup.php v1.0 2013-08-08 datazen $ heading_title = Backup Manager diff --git a/catalog/admin/includes/languages/en_US/banner_manager.php b/catalog/admin/includes/languages/en_US/banner_manager.php index 3d361a61c..a5a3abdbc 100644 --- a/catalog/admin/includes/languages/en_US/banner_manager.php +++ b/catalog/admin/includes/languages/en_US/banner_manager.php @@ -1,13 +1,9 @@ -# $Id: banner_manager.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: banner_manager.php v1.0 2013-08-08 datazen $ heading_title = Banner Manager diff --git a/catalog/admin/includes/languages/en_US/branding_manager.php b/catalog/admin/includes/languages/en_US/branding_manager.php index 8f4aefd74..b00af2ddb 100644 --- a/catalog/admin/includes/languages/en_US/branding_manager.php +++ b/catalog/admin/includes/languages/en_US/branding_manager.php @@ -1,13 +1,9 @@ -# $Id: branding_manager.php v1.0 2011-11-04 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2011 LoadedCommerce.com -# -# @author LoadedCommerce Team -# @copyright (c) 2011 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: branding_manager.php v1.0 2013-08-08 datazen $ heading_title = Branding Manager diff --git a/catalog/admin/includes/languages/en_US/cache.php b/catalog/admin/includes/languages/en_US/cache.php index 71fbff986..9a39de12b 100644 --- a/catalog/admin/includes/languages/en_US/cache.php +++ b/catalog/admin/includes/languages/en_US/cache.php @@ -1,13 +1,9 @@ -# $Id: cache.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: cache.php v1.0 2013-08-08 datazen $ heading_title = Cache Control diff --git a/catalog/admin/includes/languages/en_US/categories.php b/catalog/admin/includes/languages/en_US/categories.php index d00ffc0e7..7aec6f668 100644 --- a/catalog/admin/includes/languages/en_US/categories.php +++ b/catalog/admin/includes/languages/en_US/categories.php @@ -1,13 +1,9 @@ -# $Id: categories.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: categories.php v1.0 2013-08-08 datazen $ access_levels_registered = Registered access_levels_wholesale = Wholesale diff --git a/catalog/admin/includes/languages/en_US/configuration.php b/catalog/admin/includes/languages/en_US/configuration.php index 1c8dc8b60..ef191b9d5 100644 --- a/catalog/admin/includes/languages/en_US/configuration.php +++ b/catalog/admin/includes/languages/en_US/configuration.php @@ -1,13 +1,9 @@ -# $Id: configuration.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: configuration.php v1.0 2013-08-08 datazen $ heading_title = Configuration diff --git a/catalog/admin/includes/languages/en_US/countries.php b/catalog/admin/includes/languages/en_US/countries.php index 856873cd1..55f2a9a87 100644 --- a/catalog/admin/includes/languages/en_US/countries.php +++ b/catalog/admin/includes/languages/en_US/countries.php @@ -1,13 +1,9 @@ -# $Id: countries.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: countries.php v1.0 2013-08-08 datazen $ heading_title = Countries diff --git a/catalog/admin/includes/languages/en_US/coupons.php b/catalog/admin/includes/languages/en_US/coupons.php index e8379f00c..fe768430d 100644 --- a/catalog/admin/includes/languages/en_US/coupons.php +++ b/catalog/admin/includes/languages/en_US/coupons.php @@ -1,13 +1,9 @@ -# $Id: coupons.php v1.0 2011-11-04 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2011 LoadedCommerce.com -# -# @author LoadedCommerce Team -# @copyright (c) 2011 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: coupons.php v1.0 2013-08-08 datazen $ heading_title = Coupon Manager heading_title_new_coupon = New Coupon diff --git a/catalog/admin/includes/languages/en_US/credit_cards.php b/catalog/admin/includes/languages/en_US/credit_cards.php index 82bcc759a..efae22490 100644 --- a/catalog/admin/includes/languages/en_US/credit_cards.php +++ b/catalog/admin/includes/languages/en_US/credit_cards.php @@ -1,13 +1,9 @@ -# $Id: credit_cards.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: credit_cards.php v1.0 2013-08-08 datazen $ heading_title = Credit Card Types diff --git a/catalog/admin/includes/languages/en_US/currencies.php b/catalog/admin/includes/languages/en_US/currencies.php index f512c6a54..eba1ec634 100644 --- a/catalog/admin/includes/languages/en_US/currencies.php +++ b/catalog/admin/includes/languages/en_US/currencies.php @@ -1,13 +1,9 @@ -# $Id: currencies.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: currencies.php v1.0 2013-08-08 datazen $ heading_title = Currencies diff --git a/catalog/admin/includes/languages/en_US/customer_groups.php b/catalog/admin/includes/languages/en_US/customer_groups.php index a57cba53a..1c79a26bd 100644 --- a/catalog/admin/includes/languages/en_US/customer_groups.php +++ b/catalog/admin/includes/languages/en_US/customer_groups.php @@ -1,13 +1,9 @@ -# $Id: customer_groups.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: customer_groups.php v1.0 2013-08-08 datazen $ heading_title = Customer Groups diff --git a/catalog/admin/includes/languages/en_US/customers.php b/catalog/admin/includes/languages/en_US/customers.php index 0cf778406..b3ab03ba5 100644 --- a/catalog/admin/includes/languages/en_US/customers.php +++ b/catalog/admin/includes/languages/en_US/customers.php @@ -1,13 +1,9 @@ -# $Id: customers.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: customers.php v1.0 2013-08-08 datazen $ heading_title = Customers diff --git a/catalog/admin/includes/languages/en_US/error_log.php b/catalog/admin/includes/languages/en_US/error_log.php index 1140ed1ce..82d9e2168 100644 --- a/catalog/admin/includes/languages/en_US/error_log.php +++ b/catalog/admin/includes/languages/en_US/error_log.php @@ -1,13 +1,9 @@ -# $Id: error_log.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: error_log.php v1.0 2013-08-08 datazen $ heading_title = Error Log diff --git a/catalog/admin/includes/languages/en_US/error_pages.php b/catalog/admin/includes/languages/en_US/error_pages.php index 74a65ef50..71eaff131 100644 --- a/catalog/admin/includes/languages/en_US/error_pages.php +++ b/catalog/admin/includes/languages/en_US/error_pages.php @@ -1,13 +1,9 @@ -# $Id: error_pages.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: error_pages.php v1.0 2013-08-08 datazen $ heading_title = Unauthorized Access diff --git a/catalog/admin/includes/languages/en_US/file_manager.php b/catalog/admin/includes/languages/en_US/file_manager.php index cf073bdc6..fac2f4210 100644 --- a/catalog/admin/includes/languages/en_US/file_manager.php +++ b/catalog/admin/includes/languages/en_US/file_manager.php @@ -1,13 +1,9 @@ -# $Id: file_manager.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: file_manager.php v1.0 2013-08-08 datazen $ heading_title = File Manager diff --git a/catalog/admin/includes/languages/en_US/image_groups.php b/catalog/admin/includes/languages/en_US/image_groups.php index 752ff2f03..9ef995051 100644 --- a/catalog/admin/includes/languages/en_US/image_groups.php +++ b/catalog/admin/includes/languages/en_US/image_groups.php @@ -1,13 +1,9 @@ -# $Id: image_groups.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: image_groups.php v1.0 2013-08-08 datazen $ heading_title = Image Groups diff --git a/catalog/admin/includes/languages/en_US/images.php b/catalog/admin/includes/languages/en_US/images.php index 776184e63..1f2443535 100644 --- a/catalog/admin/includes/languages/en_US/images.php +++ b/catalog/admin/includes/languages/en_US/images.php @@ -1,13 +1,9 @@ -# $Id: images.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: images.php v1.0 2013-08-08 datazen $ heading_title = Images diff --git a/catalog/admin/includes/languages/en_US/index.php b/catalog/admin/includes/languages/en_US/index.php index 589fdb955..f68fdf84c 100644 --- a/catalog/admin/includes/languages/en_US/index.php +++ b/catalog/admin/includes/languages/en_US/index.php @@ -1,13 +1,9 @@ -# $Id: index.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: index.php v1.0 2013-08-08 datazen $ total_customers_online = There are currently %s customers online. @@ -21,4 +17,8 @@ text_sessions = sessions text_orders = orders -text_chart_performance_current_month = Store Performance :: Current Month \ No newline at end of file +text_chart_performance_current_month = Store Performance :: Current Month + +button_understood = I Understand +text_api_com_issue = API Communication +text_api_com_issue_warnings = There were issues communicating with the API. diff --git a/catalog/admin/includes/languages/en_US/languages.php b/catalog/admin/includes/languages/en_US/languages.php index 5c2d83647..4db9b9650 100644 --- a/catalog/admin/includes/languages/en_US/languages.php +++ b/catalog/admin/includes/languages/en_US/languages.php @@ -1,13 +1,9 @@ -# $Id: languages.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: languages.php v1.0 2013-08-08 datazen $ heading_title = Languages diff --git a/catalog/admin/includes/languages/en_US/login.php b/catalog/admin/includes/languages/en_US/login.php index 5b878e5f3..5416a97f9 100644 --- a/catalog/admin/includes/languages/en_US/login.php +++ b/catalog/admin/includes/languages/en_US/login.php @@ -1,13 +1,9 @@ -# $Id: login.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: login.php v1.0 2013-08-08 datazen $ heading_title = Login heading_change_password = Change Password diff --git a/catalog/admin/includes/languages/en_US/manufacturers.php b/catalog/admin/includes/languages/en_US/manufacturers.php index 039539b54..b46e6f24c 100644 --- a/catalog/admin/includes/languages/en_US/manufacturers.php +++ b/catalog/admin/includes/languages/en_US/manufacturers.php @@ -1,13 +1,9 @@ -# $Id: manufacturers.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: manufacturers.php v1.0 2013-08-08 datazen $ heading_title = Manufacturers diff --git a/catalog/admin/includes/languages/en_US/modules/access/administrators.php b/catalog/admin/includes/languages/en_US/modules/access/administrators.php index 2ff42994c..c726ce0ed 100644 --- a/catalog/admin/includes/languages/en_US/modules/access/administrators.php +++ b/catalog/admin/includes/languages/en_US/modules/access/administrators.php @@ -1,13 +1,9 @@ -# $Id: administrators.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: administrators.php v1.0 2013-08-08 datazen $ access_administrators_title = Administrator access_administrators_groups_title = Groups diff --git a/catalog/admin/includes/languages/en_US/modules/access/administrators_log.php b/catalog/admin/includes/languages/en_US/modules/access/administrators_log.php index e09fe119f..23353171d 100644 --- a/catalog/admin/includes/languages/en_US/modules/access/administrators_log.php +++ b/catalog/admin/includes/languages/en_US/modules/access/administrators_log.php @@ -1,12 +1,8 @@ -# $Id: administrators_log.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: administrators_log.php v1.0 2013-08-08 datazen $ access_administrators_log_title = Administrators Log \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/access/backup.php b/catalog/admin/includes/languages/en_US/modules/access/backup.php index 4b432c5e8..fbe489756 100644 --- a/catalog/admin/includes/languages/en_US/modules/access/backup.php +++ b/catalog/admin/includes/languages/en_US/modules/access/backup.php @@ -1,12 +1,8 @@ -# $Id: backup.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: backup.php v1.0 2013-08-08 datazen $ access_backup_title = Backup Manager \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/access/banner_manager.php b/catalog/admin/includes/languages/en_US/modules/access/banner_manager.php index dc9c308b4..568304483 100644 --- a/catalog/admin/includes/languages/en_US/modules/access/banner_manager.php +++ b/catalog/admin/includes/languages/en_US/modules/access/banner_manager.php @@ -1,12 +1,8 @@ -# $Id: banner_manager.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: banner_manager.php v1.0 2013-08-08 datazen $ access_banner_manager_title = Banner Manager \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/access/branding_manager.php b/catalog/admin/includes/languages/en_US/modules/access/branding_manager.php index 31ff1d231..b068bc7c0 100644 --- a/catalog/admin/includes/languages/en_US/modules/access/branding_manager.php +++ b/catalog/admin/includes/languages/en_US/modules/access/branding_manager.php @@ -1,12 +1,8 @@ -# $Id: branding_manager.php v1.0 2011-11-04 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2011 LoadedCommerce.com -# -# @author LoadedCommerce Team -# @copyright (c) 2011 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: branding_manager.php v1.0 2013-08-08 datazen $ access_branding_manager_title = Branding Manager \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/access/cache.php b/catalog/admin/includes/languages/en_US/modules/access/cache.php index 261c0d097..b95f2794f 100644 --- a/catalog/admin/includes/languages/en_US/modules/access/cache.php +++ b/catalog/admin/includes/languages/en_US/modules/access/cache.php @@ -1,12 +1,8 @@ -# $Id: cache.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: cache.php v1.0 2013-08-08 datazen $ access_cache_title = Cache Control \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/access/categories.php b/catalog/admin/includes/languages/en_US/modules/access/categories.php index d334252ce..d4202c3df 100644 --- a/catalog/admin/includes/languages/en_US/modules/access/categories.php +++ b/catalog/admin/includes/languages/en_US/modules/access/categories.php @@ -1,12 +1,8 @@ -# $Id: categories.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: categories.php v1.0 2013-08-08 datazen $ access_categories_title = Category Pages \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/access/configuration.php b/catalog/admin/includes/languages/en_US/modules/access/configuration.php index 28fd4232b..6d97d909a 100644 --- a/catalog/admin/includes/languages/en_US/modules/access/configuration.php +++ b/catalog/admin/includes/languages/en_US/modules/access/configuration.php @@ -1,12 +1,8 @@ -# $Id: configuration.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: configuration.php v1.0 2013-08-08 datazen $ access_configuration_title = Configuration \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/access/coupons.php b/catalog/admin/includes/languages/en_US/modules/access/coupons.php index 3e4c89920..1253d6194 100644 --- a/catalog/admin/includes/languages/en_US/modules/access/coupons.php +++ b/catalog/admin/includes/languages/en_US/modules/access/coupons.php @@ -1,12 +1,8 @@ -# $Id: coupons.php v1.0 2011-11-04 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2011 LoadedCommerce.com -# -# @author LoadedCommerce Team -# @copyright (c) 2011 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: coupons.php v1.0 2013-08-08 datazen $ access_coupons_title = Coupon Manager \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/access/credit_cards.php b/catalog/admin/includes/languages/en_US/modules/access/credit_cards.php index 5ac35e3a3..8876662b3 100644 --- a/catalog/admin/includes/languages/en_US/modules/access/credit_cards.php +++ b/catalog/admin/includes/languages/en_US/modules/access/credit_cards.php @@ -1,12 +1,8 @@ -# $Id: credit_cards.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: credit_cards.php v1.0 2013-08-08 datazen $ access_credit_cards_title = Credit Cards \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/access/currencies.php b/catalog/admin/includes/languages/en_US/modules/access/currencies.php index 5d0701f6e..a1600ee44 100644 --- a/catalog/admin/includes/languages/en_US/modules/access/currencies.php +++ b/catalog/admin/includes/languages/en_US/modules/access/currencies.php @@ -1,12 +1,8 @@ -# $Id: currencies.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: currencies.php v1.0 2013-08-08 datazen $ access_currencies_title = Currencies \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/access/customer_groups.php b/catalog/admin/includes/languages/en_US/modules/access/customer_groups.php index 4952b0788..fe3a45665 100644 --- a/catalog/admin/includes/languages/en_US/modules/access/customer_groups.php +++ b/catalog/admin/includes/languages/en_US/modules/access/customer_groups.php @@ -1,12 +1,8 @@ -# $Id: customers.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: customer_groups.php v1.0 2013-08-08 datazen $ access_customers_title = Customer Groups \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/access/customers.php b/catalog/admin/includes/languages/en_US/modules/access/customers.php index 9bf088d10..b2c463b87 100644 --- a/catalog/admin/includes/languages/en_US/modules/access/customers.php +++ b/catalog/admin/includes/languages/en_US/modules/access/customers.php @@ -1,13 +1,9 @@ -# $Id: customers.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: customers.php v1.0 2013-08-08 datazen $ access_customers_title = Customers access_customers_menu_title = Customer Listing diff --git a/catalog/admin/includes/languages/en_US/modules/access/error_log.php b/catalog/admin/includes/languages/en_US/modules/access/error_log.php index d80471dc3..ad21f86d6 100644 --- a/catalog/admin/includes/languages/en_US/modules/access/error_log.php +++ b/catalog/admin/includes/languages/en_US/modules/access/error_log.php @@ -1,12 +1,8 @@ -# $Id: error_log.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: error_log.php v1.0 2013-08-08 datazen $ access_error_log_title = Error Log \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/access/file_manager.php b/catalog/admin/includes/languages/en_US/modules/access/file_manager.php index 19bbaadd3..03ace9735 100644 --- a/catalog/admin/includes/languages/en_US/modules/access/file_manager.php +++ b/catalog/admin/includes/languages/en_US/modules/access/file_manager.php @@ -1,12 +1,8 @@ -# $Id: file_manager.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: file_manager.php v1.0 2013-08-08 datazen $ access_file_manager_title = File Manager diff --git a/catalog/admin/includes/languages/en_US/modules/access/groups/configuration.php b/catalog/admin/includes/languages/en_US/modules/access/groups/configuration.php index 2e013cbcf..26c15b73e 100644 --- a/catalog/admin/includes/languages/en_US/modules/access/groups/configuration.php +++ b/catalog/admin/includes/languages/en_US/modules/access/groups/configuration.php @@ -1,12 +1,8 @@ -# $Id: configuration.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: configuration.php v1.0 2013-08-08 datazen $ access_group_configuration_title = Setup \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/access/groups/content.php b/catalog/admin/includes/languages/en_US/modules/access/groups/content.php index 2640d5af6..24e542906 100644 --- a/catalog/admin/includes/languages/en_US/modules/access/groups/content.php +++ b/catalog/admin/includes/languages/en_US/modules/access/groups/content.php @@ -1,12 +1,8 @@ -# $Id: content.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: content.php v1.0 2013-08-08 datazen $ access_group_content_title = Content \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/access/groups/customers.php b/catalog/admin/includes/languages/en_US/modules/access/groups/customers.php index 53ebf7ebf..a57a785a3 100644 --- a/catalog/admin/includes/languages/en_US/modules/access/groups/customers.php +++ b/catalog/admin/includes/languages/en_US/modules/access/groups/customers.php @@ -1,12 +1,8 @@ -# $Id: customers.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: customers.php v1.0 2013-08-08 datazen $ access_group_customers_title = Customers \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/access/groups/marketing.php b/catalog/admin/includes/languages/en_US/modules/access/groups/marketing.php index e91f83247..7d09fc86a 100644 --- a/catalog/admin/includes/languages/en_US/modules/access/groups/marketing.php +++ b/catalog/admin/includes/languages/en_US/modules/access/groups/marketing.php @@ -1,12 +1,8 @@ -# $Id: marketing.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: marketing.php v1.0 2013-08-08 datazen $ access_group_marketing_title = Marketing \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/access/groups/orders.php b/catalog/admin/includes/languages/en_US/modules/access/groups/orders.php index 4bff58eb6..0f89c0e9a 100644 --- a/catalog/admin/includes/languages/en_US/modules/access/groups/orders.php +++ b/catalog/admin/includes/languages/en_US/modules/access/groups/orders.php @@ -1,12 +1,8 @@ -# $Id: orders.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: orders.php v1.0 2013-08-08 datazen $ access_group_orders_title = Orders \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/access/groups/products.php b/catalog/admin/includes/languages/en_US/modules/access/groups/products.php index 1645d884c..949843e65 100644 --- a/catalog/admin/includes/languages/en_US/modules/access/groups/products.php +++ b/catalog/admin/includes/languages/en_US/modules/access/groups/products.php @@ -1,12 +1,8 @@ -# $Id: products.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: products.php v1.0 2013-08-08 datazen $ access_group_products_title = Products \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/access/groups/reports.php b/catalog/admin/includes/languages/en_US/modules/access/groups/reports.php index 2c7eccde6..de4792e25 100644 --- a/catalog/admin/includes/languages/en_US/modules/access/groups/reports.php +++ b/catalog/admin/includes/languages/en_US/modules/access/groups/reports.php @@ -1,12 +1,8 @@ -# $Id: reports.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: reports.php v1.0 2013-08-08 datazen $ access_group_reports_title = Reports \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/access/groups/tools.php b/catalog/admin/includes/languages/en_US/modules/access/groups/tools.php index 9cf9288ad..ab03811d8 100644 --- a/catalog/admin/includes/languages/en_US/modules/access/groups/tools.php +++ b/catalog/admin/includes/languages/en_US/modules/access/groups/tools.php @@ -1,12 +1,8 @@ -# $Id: tools.php v1.0 2011-11-04 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2011 LoadedCommerce.com -# -# @author LoadedCommerce Team -# @copyright (c) 2011 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: tools.php v1.0 2013-08-08 datazen $ access_group_tools_title = System Tools \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/access/image_groups.php b/catalog/admin/includes/languages/en_US/modules/access/image_groups.php index c489685c0..665305365 100644 --- a/catalog/admin/includes/languages/en_US/modules/access/image_groups.php +++ b/catalog/admin/includes/languages/en_US/modules/access/image_groups.php @@ -1,12 +1,8 @@ -# $Id: image_groups.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: image_groups.php v1.0 2013-08-08 datazen $ access_image_groups_title = Image Groups \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/access/images.php b/catalog/admin/includes/languages/en_US/modules/access/images.php index a7e3718c1..7a5d7ff11 100644 --- a/catalog/admin/includes/languages/en_US/modules/access/images.php +++ b/catalog/admin/includes/languages/en_US/modules/access/images.php @@ -1,12 +1,8 @@ -# $Id: images.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: images.php v1.0 2013-08-08 datazen $ access_images_title = Image Manager \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/access/languages.php b/catalog/admin/includes/languages/en_US/modules/access/languages.php index d2a46d3dc..dc8fca042 100644 --- a/catalog/admin/includes/languages/en_US/modules/access/languages.php +++ b/catalog/admin/includes/languages/en_US/modules/access/languages.php @@ -1,12 +1,8 @@ -# $Id: languages.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: languages.php v1.0 2013-08-08 datazen $ access_languages_title = Languages \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/access/locale.php b/catalog/admin/includes/languages/en_US/modules/access/locale.php index 8f1a7ddcf..5c35fbcfe 100644 --- a/catalog/admin/includes/languages/en_US/modules/access/locale.php +++ b/catalog/admin/includes/languages/en_US/modules/access/locale.php @@ -1,13 +1,9 @@ -# $Id: locale.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: locale.php v1.0 2013-08-08 datazen $ access_locale_title = Locale access_countries_title = Countries diff --git a/catalog/admin/includes/languages/en_US/modules/access/manufacturers.php b/catalog/admin/includes/languages/en_US/modules/access/manufacturers.php index 10f4f4b2c..c06a91c71 100644 --- a/catalog/admin/includes/languages/en_US/modules/access/manufacturers.php +++ b/catalog/admin/includes/languages/en_US/modules/access/manufacturers.php @@ -1,12 +1,8 @@ -# $Id: manufacturers.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: manufacturers.php v1.0 2013-08-08 datazen $ access_manufacturers_title = Manufacturers diff --git a/catalog/admin/includes/languages/en_US/modules/access/modules.php b/catalog/admin/includes/languages/en_US/modules/access/modules.php index 30f541138..80c05777e 100644 --- a/catalog/admin/includes/languages/en_US/modules/access/modules.php +++ b/catalog/admin/includes/languages/en_US/modules/access/modules.php @@ -1,13 +1,9 @@ -# $Id: modules.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: modules.php v1.0 2013-08-08 datazen $ access_modules_title = Modules access_modules_payment_title = Payment Modules diff --git a/catalog/admin/includes/languages/en_US/modules/access/modules_geoip.php b/catalog/admin/includes/languages/en_US/modules/access/modules_geoip.php index 5292aa8b7..a72ddbb85 100644 --- a/catalog/admin/includes/languages/en_US/modules/access/modules_geoip.php +++ b/catalog/admin/includes/languages/en_US/modules/access/modules_geoip.php @@ -1,12 +1,8 @@ -# $Id: modules_geoip.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: modules_geoip.php v1.0 2013-08-08 datazen $ access_modules_geoip_title = GeoIP \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/access/modules_order_total.php b/catalog/admin/includes/languages/en_US/modules/access/modules_order_total.php index ba45602bc..a142587e8 100644 --- a/catalog/admin/includes/languages/en_US/modules/access/modules_order_total.php +++ b/catalog/admin/includes/languages/en_US/modules/access/modules_order_total.php @@ -1,12 +1,8 @@ -# $Id: modules_order_total.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: modules_order_total.php v1.0 2013-08-08 datazen $ access_modules_order_total_title = Order Total \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/access/modules_payment.php b/catalog/admin/includes/languages/en_US/modules/access/modules_payment.php index 172da16cc..747dd2d51 100644 --- a/catalog/admin/includes/languages/en_US/modules/access/modules_payment.php +++ b/catalog/admin/includes/languages/en_US/modules/access/modules_payment.php @@ -1,12 +1,8 @@ -# $Id: modules_payment.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: modules_payment.php v1.0 2013-08-08 datazen $ access_modules_payment_title = Payment \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/access/modules_shipping.php b/catalog/admin/includes/languages/en_US/modules/access/modules_shipping.php index 1b25c46b6..a65f5237f 100644 --- a/catalog/admin/includes/languages/en_US/modules/access/modules_shipping.php +++ b/catalog/admin/includes/languages/en_US/modules/access/modules_shipping.php @@ -1,12 +1,8 @@ -# $Id: modules_shipping.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: modules_shipping.php v1.0 2013-08-08 datazen $ access_modules_shipping_title = Shipping \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/access/newsletters.php b/catalog/admin/includes/languages/en_US/modules/access/newsletters.php index 0c1f60b9c..9f7ae60b8 100644 --- a/catalog/admin/includes/languages/en_US/modules/access/newsletters.php +++ b/catalog/admin/includes/languages/en_US/modules/access/newsletters.php @@ -1,12 +1,8 @@ -# $Id: newsletters.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: newsletters.php v1.0 2013-08-08 datazen $ access_newsletters_title = Newsletter Manager \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/access/orders.php b/catalog/admin/includes/languages/en_US/modules/access/orders.php index f8a04c95f..215f29764 100644 --- a/catalog/admin/includes/languages/en_US/modules/access/orders.php +++ b/catalog/admin/includes/languages/en_US/modules/access/orders.php @@ -1,12 +1,8 @@ -# $Id: orders.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: orders.php v1.0 2013-08-08 datazen $ access_orders_title = Orders \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/access/orders_status.php b/catalog/admin/includes/languages/en_US/modules/access/orders_status.php index 6a45785f7..217d76ed3 100644 --- a/catalog/admin/includes/languages/en_US/modules/access/orders_status.php +++ b/catalog/admin/includes/languages/en_US/modules/access/orders_status.php @@ -1,12 +1,8 @@ -# $Id: orders_status.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: orders_status.php v1.0 2013-08-08 datazen $ access_orders_status_title = Order Statuses \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/access/product_attributes.php b/catalog/admin/includes/languages/en_US/modules/access/product_attributes.php index e12498214..1d1ed583e 100644 --- a/catalog/admin/includes/languages/en_US/modules/access/product_attributes.php +++ b/catalog/admin/includes/languages/en_US/modules/access/product_attributes.php @@ -1,12 +1,8 @@ -# $Id: product_attributes.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: product_attributes.php v1.0 2013-08-08 datazen $ access_product_attributes_title = Product \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/access/product_settings.php b/catalog/admin/includes/languages/en_US/modules/access/product_settings.php index 0b115ea79..229a91bc1 100644 --- a/catalog/admin/includes/languages/en_US/modules/access/product_settings.php +++ b/catalog/admin/includes/languages/en_US/modules/access/product_settings.php @@ -1,13 +1,9 @@ -# $Id: product_settings.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: product_settings.php v1.0 2013-08-08 datazen $ access_product_settings_title = Settings access_weight_classes_title = Weight Classes diff --git a/catalog/admin/includes/languages/en_US/modules/access/product_variants.php b/catalog/admin/includes/languages/en_US/modules/access/product_variants.php index 9ffd455fb..d8b55d7d6 100644 --- a/catalog/admin/includes/languages/en_US/modules/access/product_variants.php +++ b/catalog/admin/includes/languages/en_US/modules/access/product_variants.php @@ -1,12 +1,8 @@ -# $Id: product_variants.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: product_variants.php v1.0 2013-08-08 datazen $ access_product_variants_title = Options Manager \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/access/products.php b/catalog/admin/includes/languages/en_US/modules/access/products.php index fb84c4a61..7c47929bf 100644 --- a/catalog/admin/includes/languages/en_US/modules/access/products.php +++ b/catalog/admin/includes/languages/en_US/modules/access/products.php @@ -1,13 +1,9 @@ -# $Id: products.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: products.php v1.0 2013-08-08 datazen $ access_products_title = Products access_products_new_title = New Product \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/access/products_expected.php b/catalog/admin/includes/languages/en_US/modules/access/products_expected.php index 9d77bf97e..155bb39bc 100644 --- a/catalog/admin/includes/languages/en_US/modules/access/products_expected.php +++ b/catalog/admin/includes/languages/en_US/modules/access/products_expected.php @@ -1,12 +1,8 @@ -# $Id: products_expected.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: products_expected.php v1.0 2013-08-08 datazen $ access_products_expected_title = Products Expected \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/access/reviews.php b/catalog/admin/includes/languages/en_US/modules/access/reviews.php index 9e019e5cd..112e8240b 100644 --- a/catalog/admin/includes/languages/en_US/modules/access/reviews.php +++ b/catalog/admin/includes/languages/en_US/modules/access/reviews.php @@ -1,12 +1,8 @@ -# $Id: reviews.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: reviews.php v1.0 2013-08-08 datazen $ access_reviews_title = Reviews \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/access/server_info.php b/catalog/admin/includes/languages/en_US/modules/access/server_info.php index 208b82db6..6a11f8677 100644 --- a/catalog/admin/includes/languages/en_US/modules/access/server_info.php +++ b/catalog/admin/includes/languages/en_US/modules/access/server_info.php @@ -1,12 +1,8 @@ -# $Id: server_info.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: server_info.php v1.0 2013-08-08 datazen $ access_server_info_title = Server Information \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/access/services.php b/catalog/admin/includes/languages/en_US/modules/access/services.php index d960c14a6..28e78c98e 100644 --- a/catalog/admin/includes/languages/en_US/modules/access/services.php +++ b/catalog/admin/includes/languages/en_US/modules/access/services.php @@ -1,12 +1,8 @@ -# $Id: services.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: services.php v1.0 2013-08-08 datazen $ access_services_title = Service \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/access/specials.php b/catalog/admin/includes/languages/en_US/modules/access/specials.php index 02d831fd6..eb0b30134 100644 --- a/catalog/admin/includes/languages/en_US/modules/access/specials.php +++ b/catalog/admin/includes/languages/en_US/modules/access/specials.php @@ -1,12 +1,8 @@ -# $Id: specials.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: specials.php v1.0 2013-08-08 datazen $ access_specials_title = Product Specials \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/access/statistics.php b/catalog/admin/includes/languages/en_US/modules/access/statistics.php index a6c1fdd84..767c3e6a3 100644 --- a/catalog/admin/includes/languages/en_US/modules/access/statistics.php +++ b/catalog/admin/includes/languages/en_US/modules/access/statistics.php @@ -1,12 +1,8 @@ -# $Id: statistics.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: statistics.php v1.0 2013-08-08 datazen $ access_statistics_title = Statistics \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/access/store.php b/catalog/admin/includes/languages/en_US/modules/access/store.php index a754dd6e7..d53ae1bfd 100644 --- a/catalog/admin/includes/languages/en_US/modules/access/store.php +++ b/catalog/admin/includes/languages/en_US/modules/access/store.php @@ -1,12 +1,8 @@ -# $Id: store.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: store.php v1.0 2013-08-08 datazen $ access_store_title = Add Ons \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/access/tax_classes.php b/catalog/admin/includes/languages/en_US/modules/access/tax_classes.php index 4b66c34f7..e87de9e8b 100644 --- a/catalog/admin/includes/languages/en_US/modules/access/tax_classes.php +++ b/catalog/admin/includes/languages/en_US/modules/access/tax_classes.php @@ -1,12 +1,8 @@ -# $Id: tax_classes.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: tax_classes.php v1.0 2013-08-08 datazen $ access_tax_classes_title = Tax Classes \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/access/templates.php b/catalog/admin/includes/languages/en_US/modules/access/templates.php index 55c01ad8c..68edbf08d 100644 --- a/catalog/admin/includes/languages/en_US/modules/access/templates.php +++ b/catalog/admin/includes/languages/en_US/modules/access/templates.php @@ -1,12 +1,8 @@ -# $Id: templates.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: templates.php v1.0 2013-08-08 datazen $ access_templates_title = Templates \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/access/templates_modules.php b/catalog/admin/includes/languages/en_US/modules/access/templates_modules.php index 5df29f79b..903856d75 100644 --- a/catalog/admin/includes/languages/en_US/modules/access/templates_modules.php +++ b/catalog/admin/includes/languages/en_US/modules/access/templates_modules.php @@ -1,13 +1,9 @@ -# $Id: templates_modules.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: templates_modules.php v1.0 2013-08-08 datazen $ access_templates_modules_title = Templates Modules access_templates_modules_boxes_title = Boxes diff --git a/catalog/admin/includes/languages/en_US/modules/access/templates_modules_layout.php b/catalog/admin/includes/languages/en_US/modules/access/templates_modules_layout.php index e225ec9f8..c4e9691c0 100644 --- a/catalog/admin/includes/languages/en_US/modules/access/templates_modules_layout.php +++ b/catalog/admin/includes/languages/en_US/modules/access/templates_modules_layout.php @@ -1,13 +1,9 @@ -# $Id: templates_modules_layout.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: templates_modules_layout.php v1.0 2013-08-08 datazen $ access_templates_modules_layout_title = Templates Modules Layout access_templates_modules_layout_boxes_title = Boxes diff --git a/catalog/admin/includes/languages/en_US/modules/access/updates.php b/catalog/admin/includes/languages/en_US/modules/access/updates.php index 54649f32c..74d1fb123 100644 --- a/catalog/admin/includes/languages/en_US/modules/access/updates.php +++ b/catalog/admin/includes/languages/en_US/modules/access/updates.php @@ -1,12 +1,8 @@ -# $Id: updates.php v1.0 2011-11-04 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2011 LoadedCommerce.com -# -# @author LoadedCommerce Team -# @copyright (c) 2011 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: updates.php v1.0 2013-08-08 datazen $ access_updates_title = Core Updates \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/access/weight_classes.php b/catalog/admin/includes/languages/en_US/modules/access/weight_classes.php index 652f8ab82..89be4d0b6 100644 --- a/catalog/admin/includes/languages/en_US/modules/access/weight_classes.php +++ b/catalog/admin/includes/languages/en_US/modules/access/weight_classes.php @@ -1,12 +1,8 @@ -# $Id: weight_classes.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: weight_classes.php v1.0 2013-08-08 datazen $ access_weight_classes_title = Weight Classes \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/access/whos_online.php b/catalog/admin/includes/languages/en_US/modules/access/whos_online.php index 1b4aad575..6ea62c128 100644 --- a/catalog/admin/includes/languages/en_US/modules/access/whos_online.php +++ b/catalog/admin/includes/languages/en_US/modules/access/whos_online.php @@ -1,12 +1,8 @@ -# $Id: whos_online.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: whos_online.php v1.0 2013-08-08 datazen $ access_whos_online_title = Who's Online \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/geoip/maxmind_geolite_country.php b/catalog/admin/includes/languages/en_US/modules/geoip/maxmind_geolite_country.php index e963b94ec..2d15d2a51 100644 --- a/catalog/admin/includes/languages/en_US/modules/geoip/maxmind_geolite_country.php +++ b/catalog/admin/includes/languages/en_US/modules/geoip/maxmind_geolite_country.php @@ -1,13 +1,9 @@ -# $Id: maxmind_geolite_country.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: maxmind_geolite_country.php v1.0 2013-08-08 datazen $ geoip_maxmind_geolite_country_title = MaxMind GeoLite Country geoip_maxmind_geolite_country_description = http://www.maxmind.com \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/image/check.php b/catalog/admin/includes/languages/en_US/modules/image/check.php index bf830680b..9d936707c 100644 --- a/catalog/admin/includes/languages/en_US/modules/image/check.php +++ b/catalog/admin/includes/languages/en_US/modules/image/check.php @@ -1,13 +1,9 @@ -# $Id: check.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: check.php v1.0 2013-08-08 datazen $ images_check_title = Check Images images_check_table_heading_groups = Groups diff --git a/catalog/admin/includes/languages/en_US/modules/image/resize.php b/catalog/admin/includes/languages/en_US/modules/image/resize.php index ab2386532..b932d3fc0 100644 --- a/catalog/admin/includes/languages/en_US/modules/image/resize.php +++ b/catalog/admin/includes/languages/en_US/modules/image/resize.php @@ -1,13 +1,9 @@ -# $Id: resize.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: resize.php v1.0 2013-08-08 datazen $ images_resize_title = Resize Images images_resize_table_heading_groups = Groups diff --git a/catalog/admin/includes/languages/en_US/modules/newsletters/email.php b/catalog/admin/includes/languages/en_US/modules/newsletters/email.php index 07fc0e46a..fdde8da17 100644 --- a/catalog/admin/includes/languages/en_US/modules/newsletters/email.php +++ b/catalog/admin/includes/languages/en_US/modules/newsletters/email.php @@ -1,13 +1,9 @@ -# $Id: email.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: email.php v1.0 2013-08-08 datazen $ newsletter_email_title = E-Mail newsletter_email_total_recipients = Recipients receiving this e-mail: %s diff --git a/catalog/admin/includes/languages/en_US/modules/newsletters/newsletter.php b/catalog/admin/includes/languages/en_US/modules/newsletters/newsletter.php index 1c32b17bc..b8ce45b13 100644 --- a/catalog/admin/includes/languages/en_US/modules/newsletters/newsletter.php +++ b/catalog/admin/includes/languages/en_US/modules/newsletters/newsletter.php @@ -1,13 +1,9 @@ -# $Id: newsletter.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: newsletter.php v1.0 2013-08-08 datazen $ newsletter_newsletter_title = Newsletter newsletter_newsletter_total_recipients = Recipients receiving this newsletter: %s \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/newsletters/product_notification.php b/catalog/admin/includes/languages/en_US/modules/newsletters/product_notification.php index e0828e1cb..115b9c8a9 100644 --- a/catalog/admin/includes/languages/en_US/modules/newsletters/product_notification.php +++ b/catalog/admin/includes/languages/en_US/modules/newsletters/product_notification.php @@ -1,13 +1,9 @@ -# $Id: product_notification.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: product_notifications.php v1.0 2013-08-08 datazen $ newsletter_product_notifications_title = Product Notifications newsletter_product_notifications_table_heading_products = Products diff --git a/catalog/admin/includes/languages/en_US/modules/product_attributes/date_available.php b/catalog/admin/includes/languages/en_US/modules/product_attributes/date_available.php index 4a3561458..23a888f03 100644 --- a/catalog/admin/includes/languages/en_US/modules/product_attributes/date_available.php +++ b/catalog/admin/includes/languages/en_US/modules/product_attributes/date_available.php @@ -1,13 +1,9 @@ -# $Id: date_available.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: date_available.php v1.0 2013-08-08 datazen $ product_attributes_date_available_title = Date Available diff --git a/catalog/admin/includes/languages/en_US/modules/product_attributes/manufacturers.php b/catalog/admin/includes/languages/en_US/modules/product_attributes/manufacturers.php index fb181f8a5..6c7f9ce23 100644 --- a/catalog/admin/includes/languages/en_US/modules/product_attributes/manufacturers.php +++ b/catalog/admin/includes/languages/en_US/modules/product_attributes/manufacturers.php @@ -1,13 +1,9 @@ -# $Id: manufacturers.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: manufacturers.php v1.0 2013-08-08 datazen $ product_attributes_manufacturers_title = Manufacturer diff --git a/catalog/admin/includes/languages/en_US/modules/product_attributes/shipping_availability.php b/catalog/admin/includes/languages/en_US/modules/product_attributes/shipping_availability.php index aa849a31e..0c900862e 100644 --- a/catalog/admin/includes/languages/en_US/modules/product_attributes/shipping_availability.php +++ b/catalog/admin/includes/languages/en_US/modules/product_attributes/shipping_availability.php @@ -1,13 +1,9 @@ -# $Id: shipping_availability.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: shipping_availability.php v1.0 2013-08-08 datazen $ product_attributes_shipping_availability_title = Days to Ship diff --git a/catalog/admin/includes/languages/en_US/modules/services/banner.php b/catalog/admin/includes/languages/en_US/modules/services/banner.php index c4ca7a98f..af771a7d2 100644 --- a/catalog/admin/includes/languages/en_US/modules/services/banner.php +++ b/catalog/admin/includes/languages/en_US/modules/services/banner.php @@ -1,13 +1,9 @@ -# $Id: banner.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: banner.php v1.0 2013-08-08 datazen $ services_banner_title = Banner services_banner_description = Banner management features for the catalog \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/services/breadcrumb.php b/catalog/admin/includes/languages/en_US/modules/services/breadcrumb.php index cd23caf62..f06faf727 100644 --- a/catalog/admin/includes/languages/en_US/modules/services/breadcrumb.php +++ b/catalog/admin/includes/languages/en_US/modules/services/breadcrumb.php @@ -1,13 +1,9 @@ -# $Id: breadcrumb.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: breadcrumb.php v1.0 2013-08-08 datazen $ services_breadcrumb_title = Breadcrumb services_breadcrumb_description = Breadcrumb builder for easy navigation \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/services/category_path.php b/catalog/admin/includes/languages/en_US/modules/services/category_path.php index 3d5d407f4..555e4945f 100644 --- a/catalog/admin/includes/languages/en_US/modules/services/category_path.php +++ b/catalog/admin/includes/languages/en_US/modules/services/category_path.php @@ -1,13 +1,9 @@ -# $Id: category_path.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: category_path.php v1.0 2013-08-08 datazen $ services_category_path_title = Category Path services_category_path_description = Parses the category path \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/services/core.php b/catalog/admin/includes/languages/en_US/modules/services/core.php index 14016fb27..c531ac4e1 100644 --- a/catalog/admin/includes/languages/en_US/modules/services/core.php +++ b/catalog/admin/includes/languages/en_US/modules/services/core.php @@ -1,13 +1,9 @@ -# $Id: core.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: core.php v1.0 2013-08-08 datazen $ services_core_title = Core services_core_description = Load core classes \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/services/coupons.php b/catalog/admin/includes/languages/en_US/modules/services/coupons.php index 0546e74ea..3dfdc9c6f 100644 --- a/catalog/admin/includes/languages/en_US/modules/services/coupons.php +++ b/catalog/admin/includes/languages/en_US/modules/services/coupons.php @@ -1,13 +1,9 @@ -# $Id: coupons.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: coupons.php v1.0 2013-08-08 datazen $ services_coupons_title = Coupons services_coupons_description = Enable Coupons \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/services/currencies.php b/catalog/admin/includes/languages/en_US/modules/services/currencies.php index 750d11a08..3f1b27248 100644 --- a/catalog/admin/includes/languages/en_US/modules/services/currencies.php +++ b/catalog/admin/includes/languages/en_US/modules/services/currencies.php @@ -1,13 +1,9 @@ -# $Id: currencies.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: currencies.php v1.0 2013-08-08 datazen $ services_currencies_title = Currencies services_currencies_description = Set the default or selected currency \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/services/debug.php b/catalog/admin/includes/languages/en_US/modules/services/debug.php index c167b869b..bc7fb13a9 100644 --- a/catalog/admin/includes/languages/en_US/modules/services/debug.php +++ b/catalog/admin/includes/languages/en_US/modules/services/debug.php @@ -1,13 +1,9 @@ -# $Id: debug.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: debug.php v1.0 2013-08-08 datazen $ services_debug_title = Debug services_debug_description = Display collected debug information \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/services/language.php b/catalog/admin/includes/languages/en_US/modules/services/language.php index 26bb85050..26b93a3bd 100644 --- a/catalog/admin/includes/languages/en_US/modules/services/language.php +++ b/catalog/admin/includes/languages/en_US/modules/services/language.php @@ -1,13 +1,9 @@ -# $Id: language.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: language.php v1.0 2013-08-08 datazen $ services_language_title = Language services_language_description = Include the default or selected language files \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/services/output_compression.php b/catalog/admin/includes/languages/en_US/modules/services/output_compression.php index 03bca5887..7455f4177 100644 --- a/catalog/admin/includes/languages/en_US/modules/services/output_compression.php +++ b/catalog/admin/includes/languages/en_US/modules/services/output_compression.php @@ -1,13 +1,9 @@ -# $Id: output_compression.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: output_compression.php v1.0 2013-08-08 datazen $ services_output_compression_title = Output Compression services_output_compression_description = Compress the content with GZIP \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/services/recently_visited.php b/catalog/admin/includes/languages/en_US/modules/services/recently_visited.php index 2dfa022e5..1009cbe7b 100644 --- a/catalog/admin/includes/languages/en_US/modules/services/recently_visited.php +++ b/catalog/admin/includes/languages/en_US/modules/services/recently_visited.php @@ -1,13 +1,9 @@ -# $Id: recently_visited.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: recently_visited.php v1.0 2013-08-08 datazen $ services_recently_visited_title = Recently Visited services_recently_visited_description = Enable Recently visited module \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/services/reviews.php b/catalog/admin/includes/languages/en_US/modules/services/reviews.php index 68a015102..fa915cf39 100644 --- a/catalog/admin/includes/languages/en_US/modules/services/reviews.php +++ b/catalog/admin/includes/languages/en_US/modules/services/reviews.php @@ -1,13 +1,9 @@ -# $Id: reviews.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: reviews.php v1.0 2013-08-08 datazen $ services_reviews_title = Reviews services_reviews_description = Enable Product Reviews \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/services/seo.php b/catalog/admin/includes/languages/en_US/modules/services/seo.php index 82b14c02c..155dc3a6a 100644 --- a/catalog/admin/includes/languages/en_US/modules/services/seo.php +++ b/catalog/admin/includes/languages/en_US/modules/services/seo.php @@ -1,13 +1,9 @@ -# $Id: seo.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: seo.php v1.0 2013-08-08 datazen $ services_seo_title = SEO URL's services_seo_description = Search engine optimized urls. \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/services/session.php b/catalog/admin/includes/languages/en_US/modules/services/session.php index efe70501d..74948d19b 100644 --- a/catalog/admin/includes/languages/en_US/modules/services/session.php +++ b/catalog/admin/includes/languages/en_US/modules/services/session.php @@ -1,13 +1,9 @@ -# $Id: session.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: session.php v1.0 2013-08-08 datazen $ services_session_title = Session services_session_description = The session manager for guests, customers, and spider robots \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/services/simple_counter.php b/catalog/admin/includes/languages/en_US/modules/services/simple_counter.php index 309530596..31d2fb638 100644 --- a/catalog/admin/includes/languages/en_US/modules/services/simple_counter.php +++ b/catalog/admin/includes/languages/en_US/modules/services/simple_counter.php @@ -1,13 +1,9 @@ -# $Id: simple_counter.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: simple_counter.php v1.0 2013-08-08 datazen $ services_simple_counter_title = Simple Counter services_simple_counter_description = Count the number of page requests made \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/services/specials.php b/catalog/admin/includes/languages/en_US/modules/services/specials.php index 9c67f60c3..c63f292f8 100644 --- a/catalog/admin/includes/languages/en_US/modules/services/specials.php +++ b/catalog/admin/includes/languages/en_US/modules/services/specials.php @@ -1,13 +1,9 @@ -# $Id: specials.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: specials.php v1.0 2013-08-08 datazen $ services_specials_title = Specials services_specials_description = Enable Product Specials \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/services/whos_online.php b/catalog/admin/includes/languages/en_US/modules/services/whos_online.php index 01ab8a6f4..db81a5ef6 100644 --- a/catalog/admin/includes/languages/en_US/modules/services/whos_online.php +++ b/catalog/admin/includes/languages/en_US/modules/services/whos_online.php @@ -1,13 +1,9 @@ -# $Id: whos_online.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: whos_online.php v1.0 2013-08-08 datazen $ services_whos_online_title = Who's Online services_whos_online_description = See who is currently online \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/statistics/low_stock.php b/catalog/admin/includes/languages/en_US/modules/statistics/low_stock.php index 82c513fd7..66ededf62 100644 --- a/catalog/admin/includes/languages/en_US/modules/statistics/low_stock.php +++ b/catalog/admin/includes/languages/en_US/modules/statistics/low_stock.php @@ -1,13 +1,9 @@ -# $Id: low_stock.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: low_stock.php v1.0 2013-08-08 datazen $ statistics_low_stock_title = Low Stock statistics_low_stock_table_heading_products = Products diff --git a/catalog/admin/includes/languages/en_US/modules/statistics/orders.php b/catalog/admin/includes/languages/en_US/modules/statistics/orders.php index 6b538a981..f1a46a2b2 100644 --- a/catalog/admin/includes/languages/en_US/modules/statistics/orders.php +++ b/catalog/admin/includes/languages/en_US/modules/statistics/orders.php @@ -1,13 +1,9 @@ -# $Id: orders.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: orders.php v1.0 2013-08-08 datazen $ statistics_orders_title = Best Orders statistics_orders_table_heading_customers = Customers diff --git a/catalog/admin/includes/languages/en_US/modules/statistics/products_purchased.php b/catalog/admin/includes/languages/en_US/modules/statistics/products_purchased.php index 230af688d..98a091898 100644 --- a/catalog/admin/includes/languages/en_US/modules/statistics/products_purchased.php +++ b/catalog/admin/includes/languages/en_US/modules/statistics/products_purchased.php @@ -1,13 +1,9 @@ -# $Id: products_purchased.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: products_purchased.php v1.0 2013-08-08 datazen $ statistics_products_purchased_title = Best Products Purchased statistics_products_purchased_table_heading_products = Products diff --git a/catalog/admin/includes/languages/en_US/modules/statistics/products_viewed.php b/catalog/admin/includes/languages/en_US/modules/statistics/products_viewed.php index 69c524e6f..e08f13e93 100644 --- a/catalog/admin/includes/languages/en_US/modules/statistics/products_viewed.php +++ b/catalog/admin/includes/languages/en_US/modules/statistics/products_viewed.php @@ -1,13 +1,9 @@ -# $Id: products_viewed.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: products_viewed.php v1.0 2013-08-08 datazen $ statistics_products_viewed_title = Best Viewed Products statistics_products_viewed_table_heading_products = Products diff --git a/catalog/admin/includes/languages/en_US/modules/summary/administrators_log.php b/catalog/admin/includes/languages/en_US/modules/summary/administrators_log.php index 60ab87c14..beddbbf1b 100644 --- a/catalog/admin/includes/languages/en_US/modules/summary/administrators_log.php +++ b/catalog/admin/includes/languages/en_US/modules/summary/administrators_log.php @@ -1,13 +1,9 @@ -# $Id: summary.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: administrators_log.php v1.0 2013-08-08 datazen $ summary_administrators_log_title = Administrators Log summary_administrators_log_table_heading_users = Users diff --git a/catalog/admin/includes/languages/en_US/modules/summary/customers.php b/catalog/admin/includes/languages/en_US/modules/summary/customers.php index 005ff3335..fa90bc02e 100644 --- a/catalog/admin/includes/languages/en_US/modules/summary/customers.php +++ b/catalog/admin/includes/languages/en_US/modules/summary/customers.php @@ -1,13 +1,9 @@ -# $Id: customers.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: customers.php v1.0 2013-08-08 datazen $ summary_customers_title = Latest Customers summary_customers_table_heading_customers = Customers diff --git a/catalog/admin/includes/languages/en_US/modules/summary/error_log.php b/catalog/admin/includes/languages/en_US/modules/summary/error_log.php index eb52396e4..d2b834931 100644 --- a/catalog/admin/includes/languages/en_US/modules/summary/error_log.php +++ b/catalog/admin/includes/languages/en_US/modules/summary/error_log.php @@ -1,13 +1,9 @@ -# $Id: error_log.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: error_log.php v1.0 2013-08-08 datazen $ summary_error_log_title = Error Log summary_error_log_table_heading_date = Date diff --git a/catalog/admin/includes/languages/en_US/modules/summary/orders.php b/catalog/admin/includes/languages/en_US/modules/summary/orders.php index fd961461a..bce178d77 100644 --- a/catalog/admin/includes/languages/en_US/modules/summary/orders.php +++ b/catalog/admin/includes/languages/en_US/modules/summary/orders.php @@ -1,12 +1,8 @@ -# $Id: orders.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: orders.php v1.0 2013-08-08 datazen $ summary_orders_title = New Orders \ No newline at end of file diff --git a/catalog/admin/includes/languages/en_US/modules/summary/products.php b/catalog/admin/includes/languages/en_US/modules/summary/products.php index 0270d07f9..59ef2ea54 100644 --- a/catalog/admin/includes/languages/en_US/modules/summary/products.php +++ b/catalog/admin/includes/languages/en_US/modules/summary/products.php @@ -1,13 +1,9 @@ -# $Id: products.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: products.php v1.0 2013-08-08 datazen $ summary_products_title = Products summary_products_table_heading_products = Products diff --git a/catalog/admin/includes/languages/en_US/modules/summary/revenue.php b/catalog/admin/includes/languages/en_US/modules/summary/revenue.php index 5259239aa..871db6280 100644 --- a/catalog/admin/includes/languages/en_US/modules/summary/revenue.php +++ b/catalog/admin/includes/languages/en_US/modules/summary/revenue.php @@ -1,13 +1,9 @@ -# $Id: revenue.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: revenue.php v1.0 2013-08-08 datazen $ summary_revenue_title = Revenue Snapshot summary_revenue_text_todays = Today's diff --git a/catalog/admin/includes/languages/en_US/modules/summary/reviews.php b/catalog/admin/includes/languages/en_US/modules/summary/reviews.php index af77add87..b9a8e5298 100644 --- a/catalog/admin/includes/languages/en_US/modules/summary/reviews.php +++ b/catalog/admin/includes/languages/en_US/modules/summary/reviews.php @@ -1,13 +1,9 @@ -# $Id: reviews.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages::modules +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: reviews.php v1.0 2013-08-08 datazen $ summary_reviews_title = Reviews summary_reviews_table_heading_products = Products diff --git a/catalog/admin/includes/languages/en_US/modules_geoip.php b/catalog/admin/includes/languages/en_US/modules_geoip.php index f2ebad817..162f19319 100644 --- a/catalog/admin/includes/languages/en_US/modules_geoip.php +++ b/catalog/admin/includes/languages/en_US/modules_geoip.php @@ -1,13 +1,9 @@ -# $Id: modules_geoip.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: modules_geoip.php v1.0 2013-08-08 datazen $ heading_title = GeoIP Modules diff --git a/catalog/admin/includes/languages/en_US/modules_order_total.php b/catalog/admin/includes/languages/en_US/modules_order_total.php index 5383cc101..220702f4c 100644 --- a/catalog/admin/includes/languages/en_US/modules_order_total.php +++ b/catalog/admin/includes/languages/en_US/modules_order_total.php @@ -1,13 +1,9 @@ -# $Id: modules_order_total.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: modules_order_total.php v1.0 2013-08-08 datazen $ heading_title = Order Total Modules diff --git a/catalog/admin/includes/languages/en_US/newsletters.php b/catalog/admin/includes/languages/en_US/newsletters.php index b9b65e12f..c79480438 100644 --- a/catalog/admin/includes/languages/en_US/newsletters.php +++ b/catalog/admin/includes/languages/en_US/newsletters.php @@ -1,13 +1,9 @@ -# $Id: newsletters.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: newsletters.php v1.0 2013-08-08 datazen $ heading_title = Newsletter Manager diff --git a/catalog/admin/includes/languages/en_US/orders.php b/catalog/admin/includes/languages/en_US/orders.php index 6676722e0..d66bf1eb4 100644 --- a/catalog/admin/includes/languages/en_US/orders.php +++ b/catalog/admin/includes/languages/en_US/orders.php @@ -1,13 +1,9 @@ -# $Id: orders.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: orders.php v1.0 2013-08-08 datazen $ heading_title = Orders heading_sub_title = (showing results for cID: %s) diff --git a/catalog/admin/includes/languages/en_US/orders_status.php b/catalog/admin/includes/languages/en_US/orders_status.php index 92dc7aee5..3b4aa8649 100644 --- a/catalog/admin/includes/languages/en_US/orders_status.php +++ b/catalog/admin/includes/languages/en_US/orders_status.php @@ -1,13 +1,9 @@ -# $Id: orders_status.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: orders_status.php v1.0 2013-08-08 datazen $ heading_title = Order Statuses diff --git a/catalog/admin/includes/languages/en_US/product_attributes.php b/catalog/admin/includes/languages/en_US/product_attributes.php index 95fcdd387..70a9367de 100644 --- a/catalog/admin/includes/languages/en_US/product_attributes.php +++ b/catalog/admin/includes/languages/en_US/product_attributes.php @@ -1,13 +1,9 @@ -# $Id: product_attributes.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: product_attributes.php v1.0 2013-08-08 datazen $ heading_title = Product Modules diff --git a/catalog/admin/includes/languages/en_US/product_variants.php b/catalog/admin/includes/languages/en_US/product_variants.php index e60634f08..c00721dce 100644 --- a/catalog/admin/includes/languages/en_US/product_variants.php +++ b/catalog/admin/includes/languages/en_US/product_variants.php @@ -1,13 +1,9 @@ -# $Id: product_variants.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: product_variants.php v1.0 2013-08-08 datazen $ heading_title = Product Options Manager diff --git a/catalog/admin/includes/languages/en_US/products.php b/catalog/admin/includes/languages/en_US/products.php index 505a8e0e2..c4308bbf1 100644 --- a/catalog/admin/includes/languages/en_US/products.php +++ b/catalog/admin/includes/languages/en_US/products.php @@ -1,13 +1,9 @@ -# $Id: products.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: products.php v1.0 2013-08-08 datazen $ button_new_product = New Product button_add_price_break = Add a Price Break diff --git a/catalog/admin/includes/languages/en_US/products_expected.php b/catalog/admin/includes/languages/en_US/products_expected.php index 434085c3e..eaa5374bb 100644 --- a/catalog/admin/includes/languages/en_US/products_expected.php +++ b/catalog/admin/includes/languages/en_US/products_expected.php @@ -1,13 +1,9 @@ -# $Id: products_expected.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: products_expected.php v1.0 2013-08-08 datazen $ heading_title = Products Expected diff --git a/catalog/admin/includes/languages/en_US/reviews.php b/catalog/admin/includes/languages/en_US/reviews.php index abd5e3b72..4ee9f0d86 100644 --- a/catalog/admin/includes/languages/en_US/reviews.php +++ b/catalog/admin/includes/languages/en_US/reviews.php @@ -1,13 +1,9 @@ -# $Id: reviews.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: reviews.php v1.0 2013-08-08 datazen $ heading_title = Reviews diff --git a/catalog/admin/includes/languages/en_US/server_info.php b/catalog/admin/includes/languages/en_US/server_info.php index a596a1c6b..88e504a43 100644 --- a/catalog/admin/includes/languages/en_US/server_info.php +++ b/catalog/admin/includes/languages/en_US/server_info.php @@ -1,13 +1,9 @@ -# $Id: server_info.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: server_info.php v1.0 2013-08-08 datazen $ heading_title = Server Information diff --git a/catalog/admin/includes/languages/en_US/services.php b/catalog/admin/includes/languages/en_US/services.php index a24fca92b..23067f833 100644 --- a/catalog/admin/includes/languages/en_US/services.php +++ b/catalog/admin/includes/languages/en_US/services.php @@ -1,13 +1,9 @@ -# $Id: services.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: services.php v1.0 2013-08-08 datazen $ heading_title = Service Modules diff --git a/catalog/admin/includes/languages/en_US/specials.php b/catalog/admin/includes/languages/en_US/specials.php index 194bb53b7..4c3daf912 100644 --- a/catalog/admin/includes/languages/en_US/specials.php +++ b/catalog/admin/includes/languages/en_US/specials.php @@ -1,13 +1,9 @@ -# $Id: specials.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: specials.php v1.0 2013-08-08 datazen $ heading_title = Product Specials diff --git a/catalog/admin/includes/languages/en_US/statistics.php b/catalog/admin/includes/languages/en_US/statistics.php index c4ffa7294..cc9f38d76 100644 --- a/catalog/admin/includes/languages/en_US/statistics.php +++ b/catalog/admin/includes/languages/en_US/statistics.php @@ -1,13 +1,9 @@ -# $Id: statistics.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: statistics.php v1.0 2013-08-08 datazen $ heading_title = Statistics diff --git a/catalog/admin/includes/languages/en_US/store.php b/catalog/admin/includes/languages/en_US/store.php index bc1bee79c..3cdd9a823 100644 --- a/catalog/admin/includes/languages/en_US/store.php +++ b/catalog/admin/includes/languages/en_US/store.php @@ -1,13 +1,9 @@ -# $Id: store.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: store.php v1.0 2013-08-08 datazen $ heading_title = Add-Ons @@ -17,6 +13,8 @@ text_mobile_enabled = Mobile Enabled text_featured = Featured text_in_cloud = In Cloud +text_available_with_pro = Available free with the PRO edition +text_free_with_pro_edition = PRO Free with Pro Edition rating_from_5_stars = %s of 5 Stars! diff --git a/catalog/admin/includes/languages/en_US/tax_classes.php b/catalog/admin/includes/languages/en_US/tax_classes.php index b9c60d694..1ec3b5727 100644 --- a/catalog/admin/includes/languages/en_US/tax_classes.php +++ b/catalog/admin/includes/languages/en_US/tax_classes.php @@ -1,13 +1,9 @@ -# $Id: tax_classes.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: tax_classes.php v1.0 2013-08-08 datazen $ heading_title = Tax Classes diff --git a/catalog/admin/includes/languages/en_US/templates.php b/catalog/admin/includes/languages/en_US/templates.php index 6b19d9fc6..23634f11b 100644 --- a/catalog/admin/includes/languages/en_US/templates.php +++ b/catalog/admin/includes/languages/en_US/templates.php @@ -1,17 +1,14 @@ -# $Id: templates.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: templates.php v1.0 2013-08-08 datazen $ heading_title = Templates -table_heading_templates = Templates +table_heading_templates = Information +table_heading_preview = Preview table_heading_action = Action modal_heading_edit_template = Edit Template diff --git a/catalog/admin/includes/languages/en_US/templates_modules.php b/catalog/admin/includes/languages/en_US/templates_modules.php index ba883ae93..fd4dfde0c 100644 --- a/catalog/admin/includes/languages/en_US/templates_modules.php +++ b/catalog/admin/includes/languages/en_US/templates_modules.php @@ -1,13 +1,9 @@ -# $Id: templates_modules.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: templates_modules.php v1.0 2013-08-08 datazen $ heading_title_boxes = Templates Modules: Boxes heading_title_content = Templates Modules: Content diff --git a/catalog/admin/includes/languages/en_US/templates_modules_layout.php b/catalog/admin/includes/languages/en_US/templates_modules_layout.php index 13f9469bb..64a18b63e 100644 --- a/catalog/admin/includes/languages/en_US/templates_modules_layout.php +++ b/catalog/admin/includes/languages/en_US/templates_modules_layout.php @@ -1,13 +1,9 @@ -# $Id: templates_modules_layout.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: templates_modules_layout.php v1.0 2013-08-08 datazen $ heading_title_boxes = Boxes Layout heading_title_content = Content Layout diff --git a/catalog/admin/includes/languages/en_US/updates.php b/catalog/admin/includes/languages/en_US/updates.php index d1d915e14..1bc1122f5 100644 --- a/catalog/admin/includes/languages/en_US/updates.php +++ b/catalog/admin/includes/languages/en_US/updates.php @@ -1,13 +1,9 @@ -# $Id: updates.php v1.0 2011-11-04 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2011 LoadedCommerce.com -# -# @author LoadedCommerce Team -# @copyright (c) 2011 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: updates.php v1.0 2013-08-08 datazen $ heading_title = Core Updates diff --git a/catalog/admin/includes/languages/en_US/weight_classes.php b/catalog/admin/includes/languages/en_US/weight_classes.php index 9fd5d8b88..96f4f9aee 100644 --- a/catalog/admin/includes/languages/en_US/weight_classes.php +++ b/catalog/admin/includes/languages/en_US/weight_classes.php @@ -1,13 +1,9 @@ -# $Id: weight_classes.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: weight_classes.php v1.0 2013-08-08 datazen $ heading_title = Weight Classes diff --git a/catalog/admin/includes/languages/en_US/whos_online.php b/catalog/admin/includes/languages/en_US/whos_online.php index 7e563fcda..0439a1c35 100644 --- a/catalog/admin/includes/languages/en_US/whos_online.php +++ b/catalog/admin/includes/languages/en_US/whos_online.php @@ -1,13 +1,9 @@ -# $Id: whos_online.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: whos_online.php v1.0 2013-08-08 datazen $ heading_title = Who's Online diff --git a/catalog/admin/includes/languages/en_US/zone_groups.php b/catalog/admin/includes/languages/en_US/zone_groups.php index 404bde675..59a38913d 100644 --- a/catalog/admin/includes/languages/en_US/zone_groups.php +++ b/catalog/admin/includes/languages/en_US/zone_groups.php @@ -1,13 +1,9 @@ -# $Id: zone_groups.php v1.0 2013-01-01 datazen $ -# -# LoadedCommerce, Innovative eCommerce Solutions -# http://www.loadedcommerce.com -# -# Copyright (c) 2013 Loaded Commerce, LLC -# -# @author LoadedCommerce Team -# @copyright (c) 2013 LoadedCommerce Team -# @license http://loadedcommerce.com/license.html +# @package admin::languages +# @author Loaded Commerce +# @copyright Copyright 2003-2014 Loaded Commerce, LLC +# @copyright Portions Copyright 2003 osCommerce +# @license https://github.com/loadedcommerce/loaded7/blob/master/LICENSE.txt +# @version $Id: zone_groups.php v1.0 2013-08-08 datazen $ heading_title = Zone Groups diff --git a/catalog/admin/includes/modules/access/administrators.php b/catalog/admin/includes/modules/access/administrators.php index 2952b340e..611ea2eb3 100644 --- a/catalog/admin/includes/modules/access/administrators.php +++ b/catalog/admin/includes/modules/access/administrators.php @@ -1,35 +1,30 @@ _title = $lC_Language->get('access_administrators_title'); + $this->_title = $lC_Language->get('access_administrators_title'); - $this->_subgroups = array(array('icon' => 'statistics.png', - 'title' => $lC_Language->get('access_administrators_groups_title'), - 'identifier' => 'set=groups'), - array('icon' => 'people.png', - 'title' => $lC_Language->get('access_administrators_members_title'), - 'identifier' => 'set=members')); - } + $this->_subgroups = array(array('icon' => 'statistics.png', + 'title' => $lC_Language->get('access_administrators_groups_title'), + 'identifier' => 'set=groups'), + array('icon' => 'people.png', + 'title' => $lC_Language->get('access_administrators_members_title'), + 'identifier' => 'set=members')); } +} ?> \ No newline at end of file diff --git a/catalog/admin/includes/modules/access/administrators_log.php b/catalog/admin/includes/modules/access/administrators_log.php index 050d490e8..8a67308a6 100644 --- a/catalog/admin/includes/modules/access/administrators_log.php +++ b/catalog/admin/includes/modules/access/administrators_log.php @@ -1,28 +1,23 @@ _title = $lC_Language->get('access_administrators_log_title'); - } + $this->_title = $lC_Language->get('access_administrators_log_title'); } +} ?> diff --git a/catalog/admin/includes/modules/access/backup.php b/catalog/admin/includes/modules/access/backup.php index d7d9abd3c..3ef7403f1 100644 --- a/catalog/admin/includes/modules/access/backup.php +++ b/catalog/admin/includes/modules/access/backup.php @@ -1,28 +1,23 @@ _title = $lC_Language->get('access_backup_title'); - } + $this->_title = $lC_Language->get('access_backup_title'); } +} ?> \ No newline at end of file diff --git a/catalog/admin/includes/modules/access/banner_manager.php b/catalog/admin/includes/modules/access/banner_manager.php index ceb217b72..0e8a20a4a 100644 --- a/catalog/admin/includes/modules/access/banner_manager.php +++ b/catalog/admin/includes/modules/access/banner_manager.php @@ -1,28 +1,23 @@ _title = $lC_Language->get('access_banner_manager_title'); - } + $this->_title = $lC_Language->get('access_banner_manager_title'); } +} ?> diff --git a/catalog/admin/includes/modules/access/branding_manager.php b/catalog/admin/includes/modules/access/branding_manager.php index b2a7e4bba..331f9abb1 100644 --- a/catalog/admin/includes/modules/access/branding_manager.php +++ b/catalog/admin/includes/modules/access/branding_manager.php @@ -1,28 +1,23 @@ _title = $lC_Language->get('access_branding_manager_title'); - } + $this->_title = $lC_Language->get('access_branding_manager_title'); } +} ?> \ No newline at end of file diff --git a/catalog/admin/includes/modules/access/cache.php b/catalog/admin/includes/modules/access/cache.php index 1f965c24a..73524426d 100644 --- a/catalog/admin/includes/modules/access/cache.php +++ b/catalog/admin/includes/modules/access/cache.php @@ -1,28 +1,23 @@ _title = $lC_Language->get('access_cache_title'); - } + $this->_title = $lC_Language->get('access_cache_title'); } +} ?> \ No newline at end of file diff --git a/catalog/admin/includes/modules/access/categories.php b/catalog/admin/includes/modules/access/categories.php index c860c1987..2582fe6c0 100644 --- a/catalog/admin/includes/modules/access/categories.php +++ b/catalog/admin/includes/modules/access/categories.php @@ -1,28 +1,23 @@ _title = $lC_Language->get('access_categories_title'); - } + $this->_title = $lC_Language->get('access_categories_title'); } +} ?> diff --git a/catalog/admin/includes/modules/access/configuration.php b/catalog/admin/includes/modules/access/configuration.php index b0c36c224..e1d3c800b 100644 --- a/catalog/admin/includes/modules/access/configuration.php +++ b/catalog/admin/includes/modules/access/configuration.php @@ -1,40 +1,35 @@ _title = $lC_Language->get('access_configuration_title'); + $this->_title = $lC_Language->get('access_configuration_title'); - $this->_subgroups = array(); + $this->_subgroups = array(); - $Qgroups = $lC_Database->query('select configuration_group_id, configuration_group_title from :table_configuration_group where visible = 1 order by sort_order, configuration_group_title'); - $Qgroups->bindTable(':table_configuration_group', TABLE_CONFIGURATION_GROUP); - $Qgroups->execute(); + $Qgroups = $lC_Database->query('select configuration_group_id, configuration_group_title from :table_configuration_group where visible = 1 order by sort_order, configuration_group_title'); + $Qgroups->bindTable(':table_configuration_group', TABLE_CONFIGURATION_GROUP); + $Qgroups->execute(); // while ($Qgroups->next()) { // $this->_subgroups[] = array('icon' => 'configure.png', // 'title' => $Qgroups->value('configuration_group_title'), // 'identifier' => 'gID=' . $Qgroups->valueInt('configuration_group_id')); // } - } } +} ?> diff --git a/catalog/admin/includes/modules/access/coupons.php b/catalog/admin/includes/modules/access/coupons.php index 80bd78459..072525752 100644 --- a/catalog/admin/includes/modules/access/coupons.php +++ b/catalog/admin/includes/modules/access/coupons.php @@ -1,28 +1,23 @@ _title = $lC_Language->get('access_coupons_title'); - } + $this->_title = $lC_Language->get('access_coupons_title'); } +} ?> \ No newline at end of file diff --git a/catalog/admin/includes/modules/access/credit_cards.php b/catalog/admin/includes/modules/access/credit_cards.php index 09ec986f1..852e1200c 100644 --- a/catalog/admin/includes/modules/access/credit_cards.php +++ b/catalog/admin/includes/modules/access/credit_cards.php @@ -1,28 +1,23 @@ _title = $lC_Language->get('access_credit_cards_title'); - } + $this->_title = $lC_Language->get('access_credit_cards_title'); } +} ?> \ No newline at end of file diff --git a/catalog/admin/includes/modules/access/currencies.php b/catalog/admin/includes/modules/access/currencies.php index 5b94c2944..6f3b1c700 100644 --- a/catalog/admin/includes/modules/access/currencies.php +++ b/catalog/admin/includes/modules/access/currencies.php @@ -1,28 +1,23 @@ _title = $lC_Language->get('access_currencies_title'); - } + $this->_title = $lC_Language->get('access_currencies_title'); } -?> +} +?> \ No newline at end of file diff --git a/catalog/admin/includes/modules/access/customer_groups.php b/catalog/admin/includes/modules/access/customer_groups.php index ea8a60a8d..84472e5c5 100644 --- a/catalog/admin/includes/modules/access/customer_groups.php +++ b/catalog/admin/includes/modules/access/customer_groups.php @@ -1,29 +1,24 @@ _title = $lC_Language->get('access_customer_groups_title'); - - } + $this->_title = $lC_Language->get('access_customer_groups_title'); + } -?> +} +?> \ No newline at end of file diff --git a/catalog/admin/includes/modules/access/customers.php b/catalog/admin/includes/modules/access/customers.php index 6ca4f751e..3d3edec25 100644 --- a/catalog/admin/includes/modules/access/customers.php +++ b/catalog/admin/includes/modules/access/customers.php @@ -1,29 +1,24 @@ _title = $lC_Language->get('access_customers_title'); - - } + $this->_title = $lC_Language->get('access_customers_title'); + } -?> +} +?> \ No newline at end of file diff --git a/catalog/admin/includes/modules/access/error_log.php b/catalog/admin/includes/modules/access/error_log.php index aeb8507f9..9facaca9d 100644 --- a/catalog/admin/includes/modules/access/error_log.php +++ b/catalog/admin/includes/modules/access/error_log.php @@ -1,28 +1,23 @@ _title = $lC_Language->get('access_error_log_title'); - } + $this->_title = $lC_Language->get('access_error_log_title'); } +} ?> \ No newline at end of file diff --git a/catalog/admin/includes/modules/access/file_manager.php b/catalog/admin/includes/modules/access/file_manager.php index 905879541..45687b076 100644 --- a/catalog/admin/includes/modules/access/file_manager.php +++ b/catalog/admin/includes/modules/access/file_manager.php @@ -1,28 +1,23 @@ _title = $lC_Language->get('access_file_manager_title'); - } + $this->_title = $lC_Language->get('access_file_manager_title'); } -?> +} +?> \ No newline at end of file diff --git a/catalog/admin/includes/modules/access/images.php b/catalog/admin/includes/modules/access/images.php index b3add7bbf..647985f0c 100644 --- a/catalog/admin/includes/modules/access/images.php +++ b/catalog/admin/includes/modules/access/images.php @@ -1,28 +1,23 @@ _title = $lC_Language->get('access_images_title'); - } + $this->_title = $lC_Language->get('access_images_title'); } -?> +} +?> \ No newline at end of file diff --git a/catalog/admin/includes/modules/access/languages.php b/catalog/admin/includes/modules/access/languages.php index 021b6f858..d841a62ec 100644 --- a/catalog/admin/includes/modules/access/languages.php +++ b/catalog/admin/includes/modules/access/languages.php @@ -1,28 +1,23 @@ _title = $lC_Language->get('access_languages_title'); - } + $this->_title = $lC_Language->get('access_languages_title'); } -?> +} +?> \ No newline at end of file diff --git a/catalog/admin/includes/modules/access/locale.php b/catalog/admin/includes/modules/access/locale.php index 6c82de4e0..52fd01dd5 100644 --- a/catalog/admin/includes/modules/access/locale.php +++ b/catalog/admin/includes/modules/access/locale.php @@ -1,35 +1,30 @@ _title = $lC_Language->get('access_locale_title'); - - $this->_subgroups = array(array('icon' => 'world.png', - 'title' => $lC_Language->get('access_countries_title'), - 'identifier' => '?countries'), - array('icon' => 'zones.png', - 'title' => $lC_Language->get('access_zone_groups_title'), - 'identifier' => '?zone_groups')); - } + $this->_title = $lC_Language->get('access_locale_title'); + + $this->_subgroups = array(array('icon' => 'world.png', + 'title' => $lC_Language->get('access_countries_title'), + 'identifier' => '?countries'), + array('icon' => 'zones.png', + 'title' => $lC_Language->get('access_zone_groups_title'), + 'identifier' => '?zone_groups')); } +} ?> \ No newline at end of file diff --git a/catalog/admin/includes/modules/access/manufacturers.php b/catalog/admin/includes/modules/access/manufacturers.php index 9f31ccb3a..dc2381208 100644 --- a/catalog/admin/includes/modules/access/manufacturers.php +++ b/catalog/admin/includes/modules/access/manufacturers.php @@ -1,28 +1,23 @@ _title = $lC_Language->get('access_manufacturers_title'); - } + $this->_title = $lC_Language->get('access_manufacturers_title'); } +} ?> diff --git a/catalog/admin/includes/modules/access/modules.php b/catalog/admin/includes/modules/access/modules.php index fdae475cd..eda923547 100644 --- a/catalog/admin/includes/modules/access/modules.php +++ b/catalog/admin/includes/modules/access/modules.php @@ -1,48 +1,43 @@ _title = $lC_Language->get('access_modules_title'); - - $this->_subgroups = array(array('icon' => 'payment.png', - 'title' => $lC_Language->get('access_modules_payment_title'), - 'identifier' => '?store&type=payment'), - array('icon' => 'shipping.png', - 'title' => $lC_Language->get('access_modules_shipping_title'), - 'identifier' => '?store&type=shipping'), - array('icon' => 'calculator.png', - 'title' => $lC_Language->get('access_modules_order_total_title'), - 'identifier' => '?modules_order_total'), - array('icon' => 'locale.png', - 'title' => $lC_Language->get('access_modules_geoip_title'), - 'identifier' => '?modules_geoip'), - array('icon' => 'services.png', - 'title' => $lC_Language->get('access_services_title'), - 'identifier' => '?services'), - array('icon' => 'products.png', - 'title' => $lC_Language->get('access_product_attributes_title'), - 'identifier' => '?product_attributes') - ); - } + $this->_title = $lC_Language->get('access_modules_title'); + + $this->_subgroups = array(array('icon' => 'payment.png', + 'title' => $lC_Language->get('access_modules_payment_title'), + 'identifier' => '?store&type=payment'), + array('icon' => 'shipping.png', + 'title' => $lC_Language->get('access_modules_shipping_title'), + 'identifier' => '?store&type=shipping'), + array('icon' => 'calculator.png', + 'title' => $lC_Language->get('access_modules_order_total_title'), + 'identifier' => '?modules_order_total'), + array('icon' => 'locale.png', + 'title' => $lC_Language->get('access_modules_geoip_title'), + 'identifier' => '?modules_geoip'), + array('icon' => 'services.png', + 'title' => $lC_Language->get('access_services_title'), + 'identifier' => '?services'), + array('icon' => 'products.png', + 'title' => $lC_Language->get('access_product_attributes_title'), + 'identifier' => '?product_attributes') + ); } +} ?> \ No newline at end of file diff --git a/catalog/admin/includes/modules/access/newsletters.php b/catalog/admin/includes/modules/access/newsletters.php index a42211f6e..5524c9715 100644 --- a/catalog/admin/includes/modules/access/newsletters.php +++ b/catalog/admin/includes/modules/access/newsletters.php @@ -1,28 +1,23 @@ _title = $lC_Language->get('access_newsletters_title'); - } + $this->_title = $lC_Language->get('access_newsletters_title'); } +} ?> \ No newline at end of file diff --git a/catalog/admin/includes/modules/access/orders.php b/catalog/admin/includes/modules/access/orders.php index 283efd4f0..591d1d28d 100644 --- a/catalog/admin/includes/modules/access/orders.php +++ b/catalog/admin/includes/modules/access/orders.php @@ -1,28 +1,23 @@ _title = $lC_Language->get('access_orders_title'); - } + $this->_title = $lC_Language->get('access_orders_title'); } +} ?> \ No newline at end of file diff --git a/catalog/admin/includes/modules/access/orders_status.php b/catalog/admin/includes/modules/access/orders_status.php index eec0b3f74..40f6b748a 100644 --- a/catalog/admin/includes/modules/access/orders_status.php +++ b/catalog/admin/includes/modules/access/orders_status.php @@ -1,28 +1,23 @@ _title = $lC_Language->get('access_orders_status_title'); - } + $this->_title = $lC_Language->get('access_orders_status_title'); } +} ?> \ No newline at end of file diff --git a/catalog/admin/includes/modules/access/product_settings.php b/catalog/admin/includes/modules/access/product_settings.php index 19d618529..d91862c2d 100644 --- a/catalog/admin/includes/modules/access/product_settings.php +++ b/catalog/admin/includes/modules/access/product_settings.php @@ -1,15 +1,11 @@ _title = $lC_Language->get('access_product_settings_title'); diff --git a/catalog/admin/includes/modules/access/product_variants.php b/catalog/admin/includes/modules/access/product_variants.php index 74a54a41f..c13592986 100644 --- a/catalog/admin/includes/modules/access/product_variants.php +++ b/catalog/admin/includes/modules/access/product_variants.php @@ -1,28 +1,23 @@ _title = $lC_Language->get('access_product_variants_title'); - } + $this->_title = $lC_Language->get('access_product_variants_title'); } +} ?> \ No newline at end of file diff --git a/catalog/admin/includes/modules/access/products.php b/catalog/admin/includes/modules/access/products.php index d71f3428f..a966892f7 100644 --- a/catalog/admin/includes/modules/access/products.php +++ b/catalog/admin/includes/modules/access/products.php @@ -1,29 +1,24 @@ _title = $lC_Language->get('access_products_title'); + $this->_title = $lC_Language->get('access_products_title'); - } } +} ?> \ No newline at end of file diff --git a/catalog/admin/includes/modules/access/products_expected.php b/catalog/admin/includes/modules/access/products_expected.php index 1b01fd97b..458c4c3f9 100644 --- a/catalog/admin/includes/modules/access/products_expected.php +++ b/catalog/admin/includes/modules/access/products_expected.php @@ -1,28 +1,23 @@ _title = $lC_Language->get('access_products_expected_title'); - } + $this->_title = $lC_Language->get('access_products_expected_title'); } +} ?> \ No newline at end of file diff --git a/catalog/admin/includes/modules/access/reviews.php b/catalog/admin/includes/modules/access/reviews.php index 67384dda5..8d783716b 100644 --- a/catalog/admin/includes/modules/access/reviews.php +++ b/catalog/admin/includes/modules/access/reviews.php @@ -1,28 +1,23 @@ _title = $lC_Language->get('access_reviews_title'); - } + $this->_title = $lC_Language->get('access_reviews_title'); } +} ?> \ No newline at end of file diff --git a/catalog/admin/includes/modules/access/server_info.php b/catalog/admin/includes/modules/access/server_info.php index 65503675c..f61235fea 100644 --- a/catalog/admin/includes/modules/access/server_info.php +++ b/catalog/admin/includes/modules/access/server_info.php @@ -1,28 +1,23 @@ _title = $lC_Language->get('access_server_info_title'); - } + $this->_title = $lC_Language->get('access_server_info_title'); } +} ?> \ No newline at end of file diff --git a/catalog/admin/includes/modules/access/specials.php b/catalog/admin/includes/modules/access/specials.php index 0cf6ae322..b627df1b4 100644 --- a/catalog/admin/includes/modules/access/specials.php +++ b/catalog/admin/includes/modules/access/specials.php @@ -1,28 +1,23 @@ _title = $lC_Language->get('access_specials_title'); - } + $this->_title = $lC_Language->get('access_specials_title'); } -?> +} +?> \ No newline at end of file diff --git a/catalog/admin/includes/modules/access/statistics.php b/catalog/admin/includes/modules/access/statistics.php index 55f035d94..1a44e69da 100644 --- a/catalog/admin/includes/modules/access/statistics.php +++ b/catalog/admin/includes/modules/access/statistics.php @@ -1,28 +1,23 @@ _title = $lC_Language->get('access_statistics_title'); - } + $this->_title = $lC_Language->get('access_statistics_title'); } -?> +} +?> \ No newline at end of file diff --git a/catalog/admin/includes/modules/access/store.php b/catalog/admin/includes/modules/access/store.php index 5b63cf5ed..0ee00c660 100644 --- a/catalog/admin/includes/modules/access/store.php +++ b/catalog/admin/includes/modules/access/store.php @@ -1,28 +1,23 @@ _title = $lC_Language->get('access_store_title'); - } + $this->_title = $lC_Language->get('access_store_title'); } +} ?> \ No newline at end of file diff --git a/catalog/admin/includes/modules/access/tax_classes.php b/catalog/admin/includes/modules/access/tax_classes.php index 3a90f171a..13fa20ece 100644 --- a/catalog/admin/includes/modules/access/tax_classes.php +++ b/catalog/admin/includes/modules/access/tax_classes.php @@ -1,28 +1,23 @@ _title = $lC_Language->get('access_tax_classes_title'); - } + $this->_title = $lC_Language->get('access_tax_classes_title'); } -?> +} +?> \ No newline at end of file diff --git a/catalog/admin/includes/modules/access/templates.php b/catalog/admin/includes/modules/access/templates.php index 312f3c4d9..5e2756053 100644 --- a/catalog/admin/includes/modules/access/templates.php +++ b/catalog/admin/includes/modules/access/templates.php @@ -1,28 +1,23 @@ _title = $lC_Language->get('access_templates_title'); - } + $this->_title = $lC_Language->get('access_templates_title'); } -?> +} +?> \ No newline at end of file diff --git a/catalog/admin/includes/modules/access/templates_modules.php b/catalog/admin/includes/modules/access/templates_modules.php index 8cafb7525..d6fd7a437 100644 --- a/catalog/admin/includes/modules/access/templates_modules.php +++ b/catalog/admin/includes/modules/access/templates_modules.php @@ -1,35 +1,30 @@ _title = $lC_Language->get('access_templates_modules_title'); + $this->_title = $lC_Language->get('access_templates_modules_title'); - $this->_subgroups = array(array('icon' => 'modules.png', - 'title' => $lC_Language->get('access_templates_modules_boxes_title'), - 'identifier' => 'set=boxes'), - array('icon' => 'windows.png', - 'title' => $lC_Language->get('access_templates_modules_content_title'), - 'identifier' => 'set=content')); - } + $this->_subgroups = array(array('icon' => 'modules.png', + 'title' => $lC_Language->get('access_templates_modules_boxes_title'), + 'identifier' => 'set=boxes'), + array('icon' => 'windows.png', + 'title' => $lC_Language->get('access_templates_modules_content_title'), + 'identifier' => 'set=content')); } +} ?> \ No newline at end of file diff --git a/catalog/admin/includes/modules/access/templates_modules_layout.php b/catalog/admin/includes/modules/access/templates_modules_layout.php index c20d308d4..e617df4f0 100644 --- a/catalog/admin/includes/modules/access/templates_modules_layout.php +++ b/catalog/admin/includes/modules/access/templates_modules_layout.php @@ -1,35 +1,30 @@ _title = $lC_Language->get('access_templates_modules_layout_title'); + $this->_title = $lC_Language->get('access_templates_modules_layout_title'); - $this->_subgroups = array(array('icon' => 'modules.png', - 'title' => $lC_Language->get('access_templates_modules_layout_boxes_title'), - 'identifier' => 'set=boxes'), - array('icon' => 'windows.png', - 'title' => $lC_Language->get('access_templates_modules_layout_content_title'), - 'identifier' => 'set=content')); - } + $this->_subgroups = array(array('icon' => 'modules.png', + 'title' => $lC_Language->get('access_templates_modules_layout_boxes_title'), + 'identifier' => 'set=boxes'), + array('icon' => 'windows.png', + 'title' => $lC_Language->get('access_templates_modules_layout_content_title'), + 'identifier' => 'set=content')); } +} ?> \ No newline at end of file diff --git a/catalog/admin/includes/modules/access/updates.php b/catalog/admin/includes/modules/access/updates.php index 7a30d3720..308677098 100644 --- a/catalog/admin/includes/modules/access/updates.php +++ b/catalog/admin/includes/modules/access/updates.php @@ -1,28 +1,23 @@ _title = $lC_Language->get('access_updates_title'); - } + $this->_title = $lC_Language->get('access_updates_title'); } +} ?> \ No newline at end of file diff --git a/catalog/admin/includes/modules/access/whos_online.php b/catalog/admin/includes/modules/access/whos_online.php index d2a910027..0a44c77d3 100644 --- a/catalog/admin/includes/modules/access/whos_online.php +++ b/catalog/admin/includes/modules/access/whos_online.php @@ -1,28 +1,23 @@ _title = $lC_Language->get('access_whos_online_title'); - } + $this->_title = $lC_Language->get('access_whos_online_title'); } +} ?> \ No newline at end of file diff --git a/catalog/admin/includes/modules/geoip/maxmind_geolite_country.php b/catalog/admin/includes/modules/geoip/maxmind_geolite_country.php index f359e3af9..11d4218bb 100644 --- a/catalog/admin/includes/modules/geoip/maxmind_geolite_country.php +++ b/catalog/admin/includes/modules/geoip/maxmind_geolite_country.php @@ -1,15 +1,11 @@ _title = $lC_Language->get('geoip_maxmind_geolite_country_title'); @@ -28,7 +24,7 @@ function lC_GeoIP_maxmind_geolite_country() { $this->_status = (defined('MODULE_DEFAULT_GEOIP') && (MODULE_DEFAULT_GEOIP == $this->_code)); } - function activate() { + public function activate() { global $lC_Vqmod; include($lC_Vqmod->modCheck('external/maxmind/geoip/geoip.php')); @@ -37,25 +33,25 @@ function activate() { $this->_active = true; } - function deactivate() { + public function deactivate() { geoip_close($this->_handler); unset($this->_handler); $this->_active = false; } - function isValid($ip_address) { + public function isValid($ip_address) { return (geoip_country_id_by_addr($this->_handler, $ip_address) !== false); } - function getCountryISOCode2($ip_address) { + public function getCountryISOCode2($ip_address) { return strtolower(geoip_country_code_by_addr($this->_handler, $ip_address)); } - function getCountryName($ip_address) { + public function getCountryName($ip_address) { return geoip_country_name_by_addr($this->_handler, $ip_address); } - function getData($ip_address) { + public function getData($ip_address) { return array(lc_image('../images/worldflags/' . $this->getCountryISOCode2($ip_address) . '.png', $this->getCountryName($ip_address) . ', ' . $ip_address, 18, 12) . ' ' . $this->getCountryName($ip_address)); } } diff --git a/catalog/admin/includes/modules/image/check.php b/catalog/admin/includes/modules/image/check.php index e1c111d6f..4654b4ed7 100644 --- a/catalog/admin/includes/modules/image/check.php +++ b/catalog/admin/includes/modules/image/check.php @@ -1,15 +1,11 @@ _header = array($lC_Language->get('images_check_table_heading_groups'), $lC_Language->get('images_check_table_heading_results')); } - function _setData() { + protected function _setData() { global $lC_Database; $counter = array(); diff --git a/catalog/admin/includes/modules/image/resize.php b/catalog/admin/includes/modules/image/resize.php index b03acfeef..5354c1484 100644 --- a/catalog/admin/includes/modules/image/resize.php +++ b/catalog/admin/includes/modules/image/resize.php @@ -1,15 +1,11 @@ _header = array($lC_Language->get('images_resize_table_heading_groups'), $lC_Language->get('images_resize_table_heading_total_resized')); } - function _setData() { + protected function _setData() { global $lC_Database, $lC_Language; $overwrite = false; diff --git a/catalog/admin/includes/modules/newsletters/email.php b/catalog/admin/includes/modules/newsletters/email.php index 58f46ea4f..39665e4c2 100644 --- a/catalog/admin/includes/modules/newsletters/email.php +++ b/catalog/admin/includes/modules/newsletters/email.php @@ -1,198 +1,193 @@ _title = $lC_Language->get('newsletter_email_title'); - - $this->_newsletter_title = $title; - $this->_newsletter_content = $content; - $this->_newsletter_id = $newsletter_id; - } + $this->_title = $lC_Language->get('newsletter_email_title'); - /* Public methods */ - public function getTitle() { - return $this->_title; - } + $this->_newsletter_title = $title; + $this->_newsletter_content = $content; + $this->_newsletter_id = $newsletter_id; + } - public function hasAudienceSelection() { - if ($this->_has_audience_selection === true) { - return true; - } + /* Public methods */ + public function getTitle() { + return $this->_title; + } - return false; + public function hasAudienceSelection() { + if ($this->_has_audience_selection === true) { + return true; } - public function hasAudienceSize() { - global $lC_Database; - - if ( isset($_GET['customer']) && !empty($_GET['customer']) ) { - $Qcustomers = $lC_Database->query('select count(customers_id) as total from :table_customers c left join :table_newsletters_log nl on (c.customers_email_address = nl.email_address and nl.newsletters_id = :newsletters_id) where nl.email_address is null'); - $Qcustomers->bindTable(':table_customers', TABLE_CUSTOMERS); - $Qcustomers->bindTable(':table_newsletters_log', TABLE_NEWSLETTERS_LOG); - $Qcustomers->bindInt(':newsletters_id', $this->_newsletter_id); + return false; + } - if ( is_numeric($_GET['customer']) ) { - $Qcustomers->appendQuery('and c.customers_id = :customers_id'); - $Qcustomers->bindInt(':customers_id', $_GET['customer']); - } + public function hasAudienceSize() { + global $lC_Database; - $Qcustomers->execute(); + if ( isset($_GET['customer']) && !empty($_GET['customer']) ) { + $Qcustomers = $lC_Database->query('select count(customers_id) as total from :table_customers c left join :table_newsletters_log nl on (c.customers_email_address = nl.email_address and nl.newsletters_id = :newsletters_id) where nl.email_address is null'); + $Qcustomers->bindTable(':table_customers', TABLE_CUSTOMERS); + $Qcustomers->bindTable(':table_newsletters_log', TABLE_NEWSLETTERS_LOG); + $Qcustomers->bindInt(':newsletters_id', $this->_newsletter_id); - if ($Qcustomers->valueInt('total') > 0) { - return true; - } - - $Qcustomers->freeResult(); + if ( is_numeric($_GET['customer']) ) { + $Qcustomers->appendQuery('and c.customers_id = :customers_id'); + $Qcustomers->bindInt(':customers_id', $_GET['customer']); } - - return false; - } - - public function showAudienceSelectionForm() { - global $lC_Database, $lC_Language, $lC_Template; - $customers_array = array(array('id' => '***', - 'text' => $lC_Language->get('newsletter_email_all_customers'))); - - $Qcustomers = $lC_Database->query('select customers_id, customers_firstname, customers_lastname, customers_email_address from :table_customers order by customers_lastname'); - $Qcustomers->bindTable(':table_customers', TABLE_CUSTOMERS); $Qcustomers->execute(); - while ( $Qcustomers->next() ) { - $customers_array[] = array('id' => $Qcustomers->valueInt('customers_id'), - 'text' => $Qcustomers->value('customers_lastname') . ', ' . $Qcustomers->value('customers_firstname') . ' (' . $Qcustomers->value('customers_email_address') . ')'); + if ($Qcustomers->valueInt('total') > 0) { + return true; } - + $Qcustomers->freeResult(); + } + + return false; + } + + public function showAudienceSelectionForm() { + global $lC_Database, $lC_Language, $lC_Template; - $audience_form = '' . - ' ' . lc_draw_pull_down_menu('customer', $customers_array, null, 'class="input full-width with-small-padding" size="25"') . '' . - ''; + $customers_array = array(array('id' => '***', + 'text' => $lC_Language->get('newsletter_email_all_customers'))); - return $audience_form; + $Qcustomers = $lC_Database->query('select customers_id, customers_firstname, customers_lastname, customers_email_address from :table_customers order by customers_lastname'); + $Qcustomers->bindTable(':table_customers', TABLE_CUSTOMERS); + $Qcustomers->execute(); + + while ( $Qcustomers->next() ) { + $customers_array[] = array('id' => $Qcustomers->valueInt('customers_id'), + 'text' => $Qcustomers->value('customers_lastname') . ', ' . $Qcustomers->value('customers_firstname') . ' (' . $Qcustomers->value('customers_email_address') . ')'); } - function showConfirmation() { - global $lC_Database, $lC_Language, $lC_Template; + $Qcustomers->freeResult(); - if ( isset($_GET['customer']) && !empty($_GET['customer']) ) { - $Qcustomers = $lC_Database->query('select count(customers_id) as total from :table_customers c left join :table_newsletters_log nl on (c.customers_email_address = nl.email_address and nl.newsletters_id = :newsletters_id) where nl.email_address is null'); - $Qcustomers->bindTable(':table_customers', TABLE_CUSTOMERS); - $Qcustomers->bindTable(':table_newsletters_log', TABLE_NEWSLETTERS_LOG); - $Qcustomers->bindInt(':newsletters_id', $this->_newsletter_id); + $audience_form = '' . + ' ' . lc_draw_pull_down_menu('customer', $customers_array, null, 'class="input full-width with-small-padding" size="25"') . '' . + ''; - if ( is_numeric($_GET['customer']) ) { - $Qcustomers->appendQuery('and c.customers_id = :customers_id'); - $Qcustomers->bindInt(':customers_id', $_GET['customer']); - } + return $audience_form; + } - $Qcustomers->execute(); + public function showConfirmation() { + global $lC_Database, $lC_Language, $lC_Template; - $this->_audience_size += $Qcustomers->valueInt('total'); + if ( isset($_GET['customer']) && !empty($_GET['customer']) ) { + $Qcustomers = $lC_Database->query('select count(customers_id) as total from :table_customers c left join :table_newsletters_log nl on (c.customers_email_address = nl.email_address and nl.newsletters_id = :newsletters_id) where nl.email_address is null'); + $Qcustomers->bindTable(':table_customers', TABLE_CUSTOMERS); + $Qcustomers->bindTable(':table_newsletters_log', TABLE_NEWSLETTERS_LOG); + $Qcustomers->bindInt(':newsletters_id', $this->_newsletter_id); + + if ( is_numeric($_GET['customer']) ) { + $Qcustomers->appendQuery('and c.customers_id = :customers_id'); + $Qcustomers->bindInt(':customers_id', $_GET['customer']); } - $confirmation_string = '' . sprintf($lC_Language->get('newsletter_email_total_recipients'), $this->_audience_size) . '' . - '' . $this->_newsletter_title . '' . - '' . nl2br(lc_output_string_protected($this->_newsletter_content)) . '' . - '' . - ''; + $Qcustomers->execute(); - return $confirmation_string; + $this->_audience_size += $Qcustomers->valueInt('total'); } - function sendEmail() { - global $lC_Database, $lC_Language; + $confirmation_string = '' . sprintf($lC_Language->get('newsletter_email_total_recipients'), $this->_audience_size) . '' . + '' . $this->_newsletter_title . '' . + '' . nl2br(lc_output_string_protected($this->_newsletter_content)) . '' . + '' . + ''; - $max_execution_time = 0.8 * (int)ini_get('max_execution_time'); - $time_start = explode(' ', PAGE_PARSE_START_TIME); + return $confirmation_string; + } - $audience = array(); + public function sendEmail() { + global $lC_Database, $lC_Language; - $customer = ''; - if (isset($_POST['customer']) && !empty($_POST['customer'])) { - $customer = $_POST['customer']; - } elseif (isset($_GET['customer']) && !empty($_GET['customer'])) { - $customer = $_GET['customer']; - } + $max_execution_time = 0.8 * (int)ini_get('max_execution_time'); + $time_start = explode(' ', PAGE_PARSE_START_TIME); - if (!empty($customer)) { - $Qcustomers = $lC_Database->query('select customers_id, customers_firstname, customers_lastname, customers_email_address from :table_customers c left join :table_newsletters_log nl on (c.customers_email_address = nl.email_address and nl.newsletters_id = :newsletters_id) where nl.email_address is null'); - $Qcustomers->bindTable(':table_customers', TABLE_CUSTOMERS); - $Qcustomers->bindTable(':table_newsletters_log', TABLE_NEWSLETTERS_LOG); - $Qcustomers->bindInt(':newsletters_id', $this->_newsletter_id); + $audience = array(); - if (is_numeric($customer)) { - $Qcustomers->appendQuery('and c.customers_id = :customers_id'); - $Qcustomers->bindInt(':customers_id', $customer); - } + $customer = ''; + if (isset($_POST['customer']) && !empty($_POST['customer'])) { + $customer = $_POST['customer']; + } elseif (isset($_GET['customer']) && !empty($_GET['customer'])) { + $customer = $_GET['customer']; + } - $Qcustomers->execute(); + if (!empty($customer)) { + $Qcustomers = $lC_Database->query('select customers_id, customers_firstname, customers_lastname, customers_email_address from :table_customers c left join :table_newsletters_log nl on (c.customers_email_address = nl.email_address and nl.newsletters_id = :newsletters_id) where nl.email_address is null'); + $Qcustomers->bindTable(':table_customers', TABLE_CUSTOMERS); + $Qcustomers->bindTable(':table_newsletters_log', TABLE_NEWSLETTERS_LOG); + $Qcustomers->bindInt(':newsletters_id', $this->_newsletter_id); - while ($Qcustomers->next()) { - if (!isset($audience[$Qcustomers->valueInt('customers_id')])) { - $audience[$Qcustomers->valueInt('customers_id')] = array('firstname' => $Qcustomers->value('customers_firstname'), - 'lastname' => $Qcustomers->value('customers_lastname'), - 'email_address' => $Qcustomers->value('customers_email_address')); - } + if (is_numeric($customer)) { + $Qcustomers->appendQuery('and c.customers_id = :customers_id'); + $Qcustomers->bindInt(':customers_id', $customer); + } + + $Qcustomers->execute(); + + while ($Qcustomers->next()) { + if (!isset($audience[$Qcustomers->valueInt('customers_id')])) { + $audience[$Qcustomers->valueInt('customers_id')] = array('firstname' => $Qcustomers->value('customers_firstname'), + 'lastname' => $Qcustomers->value('customers_lastname'), + 'email_address' => $Qcustomers->value('customers_email_address')); } + } - $Qcustomers->freeResult(); + $Qcustomers->freeResult(); - if (sizeof($audience) > 0) { - $lC_Mail = new lC_Mail(null, null, null, EMAIL_FROM, $this->_newsletter_title); - $lC_Mail->setBodyPlain($this->_newsletter_content); + if (sizeof($audience) > 0) { + $lC_Mail = new lC_Mail(null, null, null, EMAIL_FROM, $this->_newsletter_title); + $lC_Mail->setBodyPlain($this->_newsletter_content); - foreach ($audience as $key => $value) { - $lC_Mail->clearTo(); - $lC_Mail->addTo($value['firstname'] . ' ' . $value['lastname'], $value['email_address']); - $lC_Mail->send(); + foreach ($audience as $key => $value) { + $lC_Mail->clearTo(); + $lC_Mail->addTo($value['firstname'] . ' ' . $value['lastname'], $value['email_address']); + $lC_Mail->send(); - $Qlog = $lC_Database->query('insert into :table_newsletters_log (newsletters_id, email_address, date_sent) values (:newsletters_id, :email_address, now())'); - $Qlog->bindTable(':table_newsletters_log', TABLE_NEWSLETTERS_LOG); - $Qlog->bindInt(':newsletters_id', $this->_newsletter_id); - $Qlog->bindValue(':email_address', $value['email_address']); - $Qlog->execute(); + $Qlog = $lC_Database->query('insert into :table_newsletters_log (newsletters_id, email_address, date_sent) values (:newsletters_id, :email_address, now())'); + $Qlog->bindTable(':table_newsletters_log', TABLE_NEWSLETTERS_LOG); + $Qlog->bindInt(':newsletters_id', $this->_newsletter_id); + $Qlog->bindValue(':email_address', $value['email_address']); + $Qlog->execute(); - $time_end = explode(' ', microtime()); - $timer_total = number_format(($time_end[1] + $time_end[0] - ($time_start[1] + $time_start[0])), 3); + $time_end = explode(' ', microtime()); + $timer_total = number_format(($time_end[1] + $time_end[0] - ($time_start[1] + $time_start[0])), 3); - if ($timer_total > $max_execution_time) { - echo '' . $lC_Language->get('sending_refreshing_page') . '' . - ''; - exit; - } + if ($timer_total > $max_execution_time) { + echo '' . $lC_Language->get('sending_refreshing_page') . '' . + ''; + exit; } } - - $Qupdate = $lC_Database->query('update :table_newsletters set date_sent = now(), status = 1 where newsletters_id = :newsletters_id'); - $Qupdate->bindTable(':table_newsletters', TABLE_NEWSLETTERS); - $Qupdate->bindInt(':newsletters_id', $this->_newsletter_id); - $Qupdate->execute(); } + + $Qupdate = $lC_Database->query('update :table_newsletters set date_sent = now(), status = 1 where newsletters_id = :newsletters_id'); + $Qupdate->bindTable(':table_newsletters', TABLE_NEWSLETTERS); + $Qupdate->bindInt(':newsletters_id', $this->_newsletter_id); + $Qupdate->execute(); } } +} ?> \ No newline at end of file diff --git a/catalog/admin/includes/modules/newsletters/newsletter.php b/catalog/admin/includes/modules/newsletters/newsletter.php index dd4c9add9..f4668ed7e 100644 --- a/catalog/admin/includes/modules/newsletters/newsletter.php +++ b/catalog/admin/includes/modules/newsletters/newsletter.php @@ -1,163 +1,158 @@ _title = $lC_Language->get('newsletter_newsletter_title'); - $this->_title = $lC_Language->get('newsletter_newsletter_title'); + $this->_newsletter_title = $title; + $this->_newsletter_content = $content; + $this->_newsletter_id = $newsletter_id; + } - $this->_newsletter_title = $title; - $this->_newsletter_content = $content; - $this->_newsletter_id = $newsletter_id; - } + /* Public methods */ + public function getTitle() { + return $this->_title; + } - /* Public methods */ - public function getTitle() { - return $this->_title; + public function hasAudienceSelection() { + if ($this->_has_audience_selection === true) { + return true; } - public function hasAudienceSelection() { - if ($this->_has_audience_selection === true) { - return true; - } - - return false; + return false; + } + + public function hasAudienceSize() { + global $lC_Database; + + $Qrecipients = $lC_Database->query('select count(*) as total from :table_customers c left join :table_newsletters_log nl on (c.customers_email_address = nl.email_address and nl.newsletters_id = :newsletters_id) where c.customers_newsletter = 1 and nl.email_address is null'); + $Qrecipients->bindTable(':table_customers', TABLE_CUSTOMERS); + $Qrecipients->bindTable(':table_newsletters_log', TABLE_NEWSLETTERS_LOG); + $Qrecipients->bindInt(':newsletters_id', $this->_newsletter_id); + $Qrecipients->execute(); + + if ($Qrecipients->valueInt('total') > 0) { + return true; } - public function hasAudienceSize() { - global $lC_Database; - - $Qrecipients = $lC_Database->query('select count(*) as total from :table_customers c left join :table_newsletters_log nl on (c.customers_email_address = nl.email_address and nl.newsletters_id = :newsletters_id) where c.customers_newsletter = 1 and nl.email_address is null'); - $Qrecipients->bindTable(':table_customers', TABLE_CUSTOMERS); - $Qrecipients->bindTable(':table_newsletters_log', TABLE_NEWSLETTERS_LOG); - $Qrecipients->bindInt(':newsletters_id', $this->_newsletter_id); - $Qrecipients->execute(); - - if ($Qrecipients->valueInt('total') > 0) { - return true; - } - - $Qrecipients->freeResult(); + $Qrecipients->freeResult(); - return false; - } + return false; + } - public function showAudienceSelectionForm() { - return false; - } + public function showAudienceSelectionForm() { + return false; + } - public function showConfirmation() { - global $lC_Database, $lC_Language, $lC_Template; + public function showConfirmation() { + global $lC_Database, $lC_Language, $lC_Template; - $Qrecipients = $lC_Database->query('select count(*) as total from :table_customers c left join :table_newsletters_log nl on (c.customers_email_address = nl.email_address and nl.newsletters_id = :newsletters_id) where c.customers_newsletter = 1 and nl.email_address is null'); - $Qrecipients->bindTable(':table_customers', TABLE_CUSTOMERS); - $Qrecipients->bindTable(':table_newsletters_log', TABLE_NEWSLETTERS_LOG); - $Qrecipients->bindInt(':newsletters_id', $this->_newsletter_id); - $Qrecipients->execute(); + $Qrecipients = $lC_Database->query('select count(*) as total from :table_customers c left join :table_newsletters_log nl on (c.customers_email_address = nl.email_address and nl.newsletters_id = :newsletters_id) where c.customers_newsletter = 1 and nl.email_address is null'); + $Qrecipients->bindTable(':table_customers', TABLE_CUSTOMERS); + $Qrecipients->bindTable(':table_newsletters_log', TABLE_NEWSLETTERS_LOG); + $Qrecipients->bindInt(':newsletters_id', $this->_newsletter_id); + $Qrecipients->execute(); - $this->_audience_size = $Qrecipients->valueInt('total'); + $this->_audience_size = $Qrecipients->valueInt('total'); - $confirmation_string = '' . sprintf($lC_Language->get('newsletter_newsletter_total_recipients'), $this->_audience_size) . '' . - '' . $this->_newsletter_title . '' . - '' . nl2br(lc_output_string_protected($this->_newsletter_content)) . '' . - ''; + $confirmation_string = '' . sprintf($lC_Language->get('newsletter_newsletter_total_recipients'), $this->_audience_size) . '' . + '' . $this->_newsletter_title . '' . + '' . nl2br(lc_output_string_protected($this->_newsletter_content)) . '' . + ''; // ''; - /* - if ($this->_audience_size > 0) { - $confirmation_string .= lc_draw_hidden_field('subaction', 'execute') . - ' ' . - ''; - } else { - $confirmation_string .= ''; - } - */ + /* + if ($this->_audience_size > 0) { + $confirmation_string .= lc_draw_hidden_field('subaction', 'execute') . + ' ' . + ''; + } else { + $confirmation_string .= ''; + } + */ - $confirmation_string .= ''; + $confirmation_string .= ''; - return $confirmation_string; - } + return $confirmation_string; + } - public function sendEmail() { - global $lC_Database, $lC_Language, $lC_Template; - - $max_execution_time = 0.8 * (int)ini_get('max_execution_time'); - $time_start = explode(' ', PAGE_PARSE_START_TIME); - - $Qrecipients = $lC_Database->query('select c.customers_firstname, c.customers_lastname, c.customers_email_address from :table_customers c left join :table_newsletters_log nl on (c.customers_email_address = nl.email_address and nl.newsletters_id = :newsletters_id) where c.customers_newsletter = 1 and nl.email_address is null'); - $Qrecipients->bindTable(':table_customers', TABLE_CUSTOMERS); - $Qrecipients->bindTable(':table_newsletters_log', TABLE_NEWSLETTERS_LOG); - $Qrecipients->bindInt(':newsletters_id', $this->_newsletter_id); - $Qrecipients->execute(); - - if ( $Qrecipients->numberOfRows() > 0 ) { - $lC_Mail = new lC_Mail(null, null, null, EMAIL_FROM, $this->_newsletter_title); - $lC_Mail->setBodyPlain($this->_newsletter_content); - - while ( $Qrecipients->next() ) { - $lC_Mail->clearTo(); - $lC_Mail->addTo($Qrecipients->value('customers_firstname') . ' ' . $Qrecipients->value('customers_lastname'), $Qrecipients->value('customers_email_address')); - $lC_Mail->send(); - - $Qlog = $lC_Database->query('insert into :table_newsletters_log (newsletters_id, email_address, date_sent) values (:newsletters_id, :email_address, now())'); - $Qlog->bindTable(':table_newsletters_log', TABLE_NEWSLETTERS_LOG); - $Qlog->bindInt(':newsletters_id', $this->_newsletter_id); - $Qlog->bindValue(':email_address', $Qrecipients->value('customers_email_address')); - $Qlog->execute(); - - $time_end = explode(' ', microtime()); - $timer_total = number_format(($time_end[1] + $time_end[0] - ($time_start[1] + $time_start[0])), 3); - - if ( $timer_total > $max_execution_time ) { - echo '' . $lC_Language->get('sending_refreshing_page') . '' . - '' . - '' . lc_draw_hidden_field('subaction', 'execute') . '' . - '' . - ''; - - exit; - } + public function sendEmail() { + global $lC_Database, $lC_Language, $lC_Template; + + $max_execution_time = 0.8 * (int)ini_get('max_execution_time'); + $time_start = explode(' ', PAGE_PARSE_START_TIME); + + $Qrecipients = $lC_Database->query('select c.customers_firstname, c.customers_lastname, c.customers_email_address from :table_customers c left join :table_newsletters_log nl on (c.customers_email_address = nl.email_address and nl.newsletters_id = :newsletters_id) where c.customers_newsletter = 1 and nl.email_address is null'); + $Qrecipients->bindTable(':table_customers', TABLE_CUSTOMERS); + $Qrecipients->bindTable(':table_newsletters_log', TABLE_NEWSLETTERS_LOG); + $Qrecipients->bindInt(':newsletters_id', $this->_newsletter_id); + $Qrecipients->execute(); + + if ( $Qrecipients->numberOfRows() > 0 ) { + $lC_Mail = new lC_Mail(null, null, null, EMAIL_FROM, $this->_newsletter_title); + $lC_Mail->setBodyPlain($this->_newsletter_content); + + while ( $Qrecipients->next() ) { + $lC_Mail->clearTo(); + $lC_Mail->addTo($Qrecipients->value('customers_firstname') . ' ' . $Qrecipients->value('customers_lastname'), $Qrecipients->value('customers_email_address')); + $lC_Mail->send(); + + $Qlog = $lC_Database->query('insert into :table_newsletters_log (newsletters_id, email_address, date_sent) values (:newsletters_id, :email_address, now())'); + $Qlog->bindTable(':table_newsletters_log', TABLE_NEWSLETTERS_LOG); + $Qlog->bindInt(':newsletters_id', $this->_newsletter_id); + $Qlog->bindValue(':email_address', $Qrecipients->value('customers_email_address')); + $Qlog->execute(); + + $time_end = explode(' ', microtime()); + $timer_total = number_format(($time_end[1] + $time_end[0] - ($time_start[1] + $time_start[0])), 3); + + if ( $timer_total > $max_execution_time ) { + echo '' . $lC_Language->get('sending_refreshing_page') . '' . + '' . + '' . lc_draw_hidden_field('subaction', 'execute') . '' . + '' . + ''; + + exit; } - - $Qrecipients->freeResult(); } - $Qupdate = $lC_Database->query('update :table_newsletters set date_sent = now(), status = 1 where newsletters_id = :newsletters_id'); - $Qupdate->bindTable(':table_newsletters', TABLE_NEWSLETTERS); - $Qupdate->bindInt(':newsletters_id', $this->_newsletter_id); - $Qupdate->execute(); - } - } + $Qrecipients->freeResult(); + } + + $Qupdate = $lC_Database->query('update :table_newsletters set date_sent = now(), status = 1 where newsletters_id = :newsletters_id'); + $Qupdate->bindTable(':table_newsletters', TABLE_NEWSLETTERS); + $Qupdate->bindInt(':newsletters_id', $this->_newsletter_id); + $Qupdate->execute(); + } +} ?> \ No newline at end of file diff --git a/catalog/admin/includes/modules/newsletters/product_notification.php b/catalog/admin/includes/modules/newsletters/product_notification.php index f096b567d..2e001a9b9 100644 --- a/catalog/admin/includes/modules/newsletters/product_notification.php +++ b/catalog/admin/includes/modules/newsletters/product_notification.php @@ -1,306 +1,301 @@ _title = $lC_Language->get('newsletter_product_notifications_title'); - class lC_Newsletter_product_notification { + $this->_newsletter_title = $title; + $this->_newsletter_content = $content; + $this->_newsletter_id = $newsletter_id; + } - /* Private methods */ - var $_title, - $_has_audience_selection = true, - $_newsletter_title, - $_newsletter_content, - $_newsletter_id, - $_audience_size = 0; + /* Public methods */ + public function getTitle() { + return $this->_title; + } - /* Class constructor */ - function lC_Newsletter_product_notification($title = '', $content = '', $newsletter_id = '') { - global $lC_Language; + public function hasAudienceSelection() { + if ($this->_has_audience_selection === true) { + return true; + } - $this->_title = $lC_Language->get('newsletter_product_notifications_title'); + return false; + } + + public public function hasAudienceSize() { + global $lC_Database; + + if ( (isset($_GET['chosen']) && !empty($_GET['chosen'])) || (isset($_GET['global']) && ($_GET['global'] == 'true')) ) { + $Qcustomers = $lC_Database->query('select count(customers_id) as total from :table_customers where global_product_notifications = 1'); + $Qcustomers->bindTable(':table_customers', TABLE_CUSTOMERS); + $Qcustomers->execute(); - $this->_newsletter_title = $title; - $this->_newsletter_content = $content; - $this->_newsletter_id = $newsletter_id; - } + $this->_audience_size = $Qcustomers->valueInt('total'); - /* Public methods */ - function getTitle() { - return $this->_title; - } + $Qcustomers = $lC_Database->query('select count(distinct pn.customers_id) as total from :table_products_notifications pn, :table_customers c left join :table_newsletters_log nl on (c.customers_email_address = nl.email_address and nl.newsletters_id = :newsletters_id) where pn.customers_id = c.customers_id and nl.email_address is null'); + $Qcustomers->bindTable(':table_products_notifications', TABLE_PRODUCTS_NOTIFICATIONS); + $Qcustomers->bindTable(':table_customers', TABLE_CUSTOMERS); + $Qcustomers->bindTable(':table_newsletters_log', TABLE_NEWSLETTERS_LOG); + $Qcustomers->bindInt(':newsletters_id', $this->_newsletter_id); - function hasAudienceSelection() { - if ($this->_has_audience_selection === true) { - return true; + if ( isset($_GET['chosen']) && !empty($_GET['chosen']) ) { + $Qcustomers->appendQuery('and pn.products_id in (:products_id)'); + $Qcustomers->bindRaw(':products_id', implode(', ', $_GET['chosen'])); } - return false; - } - - public function hasAudienceSize() { - global $lC_Database; - - if ( (isset($_GET['chosen']) && !empty($_GET['chosen'])) || (isset($_GET['global']) && ($_GET['global'] == 'true')) ) { - $Qcustomers = $lC_Database->query('select count(customers_id) as total from :table_customers where global_product_notifications = 1'); - $Qcustomers->bindTable(':table_customers', TABLE_CUSTOMERS); - $Qcustomers->execute(); - - $this->_audience_size = $Qcustomers->valueInt('total'); - - $Qcustomers = $lC_Database->query('select count(distinct pn.customers_id) as total from :table_products_notifications pn, :table_customers c left join :table_newsletters_log nl on (c.customers_email_address = nl.email_address and nl.newsletters_id = :newsletters_id) where pn.customers_id = c.customers_id and nl.email_address is null'); - $Qcustomers->bindTable(':table_products_notifications', TABLE_PRODUCTS_NOTIFICATIONS); - $Qcustomers->bindTable(':table_customers', TABLE_CUSTOMERS); - $Qcustomers->bindTable(':table_newsletters_log', TABLE_NEWSLETTERS_LOG); - $Qcustomers->bindInt(':newsletters_id', $this->_newsletter_id); - - if ( isset($_GET['chosen']) && !empty($_GET['chosen']) ) { - $Qcustomers->appendQuery('and pn.products_id in (:products_id)'); - $Qcustomers->bindRaw(':products_id', implode(', ', $_GET['chosen'])); - } - - $Qcustomers->execute(); + $Qcustomers->execute(); - if ($Qcustomers->valueInt('total') > 0) { - return true; - } - - $Qcustomers->freeResult(); + if ($Qcustomers->valueInt('total') > 0) { + return true; } - return false; - } + $Qcustomers->freeResult(); + } + + return false; + } - function showAudienceSelectionForm() { - global $lC_Database, $lC_Language, $lC_Template; + public function showAudienceSelectionForm() { + global $lC_Database, $lC_Language, $lC_Template; - $products_array = array(); + $products_array = array(); - $Qproducts = $lC_Database->query('select pd.products_id, pd.products_name from :table_products p, :table_products_description pd where pd.language_id = :language_id and pd.products_id = p.products_id and p.products_status = 1 order by pd.products_name'); - $Qproducts->bindTable(':table_products', TABLE_PRODUCTS); - $Qproducts->bindTable(':table_products_description', TABLE_PRODUCTS_DESCRIPTION); - $Qproducts->bindInt(':language_id', $lC_Language->getID()); - $Qproducts->execute(); + $Qproducts = $lC_Database->query('select pd.products_id, pd.products_name from :table_products p, :table_products_description pd where pd.language_id = :language_id and pd.products_id = p.products_id and p.products_status = 1 order by pd.products_name'); + $Qproducts->bindTable(':table_products', TABLE_PRODUCTS); + $Qproducts->bindTable(':table_products_description', TABLE_PRODUCTS_DESCRIPTION); + $Qproducts->bindInt(':language_id', $lC_Language->getID()); + $Qproducts->execute(); - while ($Qproducts->next()) { - $products_array[] = array('id' => $Qproducts->valueInt('products_id'), - 'text' => $Qproducts->value('products_name')); - } + while ($Qproducts->next()) { + $products_array[] = array('id' => $Qproducts->valueInt('products_id'), + 'text' => $Qproducts->value('products_name')); + } + + $Qproducts->freeResult(); - $Qproducts->freeResult(); - - $audience_form = ''; - - $audience_form .= '' . - ' ' . - ' ' . - ' ' . $lC_Language->get('newsletter_product_notifications_table_heading_products') . '' . lc_draw_pull_down_menu('products', $products_array, null, 'class="input with-small-padding" size="20" style="width: 20em;" multiple') . '' . - ' ' . - ' ' . - ' ' . - ' ' . lc_draw_hidden_field('subaction', 'confirm') . - ' ' . - ' ' . $lC_Language->get('newsletter_product_notifications_table_heading_selected_products') . '' . lc_draw_pull_down_menu('chosen[]', null, null, 'class="input with-small-padding" size="20" style="width: 20em;" multiple') . '' . - ' ' . - ' ' . - ''; - - return $audience_form; - } + } + //-->'; + + $audience_form .= '' . + ' ' . + ' ' . + ' ' . $lC_Language->get('newsletter_product_notifications_table_heading_products') . '' . lc_draw_pull_down_menu('products', $products_array, null, 'class="input with-small-padding" size="20" style="width: 20em;" multiple') . '' . + ' ' . + ' ' . + ' ' . + ' ' . lc_draw_hidden_field('subaction', 'confirm') . + ' ' . + ' ' . $lC_Language->get('newsletter_product_notifications_table_heading_selected_products') . '' . lc_draw_pull_down_menu('chosen[]', null, null, 'class="input with-small-padding" size="20" style="width: 20em;" multiple') . '' . + ' ' . + ' ' . + ''; + + return $audience_form; + } - function showConfirmation() { - global $lC_Database, $lC_Language, $lC_Template; + public function showConfirmation() { + global $lC_Database, $lC_Language, $lC_Template; - if ( (isset($_GET['chosen']) && !empty($_GET['chosen'])) || (isset($_GET['global']) && ($_GET['global'] == 'true')) ) { - $Qcustomers = $lC_Database->query('select count(customers_id) as total from :table_customers where global_product_notifications = 1'); - $Qcustomers->bindTable(':table_customers', TABLE_CUSTOMERS); - $Qcustomers->execute(); + if ( (isset($_GET['chosen']) && !empty($_GET['chosen'])) || (isset($_GET['global']) && ($_GET['global'] == 'true')) ) { + $Qcustomers = $lC_Database->query('select count(customers_id) as total from :table_customers where global_product_notifications = 1'); + $Qcustomers->bindTable(':table_customers', TABLE_CUSTOMERS); + $Qcustomers->execute(); - $this->_audience_size = $Qcustomers->valueInt('total'); + $this->_audience_size = $Qcustomers->valueInt('total'); - $Qcustomers = $lC_Database->query('select count(distinct pn.customers_id) as total from :table_products_notifications pn, :table_customers c left join :table_newsletters_log nl on (c.customers_email_address = nl.email_address and nl.newsletters_id = :newsletters_id) where pn.customers_id = c.customers_id and nl.email_address is null'); - $Qcustomers->bindTable(':table_products_notifications', TABLE_PRODUCTS_NOTIFICATIONS); - $Qcustomers->bindTable(':table_customers', TABLE_CUSTOMERS); - $Qcustomers->bindTable(':table_newsletters_log', TABLE_NEWSLETTERS_LOG); - $Qcustomers->bindInt(':newsletters_id', $this->_newsletter_id); + $Qcustomers = $lC_Database->query('select count(distinct pn.customers_id) as total from :table_products_notifications pn, :table_customers c left join :table_newsletters_log nl on (c.customers_email_address = nl.email_address and nl.newsletters_id = :newsletters_id) where pn.customers_id = c.customers_id and nl.email_address is null'); + $Qcustomers->bindTable(':table_products_notifications', TABLE_PRODUCTS_NOTIFICATIONS); + $Qcustomers->bindTable(':table_customers', TABLE_CUSTOMERS); + $Qcustomers->bindTable(':table_newsletters_log', TABLE_NEWSLETTERS_LOG); + $Qcustomers->bindInt(':newsletters_id', $this->_newsletter_id); - if ( isset($_GET['chosen']) && !empty($_GET['chosen']) ) { - $Qcustomers->appendQuery('and pn.products_id in (:products_id)'); - $Qcustomers->bindRaw(':products_id', implode(', ', $_GET['chosen'])); - } + if ( isset($_GET['chosen']) && !empty($_GET['chosen']) ) { + $Qcustomers->appendQuery('and pn.products_id in (:products_id)'); + $Qcustomers->bindRaw(':products_id', implode(', ', $_GET['chosen'])); + } - $Qcustomers->execute(); + $Qcustomers->execute(); - $this->_audience_size += $Qcustomers->valueInt('total'); - } + $this->_audience_size += $Qcustomers->valueInt('total'); + } - $confirmation_string = '' . sprintf($lC_Language->get('newsletter_product_notifications_total_recipients'), $this->_audience_size) . '' . - '' . $this->_newsletter_title . '' . - '' . nl2br(lc_output_string_protected($this->_newsletter_content)) . '' . - ''; - - if ( $this->_audience_size > 0 ) { - if ( isset($_GET['global']) && ( $_GET['global'] == 'true' ) ) { - $confirmation_string .= lc_draw_hidden_field('global', 'true'); - } elseif ( isset($_GET['chosen']) && !empty($_GET['chosen']) ) { - for ( $i = 0, $n = sizeof($_GET['chosen']); $i < $n; $i++ ) { - $confirmation_string .= lc_draw_hidden_field('chosen[]', $_GET['chosen'][$i]); - } + $confirmation_string = '' . sprintf($lC_Language->get('newsletter_product_notifications_total_recipients'), $this->_audience_size) . '' . + '' . $this->_newsletter_title . '' . + '' . nl2br(lc_output_string_protected($this->_newsletter_content)) . '' . + ''; + + if ( $this->_audience_size > 0 ) { + if ( isset($_GET['global']) && ( $_GET['global'] == 'true' ) ) { + $confirmation_string .= lc_draw_hidden_field('global', 'true'); + } elseif ( isset($_GET['chosen']) && !empty($_GET['chosen']) ) { + for ( $i = 0, $n = sizeof($_GET['chosen']); $i < $n; $i++ ) { + $confirmation_string .= lc_draw_hidden_field('chosen[]', $_GET['chosen'][$i]); } - - $confirmation_string .= lc_draw_hidden_field('subaction', 'execute'); } - $confirmation_string .= ''; - - return $confirmation_string; + $confirmation_string .= lc_draw_hidden_field('subaction', 'execute'); } - function sendEmail() { - global $lC_Database, $lC_Language; + $confirmation_string .= ''; - $max_execution_time = 0.8 * (int)ini_get('max_execution_time'); - $time_start = explode(' ', PAGE_PARSE_START_TIME); + return $confirmation_string; + } - if (isset($_POST['chosen'])) { - $chosen = $_POST['chosen']; - } elseif (isset($_GET['chosen'])) { - $chosen = $_GET['chosen']; - } elseif (isset($_POST['global'])) { - $global = $_POST['global']; - } elseif (isset($_GET['global'])) { - $global = $_GET['global']; - } + public function sendEmail() { + global $lC_Database, $lC_Language; - $chosen_get_string = ''; - if (isset($chosen) && !empty($chosen)) { - foreach ($chosen as $id) { - $chosen_get_string .= 'chosen[]=' . $id . '&'; - } + $max_execution_time = 0.8 * (int)ini_get('max_execution_time'); + $time_start = explode(' ', PAGE_PARSE_START_TIME); + + if (isset($_POST['chosen'])) { + $chosen = $_POST['chosen']; + } elseif (isset($_GET['chosen'])) { + $chosen = $_GET['chosen']; + } elseif (isset($_POST['global'])) { + $global = $_POST['global']; + } elseif (isset($_GET['global'])) { + $global = $_GET['global']; + } + + $chosen_get_string = ''; + if (isset($chosen) && !empty($chosen)) { + foreach ($chosen as $id) { + $chosen_get_string .= 'chosen[]=' . $id . '&'; } + } - $audience = array(); + $audience = array(); - $Qcustomers = $lC_Database->query('select customers_id, customers_firstname, customers_lastname, customers_email_address from :table_customers where global_product_notifications = 1'); - $Qcustomers->bindTable(':table_customers', TABLE_CUSTOMERS); - $Qcustomers->execute(); + $Qcustomers = $lC_Database->query('select customers_id, customers_firstname, customers_lastname, customers_email_address from :table_customers where global_product_notifications = 1'); + $Qcustomers->bindTable(':table_customers', TABLE_CUSTOMERS); + $Qcustomers->execute(); - while ($Qcustomers->next()) { - if (!isset($audience[$Qcustomers->valueInt('customers_id')])) { - $audience[$Qcustomers->valueInt('customers_id')] = array('firstname' => $Qcustomers->value('customers_firstname'), - 'lastname' => $Qcustomers->value('customers_lastname'), - 'email_address' => $Qcustomers->value('customers_email_address')); - } + while ($Qcustomers->next()) { + if (!isset($audience[$Qcustomers->valueInt('customers_id')])) { + $audience[$Qcustomers->valueInt('customers_id')] = array('firstname' => $Qcustomers->value('customers_firstname'), + 'lastname' => $Qcustomers->value('customers_lastname'), + 'email_address' => $Qcustomers->value('customers_email_address')); } + } - $Qcustomers = $lC_Database->query('select distinct pn.customers_id, c.customers_firstname, c.customers_lastname, c.customers_email_address from :table_products_notifications pn, :table_customers c left join :table_newsletters_log nl on (c.customers_email_address = nl.email_address and nl.newsletters_id = :newsletters_id) where pn.customers_id = c.customers_id and nl.email_address is null'); - $Qcustomers->bindTable(':table_products_notifications', TABLE_PRODUCTS_NOTIFICATIONS); - $Qcustomers->bindTable(':table_customers', TABLE_CUSTOMERS); - $Qcustomers->bindTable(':table_newsletters_log', TABLE_NEWSLETTERS_LOG); - $Qcustomers->bindInt(':newsletters_id', $this->_newsletter_id); + $Qcustomers = $lC_Database->query('select distinct pn.customers_id, c.customers_firstname, c.customers_lastname, c.customers_email_address from :table_products_notifications pn, :table_customers c left join :table_newsletters_log nl on (c.customers_email_address = nl.email_address and nl.newsletters_id = :newsletters_id) where pn.customers_id = c.customers_id and nl.email_address is null'); + $Qcustomers->bindTable(':table_products_notifications', TABLE_PRODUCTS_NOTIFICATIONS); + $Qcustomers->bindTable(':table_customers', TABLE_CUSTOMERS); + $Qcustomers->bindTable(':table_newsletters_log', TABLE_NEWSLETTERS_LOG); + $Qcustomers->bindInt(':newsletters_id', $this->_newsletter_id); - if (isset($chosen) && !empty($chosen)) { - $Qcustomers->appendQuery('and pn.products_id in (:products_id)'); - $Qcustomers->bindRaw(':products_id', implode(', ', $chosen)); - } + if (isset($chosen) && !empty($chosen)) { + $Qcustomers->appendQuery('and pn.products_id in (:products_id)'); + $Qcustomers->bindRaw(':products_id', implode(', ', $chosen)); + } - $Qcustomers->execute(); + $Qcustomers->execute(); - while ($Qcustomers->next()) { - if (!isset($audience[$Qcustomers->valueInt('customers_id')])) { - $audience[$Qcustomers->valueInt('customers_id')] = array('firstname' => $Qcustomers->value('customers_firstname'), - 'lastname' => $Qcustomers->value('customers_lastname'), - 'email_address' => $Qcustomers->value('customers_email_address')); - } + while ($Qcustomers->next()) { + if (!isset($audience[$Qcustomers->valueInt('customers_id')])) { + $audience[$Qcustomers->valueInt('customers_id')] = array('firstname' => $Qcustomers->value('customers_firstname'), + 'lastname' => $Qcustomers->value('customers_lastname'), + 'email_address' => $Qcustomers->value('customers_email_address')); } + } - if (sizeof($audience) > 0) { - $lC_Mail = new lC_Mail(null, null, null, EMAIL_FROM, $this->_newsletter_title); - $lC_Mail->setBodyPlain($this->_newsletter_content); - - foreach ($audience as $key => $value) { - $lC_Mail->clearTo(); - $lC_Mail->addTo($value['firstname'] . ' ' . $value['lastname'], $value['email_address']); - $lC_Mail->send(); - - $Qlog = $lC_Database->query('insert into :table_newsletters_log (newsletters_id, email_address, date_sent) values (:newsletters_id, :email_address, now())'); - $Qlog->bindTable(':table_newsletters_log', TABLE_NEWSLETTERS_LOG); - $Qlog->bindInt(':newsletters_id', $this->_newsletter_id); - $Qlog->bindValue(':email_address', $value['email_address']); - $Qlog->execute(); - - $time_end = explode(' ', microtime()); - $timer_total = number_format(($time_end[1] + $time_end[0] - ($time_start[1] + $time_start[0])), 3); - - if ( $timer_total > $max_execution_time ) { - echo '' . $lC_Language->get('sending_refreshing_page') . '' . - '' . - '' . lc_draw_hidden_field('subaction', 'execute') . '' . - '' . - ''; - - exit; - } + if (sizeof($audience) > 0) { + $lC_Mail = new lC_Mail(null, null, null, EMAIL_FROM, $this->_newsletter_title); + $lC_Mail->setBodyPlain($this->_newsletter_content); + + foreach ($audience as $key => $value) { + $lC_Mail->clearTo(); + $lC_Mail->addTo($value['firstname'] . ' ' . $value['lastname'], $value['email_address']); + $lC_Mail->send(); + + $Qlog = $lC_Database->query('insert into :table_newsletters_log (newsletters_id, email_address, date_sent) values (:newsletters_id, :email_address, now())'); + $Qlog->bindTable(':table_newsletters_log', TABLE_NEWSLETTERS_LOG); + $Qlog->bindInt(':newsletters_id', $this->_newsletter_id); + $Qlog->bindValue(':email_address', $value['email_address']); + $Qlog->execute(); + + $time_end = explode(' ', microtime()); + $timer_total = number_format(($time_end[1] + $time_end[0] - ($time_start[1] + $time_start[0])), 3); + + if ( $timer_total > $max_execution_time ) { + echo '' . $lC_Language->get('sending_refreshing_page') . '' . + '' . + '' . lc_draw_hidden_field('subaction', 'execute') . '' . + '' . + ''; + + exit; } } - - $Qupdate = $lC_Database->query('update :table_newsletters set date_sent = now(), status = 1 where newsletters_id = :newsletters_id'); - $Qupdate->bindTable(':table_newsletters', TABLE_NEWSLETTERS); - $Qupdate->bindInt(':newsletters_id', $this->_newsletter_id); - $Qupdate->execute(); } + + $Qupdate = $lC_Database->query('update :table_newsletters set date_sent = now(), status = 1 where newsletters_id = :newsletters_id'); + $Qupdate->bindTable(':table_newsletters', TABLE_NEWSLETTERS); + $Qupdate->bindInt(':newsletters_id', $this->_newsletter_id); + $Qupdate->execute(); } +} ?> \ No newline at end of file diff --git a/catalog/admin/includes/modules/order_total/coupon.php b/catalog/admin/includes/modules/order_total/coupon.php index 458b42c67..36b31a43b 100644 --- a/catalog/admin/includes/modules/order_total/coupon.php +++ b/catalog/admin/includes/modules/order_total/coupon.php @@ -1,60 +1,55 @@ _title = $lC_Language->get('order_total_coupon_title'); + $this->_description = $lC_Language->get('order_total_coupon_description'); + $this->_status = (defined('MODULE_ORDER_TOTAL_COUPON_STATUS') && (MODULE_ORDER_TOTAL_COUPON_STATUS == 'true') ? true : false); + $this->_sort_order = (defined('MODULE_ORDER_TOTAL_COUPON_SORT_ORDER') ? MODULE_ORDER_TOTAL_COUPON_SORT_ORDER : null); + } - class lC_OrderTotal_coupon extends lC_Modules_order_total_Admin { - var $_title, - $_code = 'coupon', - $_author_name = 'Loaded Commerce', - $_author_www = 'http://www.loadedcommerce.com', - $_status = false, - $_sort_order; - - public function lC_OrderTotal_coupon() { - global $lC_Language; - - $this->_title = $lC_Language->get('order_total_coupon_title'); - $this->_description = $lC_Language->get('order_total_coupon_description'); - $this->_status = (defined('MODULE_ORDER_TOTAL_COUPON_STATUS') && (MODULE_ORDER_TOTAL_COUPON_STATUS == 'true') ? true : false); - $this->_sort_order = (defined('MODULE_ORDER_TOTAL_COUPON_SORT_ORDER') ? MODULE_ORDER_TOTAL_COUPON_SORT_ORDER : null); - } + public function isInstalled() { + return (bool)defined('MODULE_ORDER_TOTAL_COUPON_STATUS'); + } - public function isInstalled() { - return (bool)defined('MODULE_ORDER_TOTAL_COUPON_STATUS'); - } + public function install() { + global $lC_Database; - public function install() { - global $lC_Database; + $lC_Database->simpleQuery("insert ignore into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_function, set_function, date_added) values ('Display Coupon', 'MODULE_ORDER_TOTAL_COUPON_STATUS', 'true', 'Do you want to dusplay the coupon discount total on the checkout pages?', '6', '0', 'lc_cfg_use_get_boolean_value', 'lc_cfg_set_boolean_value(array(\'true\', \'false\'))', now())"); + $lC_Database->simpleQuery("insert ignore into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Sort Order', 'MODULE_ORDER_TOTAL_COUPON_SORT_ORDER', '300', 'Sort order of the display.', '6', '0', now())"); + $lC_Database->simpleQuery("insert ignore into " . TABLE_TEMPLATES_BOXES . " (title, code, author_name, author_www, modules_group) values ('Coupon', 'coupon', 'Loaded Commerce', 'http://www.loadedcommerce.com', 'order_total')"); + } - $lC_Database->simpleQuery("insert ignore into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_function, set_function, date_added) values ('Display Coupon', 'MODULE_ORDER_TOTAL_COUPON_STATUS', 'true', 'Do you want to dusplay the coupon discount total on the checkout pages?', '6', '0', 'lc_cfg_use_get_boolean_value', 'lc_cfg_set_boolean_value(array(\'true\', \'false\'))', now())"); - $lC_Database->simpleQuery("insert ignore into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Sort Order', 'MODULE_ORDER_TOTAL_COUPON_SORT_ORDER', '300', 'Sort order of the display.', '6', '0', now())"); - $lC_Database->simpleQuery("insert ignore into " . TABLE_TEMPLATES_BOXES . " (title, code, author_name, author_www, modules_group) values ('Coupon', 'coupon', 'Loaded Commerce', 'http://www.loadedcommerce.com', 'order_total')"); - } + public function remove() { + global $lC_Database; - public function remove() { - global $lC_Database; + $lC_Database->simpleQuery("delete from " . TABLE_CONFIGURATION . " where configuration_key in ('" . implode("', '", $this->getKeys()) . "')"); + $lC_Database->simpleQuery("delete from " . TABLE_TEMPLATES_BOXES . " where code = 'coupon'"); + } - $lC_Database->simpleQuery("delete from " . TABLE_CONFIGURATION . " where configuration_key in ('" . implode("', '", $this->getKeys()) . "')"); - $lC_Database->simpleQuery("delete from " . TABLE_TEMPLATES_BOXES . " where code = 'coupon'"); + public function getKeys() { + if (!isset($this->_keys)) { + $this->_keys = array('MODULE_ORDER_TOTAL_COUPON_STATUS', + 'MODULE_ORDER_TOTAL_COUPON_SORT_ORDER'); } - public function getKeys() { - if (!isset($this->_keys)) { - $this->_keys = array('MODULE_ORDER_TOTAL_COUPON_STATUS', - 'MODULE_ORDER_TOTAL_COUPON_SORT_ORDER'); - } - - return $this->_keys; - } + return $this->_keys; } +} ?> \ No newline at end of file diff --git a/catalog/admin/includes/modules/order_total/low_order_fee.php b/catalog/admin/includes/modules/order_total/low_order_fee.php index 5cf991112..37c3acba6 100644 --- a/catalog/admin/includes/modules/order_total/low_order_fee.php +++ b/catalog/admin/includes/modules/order_total/low_order_fee.php @@ -1,68 +1,63 @@ _title = $lC_Language->get('order_total_loworderfee_title'); + $this->_description = $lC_Language->get('order_total_loworderfee_description'); + $this->_status = (defined('MODULE_ORDER_TOTAL_LOWORDERFEE_STATUS') && (MODULE_ORDER_TOTAL_LOWORDERFEE_STATUS == 'true') ? true : false); + $this->_sort_order = (defined('MODULE_ORDER_TOTAL_LOWORDERFEE_SORT_ORDER') ? MODULE_ORDER_TOTAL_LOWORDERFEE_SORT_ORDER : null); + } - class lC_OrderTotal_low_order_fee extends lC_Modules_order_total_Admin { - var $_title, - $_code = 'low_order_fee', - $_author_name = 'LoadedCommerce', - $_author_www = 'http://www.loadedcommerce.com', - $_status = false, - $_sort_order; - - public function lC_OrderTotal_low_order_fee() { - global $lC_Language; - - $this->_title = $lC_Language->get('order_total_loworderfee_title'); - $this->_description = $lC_Language->get('order_total_loworderfee_description'); - $this->_status = (defined('MODULE_ORDER_TOTAL_LOWORDERFEE_STATUS') && (MODULE_ORDER_TOTAL_LOWORDERFEE_STATUS == 'true') ? true : false); - $this->_sort_order = (defined('MODULE_ORDER_TOTAL_LOWORDERFEE_SORT_ORDER') ? MODULE_ORDER_TOTAL_LOWORDERFEE_SORT_ORDER : null); - } + public function isInstalled() { + return (bool)defined('MODULE_ORDER_TOTAL_LOWORDERFEE_STATUS'); + } - public function isInstalled() { - return (bool)defined('MODULE_ORDER_TOTAL_LOWORDERFEE_STATUS'); - } + public function install() { + global $lC_Database; - public function install() { - global $lC_Database; + $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) values ('Display Low Order Fee', 'MODULE_ORDER_TOTAL_LOWORDERFEE_STATUS', 'true', 'Do you want to display the low order fee?', '6', '1', 'lc_cfg_set_boolean_value(array(\'true\', \'false\'))', now())"); + $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Sort Order', 'MODULE_ORDER_TOTAL_LOWORDERFEE_SORT_ORDER', '400', 'Sort order of display.', '6', '2', now())"); + $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) values ('Allow Low Order Fee', 'MODULE_ORDER_TOTAL_LOWORDERFEE_LOW_ORDER_FEE', 'false', 'Do you want to allow low order fees?', '6', '3', 'lc_cfg_set_boolean_value(array(\'true\', \'false\'))', now())"); + $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_function, date_added) values ('Order Fee For Orders Under', 'MODULE_ORDER_TOTAL_LOWORDERFEE_ORDER_UNDER', '50', 'Add the low order fee to orders under this amount.', '6', '4', 'currencies->format', now())"); + $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_function, date_added) values ('Order Fee', 'MODULE_ORDER_TOTAL_LOWORDERFEE_FEE', '5', 'Low order fee.', '6', '5', 'currencies->format', now())"); + $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) values ('Attach Low Order Fee On Orders Made', 'MODULE_ORDER_TOTAL_LOWORDERFEE_DESTINATION', 'both', 'Attach low order fee for orders sent to the set destination.', '6', '6', 'lc_cfg_set_boolean_value(array(\'national\', \'international\', \'both\'))', now())"); + $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_function, set_function, date_added) values ('Tax Class', 'MODULE_ORDER_TOTAL_LOWORDERFEE_TAX_CLASS', '0', 'Use the following tax class on the low order fee.', '6', '7', 'lc_cfg_use_get_tax_class_title', 'lc_cfg_set_tax_classes_pull_down_menu', now())"); + } - $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) values ('Display Low Order Fee', 'MODULE_ORDER_TOTAL_LOWORDERFEE_STATUS', 'true', 'Do you want to display the low order fee?', '6', '1', 'lc_cfg_set_boolean_value(array(\'true\', \'false\'))', now())"); - $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Sort Order', 'MODULE_ORDER_TOTAL_LOWORDERFEE_SORT_ORDER', '400', 'Sort order of display.', '6', '2', now())"); - $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) values ('Allow Low Order Fee', 'MODULE_ORDER_TOTAL_LOWORDERFEE_LOW_ORDER_FEE', 'false', 'Do you want to allow low order fees?', '6', '3', 'lc_cfg_set_boolean_value(array(\'true\', \'false\'))', now())"); - $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_function, date_added) values ('Order Fee For Orders Under', 'MODULE_ORDER_TOTAL_LOWORDERFEE_ORDER_UNDER', '50', 'Add the low order fee to orders under this amount.', '6', '4', 'currencies->format', now())"); - $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_function, date_added) values ('Order Fee', 'MODULE_ORDER_TOTAL_LOWORDERFEE_FEE', '5', 'Low order fee.', '6', '5', 'currencies->format', now())"); - $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) values ('Attach Low Order Fee On Orders Made', 'MODULE_ORDER_TOTAL_LOWORDERFEE_DESTINATION', 'both', 'Attach low order fee for orders sent to the set destination.', '6', '6', 'lc_cfg_set_boolean_value(array(\'national\', \'international\', \'both\'))', now())"); - $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_function, set_function, date_added) values ('Tax Class', 'MODULE_ORDER_TOTAL_LOWORDERFEE_TAX_CLASS', '0', 'Use the following tax class on the low order fee.', '6', '7', 'lc_cfg_use_get_tax_class_title', 'lc_cfg_set_tax_classes_pull_down_menu', now())"); - } + public function remove() { + global $lC_Database; - public function remove() { - global $lC_Database; + $lC_Database->simpleQuery("delete from " . TABLE_CONFIGURATION . " where configuration_key in ('" . implode("', '", $this->getKeys()) . "')"); + } - $lC_Database->simpleQuery("delete from " . TABLE_CONFIGURATION . " where configuration_key in ('" . implode("', '", $this->getKeys()) . "')"); + public function getKeys() { + if (!isset($this->_keys)) { + $this->_keys = array('MODULE_ORDER_TOTAL_LOWORDERFEE_STATUS', + 'MODULE_ORDER_TOTAL_LOWORDERFEE_SORT_ORDER', + 'MODULE_ORDER_TOTAL_LOWORDERFEE_LOW_ORDER_FEE', + 'MODULE_ORDER_TOTAL_LOWORDERFEE_ORDER_UNDER', + 'MODULE_ORDER_TOTAL_LOWORDERFEE_FEE', + 'MODULE_ORDER_TOTAL_LOWORDERFEE_DESTINATION', + 'MODULE_ORDER_TOTAL_LOWORDERFEE_TAX_CLASS'); } - public function getKeys() { - if (!isset($this->_keys)) { - $this->_keys = array('MODULE_ORDER_TOTAL_LOWORDERFEE_STATUS', - 'MODULE_ORDER_TOTAL_LOWORDERFEE_SORT_ORDER', - 'MODULE_ORDER_TOTAL_LOWORDERFEE_LOW_ORDER_FEE', - 'MODULE_ORDER_TOTAL_LOWORDERFEE_ORDER_UNDER', - 'MODULE_ORDER_TOTAL_LOWORDERFEE_FEE', - 'MODULE_ORDER_TOTAL_LOWORDERFEE_DESTINATION', - 'MODULE_ORDER_TOTAL_LOWORDERFEE_TAX_CLASS'); - } - - return $this->_keys; - } + return $this->_keys; } -?> +} +?> \ No newline at end of file diff --git a/catalog/admin/includes/modules/order_total/shipping.php b/catalog/admin/includes/modules/order_total/shipping.php index 0c0328960..8562f877d 100644 --- a/catalog/admin/includes/modules/order_total/shipping.php +++ b/catalog/admin/includes/modules/order_total/shipping.php @@ -1,60 +1,55 @@ _title = $lC_Language->get('order_total_shipping_title'); + $this->_description = $lC_Language->get('order_total_shipping_description'); + $this->_status = (defined('MODULE_ORDER_TOTAL_SHIPPING_STATUS') && (MODULE_ORDER_TOTAL_SHIPPING_STATUS == 'true') ? true : false); + $this->_sort_order = (defined('MODULE_ORDER_TOTAL_SHIPPING_SORT_ORDER') ? MODULE_ORDER_TOTAL_SHIPPING_SORT_ORDER : null); + } - class lC_OrderTotal_shipping extends lC_Modules_order_total_Admin { - var $_title, - $_code = 'shipping', - $_author_name = 'LoadedCommerce', - $_author_www = 'http://www.loadedcommerce.com', - $_status = false, - $_sort_order; - - public function lC_OrderTotal_shipping() { - global $lC_Language, $lC_ShoppingCart; - - $this->_title = $lC_Language->get('order_total_shipping_title'); - $this->_description = $lC_Language->get('order_total_shipping_description'); - $this->_status = (defined('MODULE_ORDER_TOTAL_SHIPPING_STATUS') && (MODULE_ORDER_TOTAL_SHIPPING_STATUS == 'true') ? true : false); - $this->_sort_order = (defined('MODULE_ORDER_TOTAL_SHIPPING_SORT_ORDER') ? MODULE_ORDER_TOTAL_SHIPPING_SORT_ORDER : null); - } + public function isInstalled() { + return (bool)defined('MODULE_ORDER_TOTAL_SHIPPING_STATUS'); + } - public function isInstalled() { - return (bool)defined('MODULE_ORDER_TOTAL_SHIPPING_STATUS'); - } + public function install() { + global $lC_Database; - public function install() { - global $lC_Database; + $lC_Database->simpleQuery("insert ignore into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) values ('Display Shipping', 'MODULE_ORDER_TOTAL_SHIPPING_STATUS', 'true', 'Do you want to display the order shipping cost?', '6', '1', 'lc_cfg_set_boolean_value(array(\'true\', \'false\'))', now())"); + $lC_Database->simpleQuery("insert ignore into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Sort Order', 'MODULE_ORDER_TOTAL_SHIPPING_SORT_ORDER', '200', 'Sort order of display.', '6', '2', now())"); + $lC_Database->simpleQuery("insert ignore into " . TABLE_TEMPLATES_BOXES . " (title, code, author_name, author_www, modules_group) values ('Shipping', 'shipping', 'LoadedComerce', 'http://www.loadedcommerce.com', 'order_total')"); + } - $lC_Database->simpleQuery("insert ignore into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) values ('Display Shipping', 'MODULE_ORDER_TOTAL_SHIPPING_STATUS', 'true', 'Do you want to display the order shipping cost?', '6', '1', 'lc_cfg_set_boolean_value(array(\'true\', \'false\'))', now())"); - $lC_Database->simpleQuery("insert ignore into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Sort Order', 'MODULE_ORDER_TOTAL_SHIPPING_SORT_ORDER', '200', 'Sort order of display.', '6', '2', now())"); - $lC_Database->simpleQuery("insert ignore into " . TABLE_TEMPLATES_BOXES . " (title, code, author_name, author_www, modules_group) values ('Shipping', 'shipping', 'LoadedComerce', 'http://www.loadedcommerce.com', 'order_total')"); - } + public function remove() { + global $lC_Database; - public function remove() { - global $lC_Database; + $lC_Database->simpleQuery("delete from " . TABLE_CONFIGURATION . " where configuration_key in ('" . implode("', '", $this->getKeys()) . "')"); + $lC_Database->simpleQuery("delete from " . TABLE_TEMPLATES_BOXES . " where code = 'shipping'"); + } - $lC_Database->simpleQuery("delete from " . TABLE_CONFIGURATION . " where configuration_key in ('" . implode("', '", $this->getKeys()) . "')"); - $lC_Database->simpleQuery("delete from " . TABLE_TEMPLATES_BOXES . " where code = 'shipping'"); + public function getKeys() { + if (!isset($this->_keys)) { + $this->_keys = array('MODULE_ORDER_TOTAL_SHIPPING_STATUS', + 'MODULE_ORDER_TOTAL_SHIPPING_SORT_ORDER'); } - public function getKeys() { - if (!isset($this->_keys)) { - $this->_keys = array('MODULE_ORDER_TOTAL_SHIPPING_STATUS', - 'MODULE_ORDER_TOTAL_SHIPPING_SORT_ORDER'); - } - - return $this->_keys; - } + return $this->_keys; } +} ?> \ No newline at end of file diff --git a/catalog/admin/includes/modules/order_total/sub_total.php b/catalog/admin/includes/modules/order_total/sub_total.php index 1973f1f0b..b3412e01e 100644 --- a/catalog/admin/includes/modules/order_total/sub_total.php +++ b/catalog/admin/includes/modules/order_total/sub_total.php @@ -1,60 +1,55 @@ _title = $lC_Language->get('order_total_subtotal_title'); - $this->_description = $lC_Language->get('order_total_subtotal_description'); - $this->_status = (defined('MODULE_ORDER_TOTAL_SUBTOTAL_STATUS') && (MODULE_ORDER_TOTAL_SUBTOTAL_STATUS == 'true') ? true : false); - $this->_sort_order = (defined('MODULE_ORDER_TOTAL_SUBTOTAL_SORT_ORDER') ? MODULE_ORDER_TOTAL_SUBTOTAL_SORT_ORDER : null); - } - - public function isInstalled() { - return (bool)defined('MODULE_ORDER_TOTAL_SUBTOTAL_STATUS'); - } +class lC_OrderTotal_sub_total extends lC_Modules_order_total_Admin { + var $_title, + $_code = 'sub_total', + $_author_name = 'LoadedCommerce', + $_author_www = 'http://www.loadedcommerce.com', + $_status = false, + $_sort_order; + + public function lC_OrderTotal_sub_total() { + global $lC_Language; + + $this->_title = $lC_Language->get('order_total_subtotal_title'); + $this->_description = $lC_Language->get('order_total_subtotal_description'); + $this->_status = (defined('MODULE_ORDER_TOTAL_SUBTOTAL_STATUS') && (MODULE_ORDER_TOTAL_SUBTOTAL_STATUS == 'true') ? true : false); + $this->_sort_order = (defined('MODULE_ORDER_TOTAL_SUBTOTAL_SORT_ORDER') ? MODULE_ORDER_TOTAL_SUBTOTAL_SORT_ORDER : null); + } - public function install() { - global $lC_Database; + public function isInstalled() { + return (bool)defined('MODULE_ORDER_TOTAL_SUBTOTAL_STATUS'); + } - $lC_Database->simpleQuery("insert ignore into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) values ('Display Sub-Total', 'MODULE_ORDER_TOTAL_SUBTOTAL_STATUS', 'true', 'Do you want to display the order sub-total cost?', '6', '1', 'lc_cfg_set_boolean_value(array(\'true\', \'false\'))', now())"); - $lC_Database->simpleQuery("insert ignore into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Sort Order', 'MODULE_ORDER_TOTAL_SUBTOTAL_SORT_ORDER', '100', 'Sort order of display.', '6', '2', now())"); - $lC_Database->simpleQuery("insert ignore into " . TABLE_TEMPLATES_BOXES . " (title, code, author_name, author_www, modules_group) values ('Sub Total', 'sub_total', 'Loaded Commerce', 'http://www.loadedcommerce.com', 'order_total')"); - } + public function install() { + global $lC_Database; - public function remove() { - global $lC_Database; + $lC_Database->simpleQuery("insert ignore into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) values ('Display Sub-Total', 'MODULE_ORDER_TOTAL_SUBTOTAL_STATUS', 'true', 'Do you want to display the order sub-total cost?', '6', '1', 'lc_cfg_set_boolean_value(array(\'true\', \'false\'))', now())"); + $lC_Database->simpleQuery("insert ignore into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Sort Order', 'MODULE_ORDER_TOTAL_SUBTOTAL_SORT_ORDER', '100', 'Sort order of display.', '6', '2', now())"); + $lC_Database->simpleQuery("insert ignore into " . TABLE_TEMPLATES_BOXES . " (title, code, author_name, author_www, modules_group) values ('Sub Total', 'sub_total', 'Loaded Commerce', 'http://www.loadedcommerce.com', 'order_total')"); + } - $lC_Database->simpleQuery("delete from " . TABLE_CONFIGURATION . " where configuration_key in ('" . implode("', '", $this->getKeys()) . "')"); - $lC_Database->simpleQuery("delete from " . TABLE_TEMPLATES_BOXES . " where code = 'sub_total'"); - } + public function remove() { + global $lC_Database; - public function getKeys() { - if (!isset($this->_keys)) { - $this->_keys = array('MODULE_ORDER_TOTAL_SUBTOTAL_STATUS', - 'MODULE_ORDER_TOTAL_SUBTOTAL_SORT_ORDER'); - } + $lC_Database->simpleQuery("delete from " . TABLE_CONFIGURATION . " where configuration_key in ('" . implode("', '", $this->getKeys()) . "')"); + $lC_Database->simpleQuery("delete from " . TABLE_TEMPLATES_BOXES . " where code = 'sub_total'"); + } - return $this->_keys; + public function getKeys() { + if (!isset($this->_keys)) { + $this->_keys = array('MODULE_ORDER_TOTAL_SUBTOTAL_STATUS', + 'MODULE_ORDER_TOTAL_SUBTOTAL_SORT_ORDER'); } + + return $this->_keys; } +} ?> \ No newline at end of file diff --git a/catalog/admin/includes/modules/order_total/tax.php b/catalog/admin/includes/modules/order_total/tax.php index c59eae6e5..6b56ee03a 100644 --- a/catalog/admin/includes/modules/order_total/tax.php +++ b/catalog/admin/includes/modules/order_total/tax.php @@ -1,60 +1,55 @@ _title = $lC_Language->get('order_total_tax_title'); + $this->_description = $lC_Language->get('order_total_tax_description'); + $this->_status = (defined('MODULE_ORDER_TOTAL_TAX_STATUS') && (MODULE_ORDER_TOTAL_TAX_STATUS == 'true') ? true : false); + $this->_sort_order = (defined('MODULE_ORDER_TOTAL_TAX_SORT_ORDER') ? MODULE_ORDER_TOTAL_TAX_SORT_ORDER : null); + } - class lC_OrderTotal_tax extends lC_Modules_order_total_Admin { - var $_title, - $_code = 'tax', - $_author_name = 'LoadedCommerce', - $_author_www = 'http://www.loadedcommerce.com', - $_status = false, - $_sort_order; - - public function lC_OrderTotal_tax() { - global $lC_Language; - - $this->_title = $lC_Language->get('order_total_tax_title'); - $this->_description = $lC_Language->get('order_total_tax_description'); - $this->_status = (defined('MODULE_ORDER_TOTAL_TAX_STATUS') && (MODULE_ORDER_TOTAL_TAX_STATUS == 'true') ? true : false); - $this->_sort_order = (defined('MODULE_ORDER_TOTAL_TAX_SORT_ORDER') ? MODULE_ORDER_TOTAL_TAX_SORT_ORDER : null); - } + public function isInstalled() { + return (bool)defined('MODULE_ORDER_TOTAL_TAX_STATUS'); + } - public function isInstalled() { - return (bool)defined('MODULE_ORDER_TOTAL_TAX_STATUS'); - } + public function install() { + global $lC_Database; - public function install() { - global $lC_Database; + $lC_Database->simpleQuery("insert ignore into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) values ('Display Tax', 'MODULE_ORDER_TOTAL_TAX_STATUS', 'true', 'Do you want to display the order tax value?', '6', '1', 'lc_cfg_set_boolean_value(array(\'true\', \'false\'))', now())"); + $lC_Database->simpleQuery("insert ignore into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Sort Order', 'MODULE_ORDER_TOTAL_TAX_SORT_ORDER', '500', 'Sort order of display.', '6', '2', now())"); + $lC_Database->simpleQuery("insert ignore into " . TABLE_TEMPLATES_BOXES . " (title, code, author_name, author_www, modules_group) values ('Tax', 'tax', 'LoadedComerce', 'http://www.loadedcommerce.com', 'order_total')"); + } - $lC_Database->simpleQuery("insert ignore into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) values ('Display Tax', 'MODULE_ORDER_TOTAL_TAX_STATUS', 'true', 'Do you want to display the order tax value?', '6', '1', 'lc_cfg_set_boolean_value(array(\'true\', \'false\'))', now())"); - $lC_Database->simpleQuery("insert ignore into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Sort Order', 'MODULE_ORDER_TOTAL_TAX_SORT_ORDER', '500', 'Sort order of display.', '6', '2', now())"); - $lC_Database->simpleQuery("insert ignore into " . TABLE_TEMPLATES_BOXES . " (title, code, author_name, author_www, modules_group) values ('Tax', 'tax', 'LoadedComerce', 'http://www.loadedcommerce.com', 'order_total')"); - } + public function remove() { + global $lC_Database; - public function remove() { - global $lC_Database; + $lC_Database->simpleQuery("delete from " . TABLE_CONFIGURATION . " where configuration_key in ('" . implode("', '", $this->getKeys()) . "')"); + $lC_Database->simpleQuery("delete from " . TABLE_TEMPLATES_BOXES . " where code = 'tax'"); + } - $lC_Database->simpleQuery("delete from " . TABLE_CONFIGURATION . " where configuration_key in ('" . implode("', '", $this->getKeys()) . "')"); - $lC_Database->simpleQuery("delete from " . TABLE_TEMPLATES_BOXES . " where code = 'tax'"); + public function getKeys() { + if (!isset($this->_keys)) { + $this->_keys = array('MODULE_ORDER_TOTAL_TAX_STATUS', + 'MODULE_ORDER_TOTAL_TAX_SORT_ORDER'); } - public function getKeys() { - if (!isset($this->_keys)) { - $this->_keys = array('MODULE_ORDER_TOTAL_TAX_STATUS', - 'MODULE_ORDER_TOTAL_TAX_SORT_ORDER'); - } - - return $this->_keys; - } + return $this->_keys; } +} ?> \ No newline at end of file diff --git a/catalog/admin/includes/modules/order_total/total.php b/catalog/admin/includes/modules/order_total/total.php index 15dd101f7..6bb4c2881 100644 --- a/catalog/admin/includes/modules/order_total/total.php +++ b/catalog/admin/includes/modules/order_total/total.php @@ -1,60 +1,55 @@ _title = $lC_Language->get('order_total_total_title'); + $this->_description = $lC_Language->get('order_total_total_description'); + $this->_status = (defined('MODULE_ORDER_TOTAL_TOTAL_STATUS') && (MODULE_ORDER_TOTAL_TOTAL_STATUS == 'true') ? true : false); + $this->_sort_order = (defined('MODULE_ORDER_TOTAL_TOTAL_SORT_ORDER') ? MODULE_ORDER_TOTAL_TOTAL_SORT_ORDER : null); + } - class lC_OrderTotal_total extends lC_Modules_order_total_Admin { - var $_title, - $_code = 'total', - $_author_name = 'LoadedCommerce', - $_author_www = 'http://www.loadedcommerce.com', - $_status = false, - $_sort_order; - - public function lC_OrderTotal_total() { - global $lC_Language; - - $this->_title = $lC_Language->get('order_total_total_title'); - $this->_description = $lC_Language->get('order_total_total_description'); - $this->_status = (defined('MODULE_ORDER_TOTAL_TOTAL_STATUS') && (MODULE_ORDER_TOTAL_TOTAL_STATUS == 'true') ? true : false); - $this->_sort_order = (defined('MODULE_ORDER_TOTAL_TOTAL_SORT_ORDER') ? MODULE_ORDER_TOTAL_TOTAL_SORT_ORDER : null); - } + public function isInstalled() { + return (bool)defined('MODULE_ORDER_TOTAL_TOTAL_STATUS'); + } - public function isInstalled() { - return (bool)defined('MODULE_ORDER_TOTAL_TOTAL_STATUS'); - } + public function install() { + global $lC_Database; - public function install() { - global $lC_Database; + $lC_Database->simpleQuery("insert ignore into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) values ('Display Total', 'MODULE_ORDER_TOTAL_TOTAL_STATUS', 'true', 'Do you want to display the total order value?', '6', '1', 'lc_cfg_set_boolean_value(array(\'true\', \'false\'))', now())"); + $lC_Database->simpleQuery("insert ignore into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Sort Order', 'MODULE_ORDER_TOTAL_TOTAL_SORT_ORDER', '600', 'Sort order of display.', '6', '2', now())"); + $lC_Database->simpleQuery("insert ignore into " . TABLE_TEMPLATES_BOXES . " (title, code, author_name, author_www, modules_group) values ('Total', 'total', 'LoadedComerce', 'http://www.loadedcommerce.com', 'order_total')"); + } - $lC_Database->simpleQuery("insert ignore into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) values ('Display Total', 'MODULE_ORDER_TOTAL_TOTAL_STATUS', 'true', 'Do you want to display the total order value?', '6', '1', 'lc_cfg_set_boolean_value(array(\'true\', \'false\'))', now())"); - $lC_Database->simpleQuery("insert ignore into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Sort Order', 'MODULE_ORDER_TOTAL_TOTAL_SORT_ORDER', '600', 'Sort order of display.', '6', '2', now())"); - $lC_Database->simpleQuery("insert ignore into " . TABLE_TEMPLATES_BOXES . " (title, code, author_name, author_www, modules_group) values ('Total', 'total', 'LoadedComerce', 'http://www.loadedcommerce.com', 'order_total')"); - } + public function remove() { + global $lC_Database; - public function remove() { - global $lC_Database; + $lC_Database->simpleQuery("delete from " . TABLE_CONFIGURATION . " where configuration_key in ('" . implode("', '", $this->getKeys()) . "')"); + $lC_Database->simpleQuery("delete from " . TABLE_TEMPLATES_BOXES . " where code = 'total'"); + } - $lC_Database->simpleQuery("delete from " . TABLE_CONFIGURATION . " where configuration_key in ('" . implode("', '", $this->getKeys()) . "')"); - $lC_Database->simpleQuery("delete from " . TABLE_TEMPLATES_BOXES . " where code = 'total'"); + public function getKeys() { + if (!isset($this->_keys)) { + $this->_keys = array('MODULE_ORDER_TOTAL_TOTAL_STATUS', + 'MODULE_ORDER_TOTAL_TOTAL_SORT_ORDER'); } - public function getKeys() { - if (!isset($this->_keys)) { - $this->_keys = array('MODULE_ORDER_TOTAL_TOTAL_STATUS', - 'MODULE_ORDER_TOTAL_TOTAL_SORT_ORDER'); - } - - return $this->_keys; - } + return $this->_keys; } +} ?> \ No newline at end of file diff --git a/catalog/admin/includes/modules/product_attributes/date_available.php b/catalog/admin/includes/modules/product_attributes/date_available.php index 91bbd0a14..fd688211d 100644 --- a/catalog/admin/includes/modules/product_attributes/date_available.php +++ b/catalog/admin/includes/modules/product_attributes/date_available.php @@ -1,15 +1,11 @@ loadIniFile('modules/services/banner.php'); + $lC_Language->loadIniFile('modules/services/banner.php'); - $this->title = $lC_Language->get('services_banner_title'); - $this->description = $lC_Language->get('services_banner_description'); - } + $this->title = $lC_Language->get('services_banner_title'); + $this->description = $lC_Language->get('services_banner_description'); + } - function install() { - global $lC_Database; + public function install() { + global $lC_Database; - $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_function, set_function, date_added) VALUES ('Display Duplicate Banners', 'SERVICE_BANNER_SHOW_DUPLICATE', '-1', 'Show duplicate banners in the same banner group on the same page?', '6', '0', 'lc_cfg_use_get_boolean_value', 'lc_cfg_set_boolean_value(array(1, -1))', now())"); - } + $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_public function, set_public function, date_added) VALUES ('Display Duplicate Banners', 'SERVICE_BANNER_SHOW_DUPLICATE', '-1', 'Show duplicate banners in the same banner group on the same page?', '6', '0', 'lc_cfg_use_get_boolean_value', 'lc_cfg_set_boolean_value(array(1, -1))', now())"); + } - function remove() { - global $lC_Database; + public function remove() { + global $lC_Database; - $lC_Database->simpleQuery("delete from " . TABLE_CONFIGURATION . " where configuration_key in ('" . implode("', '", $this->keys()) . "')"); - } + $lC_Database->simpleQuery("delete from " . TABLE_CONFIGURATION . " where configuration_key in ('" . implode("', '", $this->keys()) . "')"); + } - function keys() { - return array('SERVICE_BANNER_SHOW_DUPLICATE'); - } + public function keys() { + return array('SERVICE_BANNER_SHOW_DUPLICATE'); } -?> +} +?> \ No newline at end of file diff --git a/catalog/admin/includes/modules/services/breadcrumb.php b/catalog/admin/includes/modules/services/breadcrumb.php index 5a848ef3c..9e062b36b 100644 --- a/catalog/admin/includes/modules/services/breadcrumb.php +++ b/catalog/admin/includes/modules/services/breadcrumb.php @@ -1,43 +1,38 @@ loadIniFile('modules/services/breadcrumb.php'); + $lC_Language->loadIniFile('modules/services/breadcrumb.php'); - $this->title = $lC_Language->get('services_breadcrumb_title'); - $this->description = $lC_Language->get('services_breadcrumb_description'); - } + $this->title = $lC_Language->get('services_breadcrumb_title'); + $this->description = $lC_Language->get('services_breadcrumb_description'); + } - function install() { - return false; - } + public function install() { + return false; + } - function remove() { - return false; - } + public function remove() { + return false; + } - function keys() { - return false; - } + public function keys() { + return false; } +} ?> \ No newline at end of file diff --git a/catalog/admin/includes/modules/services/category_path.php b/catalog/admin/includes/modules/services/category_path.php index 4ca27e3b3..489ae2fc3 100644 --- a/catalog/admin/includes/modules/services/category_path.php +++ b/catalog/admin/includes/modules/services/category_path.php @@ -1,47 +1,42 @@ loadIniFile('modules/services/category_path.php'); + $lC_Language->loadIniFile('modules/services/category_path.php'); - $this->title = $lC_Language->get('services_category_path_title'); - $this->description = $lC_Language->get('services_category_path_description'); - } + $this->title = $lC_Language->get('services_category_path_title'); + $this->description = $lC_Language->get('services_category_path_description'); + } - function install() { - global $lC_Database; + public function install() { + global $lC_Database; - $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_function, set_function, date_added) values ('Calculate Number Of Products In Each Category', 'SERVICES_CATEGORY_PATH_CALCULATE_PRODUCT_COUNT', '1', 'Recursively calculate how many products are in each category.', '6', '0', 'lc_cfg_use_get_boolean_value', 'lc_cfg_set_boolean_value(array(1, -1))', now())"); - } + $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_public function, set_public function, date_added) values ('Calculate Number Of Products In Each Category', 'SERVICES_CATEGORY_PATH_CALCULATE_PRODUCT_COUNT', '1', 'Recursively calculate how many products are in each category.', '6', '0', 'lc_cfg_use_get_boolean_value', 'lc_cfg_set_boolean_value(array(1, -1))', now())"); + } - function remove() { - global $lC_Database; + public function remove() { + global $lC_Database; - $lC_Database->simpleQuery("delete from " . TABLE_CONFIGURATION . " where configuration_key in ('" . implode("', '", $this->keys()) . "')"); - } + $lC_Database->simpleQuery("delete from " . TABLE_CONFIGURATION . " where configuration_key in ('" . implode("', '", $this->keys()) . "')"); + } - function keys() { - return array('SERVICES_CATEGORY_PATH_CALCULATE_PRODUCT_COUNT'); - } + public function keys() { + return array('SERVICES_CATEGORY_PATH_CALCULATE_PRODUCT_COUNT'); } -?> +} +?> \ No newline at end of file diff --git a/catalog/admin/includes/modules/services/core.php b/catalog/admin/includes/modules/services/core.php index 417c463f1..1086b5917 100644 --- a/catalog/admin/includes/modules/services/core.php +++ b/catalog/admin/includes/modules/services/core.php @@ -1,43 +1,38 @@ loadIniFile('modules/services/core.php'); + $lC_Language->loadIniFile('modules/services/core.php'); - $this->title = $lC_Language->get('services_core_title'); - $this->description = $lC_Language->get('services_core_description'); - } + $this->title = $lC_Language->get('services_core_title'); + $this->description = $lC_Language->get('services_core_description'); + } - function install() { - return false; - } + public function install() { + return false; + } - function remove() { - return false; - } + public function remove() { + return false; + } - function keys() { - return false; - } + public function keys() { + return false; } +} ?> \ No newline at end of file diff --git a/catalog/admin/includes/modules/services/coupons.php b/catalog/admin/includes/modules/services/coupons.php index 7ad79b196..756e8c9fd 100644 --- a/catalog/admin/includes/modules/services/coupons.php +++ b/catalog/admin/includes/modules/services/coupons.php @@ -1,15 +1,11 @@ loadIniFile('modules/services/currencies.php'); + $lC_Language->loadIniFile('modules/services/currencies.php'); - $this->title = $lC_Language->get('services_currencies_title'); - $this->description = $lC_Language->get('services_currencies_description'); - } + $this->title = $lC_Language->get('services_currencies_title'); + $this->description = $lC_Language->get('services_currencies_description'); + } - function install() { - global $lC_Database; + public function install() { + global $lC_Database; - $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_function, set_function, date_added) VALUES ('Use Default Language Currency', 'USE_DEFAULT_LANGUAGE_CURRENCY', '-1', 'Automatically use the currency set with the language (eg, German->Euro).', '6', '0', 'lc_cfg_use_get_boolean_value', 'lc_cfg_set_boolean_value(array(1, -1))', now())"); - } + $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_public function, set_public function, date_added) VALUES ('Use Default Language Currency', 'USE_DEFAULT_LANGUAGE_CURRENCY', '-1', 'Automatically use the currency set with the language (eg, German->Euro).', '6', '0', 'lc_cfg_use_get_boolean_value', 'lc_cfg_set_boolean_value(array(1, -1))', now())"); + } - function remove() { - global $lC_Database; + public function remove() { + global $lC_Database; - $lC_Database->simpleQuery("delete from " . TABLE_CONFIGURATION . " where configuration_key in ('" . implode("', '", $this->keys()) . "')"); - } + $lC_Database->simpleQuery("delete from " . TABLE_CONFIGURATION . " where configuration_key in ('" . implode("', '", $this->keys()) . "')"); + } - function keys() { - return array('USE_DEFAULT_LANGUAGE_CURRENCY'); - } + public function keys() { + return array('USE_DEFAULT_LANGUAGE_CURRENCY'); } +} ?> \ No newline at end of file diff --git a/catalog/admin/includes/modules/services/debug.php b/catalog/admin/includes/modules/services/debug.php index be60352a2..f867751e7 100644 --- a/catalog/admin/includes/modules/services/debug.php +++ b/catalog/admin/includes/modules/services/debug.php @@ -1,66 +1,61 @@ loadIniFile('modules/services/debug.php'); + $lC_Language->loadIniFile('modules/services/debug.php'); - $this->title = $lC_Language->get('services_debug_title'); - $this->description = $lC_Language->get('services_debug_description'); - } - - function install() { - global $lC_Database; + $this->title = $lC_Language->get('services_debug_title'); + $this->description = $lC_Language->get('services_debug_description'); + } - $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Page Execution Time Log File', 'SERVICE_DEBUG_EXECUTION_TIME_LOG', '', 'Location of the page execution time log file (eg, /www/log/page_parse.log).', '6', '0', now())"); - $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_function, set_function, date_added) VALUES ('Show The Page Execution Time', 'SERVICE_DEBUG_EXECUTION_DISPLAY', '1', 'Show the page execution time.', '6', '0', 'lc_cfg_use_get_boolean_value', 'lc_cfg_set_boolean_value(array(1, -1))', now())"); - $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_function, set_function, date_added) VALUES ('Log Database Queries', 'SERVICE_DEBUG_LOG_DB_QUERIES', '-1', 'Log all database queries in the page execution time log file.', '6', '0', 'lc_cfg_use_get_boolean_value', 'lc_cfg_set_boolean_value(array(1, -1))', now())"); - $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_function, set_function, date_added) VALUES ('Show Database Queries', 'SERVICE_DEBUG_OUTPUT_DB_QUERIES', '-1', 'Show all database queries made.', '6', '0', 'lc_cfg_use_get_boolean_value', 'lc_cfg_set_boolean_value(array(1, -1))', now())"); - $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_function, set_function, date_added) values ('Check Language Locale', 'SERVICE_DEBUG_CHECK_LOCALE', '1', 'Show a warning message if the set language locale does not exist on the server.', '6', '0', 'lc_cfg_use_get_boolean_value', 'lc_cfg_set_boolean_value(array(1, -1))', now())"); - $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_function, set_function, date_added) VALUES ('Check Installation Module', 'SERVICE_DEBUG_CHECK_INSTALLATION_MODULE', '1', 'Show a warning message if the installation module exists.', '6', '0', 'lc_cfg_use_get_boolean_value', 'lc_cfg_set_boolean_value(array(1, -1))', now())"); - $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_function, set_function, date_added) VALUES ('Check Configuration File', 'SERVICE_DEBUG_CHECK_CONFIGURATION', '1', 'Show a warning if the configuration file is writeable.', '6', '0', 'lc_cfg_use_get_boolean_value', 'lc_cfg_set_boolean_value(array(1, -1))', now())"); - $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_function, set_function, date_added) VALUES ('Check Sessions Directory', 'SERVICE_DEBUG_CHECK_SESSION_DIRECTORY', '1', 'Show a warning if the file-based session directory does not exist.', '6', '0', 'lc_cfg_use_get_boolean_value', 'lc_cfg_set_boolean_value(array(1, -1))', now())"); - $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_function, set_function, date_added) VALUES ('Check Sessions Auto Start', 'SERVICE_DEBUG_CHECK_SESSION_AUTOSTART', '1', 'Show a warning if PHP is configured to automatically start sessions.', '6', '0', 'lc_cfg_use_get_boolean_value', 'lc_cfg_set_boolean_value(array(1, -1))', now())"); - $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_function, set_function, date_added) VALUES ('Check Download Directory', 'SERVICE_DEBUG_CHECK_DOWNLOAD_DIRECTORY', '1', 'Show a warning if the digital product download directory does not exist.', '6', '0', 'lc_cfg_use_get_boolean_value', 'lc_cfg_set_boolean_value(array(1, -1))', now())"); - } + public function install() { + global $lC_Database; + + $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Page Execution Time Log File', 'SERVICE_DEBUG_EXECUTION_TIME_LOG', '', 'Location of the page execution time log file (eg, /www/log/page_parse.log).', '6', '0', now())"); + $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_public function, set_public function, date_added) VALUES ('Show The Page Execution Time', 'SERVICE_DEBUG_EXECUTION_DISPLAY', '1', 'Show the page execution time.', '6', '0', 'lc_cfg_use_get_boolean_value', 'lc_cfg_set_boolean_value(array(1, -1))', now())"); + $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_public function, set_public function, date_added) VALUES ('Log Database Queries', 'SERVICE_DEBUG_LOG_DB_QUERIES', '-1', 'Log all database queries in the page execution time log file.', '6', '0', 'lc_cfg_use_get_boolean_value', 'lc_cfg_set_boolean_value(array(1, -1))', now())"); + $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_public function, set_public function, date_added) VALUES ('Show Database Queries', 'SERVICE_DEBUG_OUTPUT_DB_QUERIES', '-1', 'Show all database queries made.', '6', '0', 'lc_cfg_use_get_boolean_value', 'lc_cfg_set_boolean_value(array(1, -1))', now())"); + $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_public function, set_public function, date_added) values ('Check Language Locale', 'SERVICE_DEBUG_CHECK_LOCALE', '1', 'Show a warning message if the set language locale does not exist on the server.', '6', '0', 'lc_cfg_use_get_boolean_value', 'lc_cfg_set_boolean_value(array(1, -1))', now())"); + $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_public function, set_public function, date_added) VALUES ('Check Installation Module', 'SERVICE_DEBUG_CHECK_INSTALLATION_MODULE', '1', 'Show a warning message if the installation module exists.', '6', '0', 'lc_cfg_use_get_boolean_value', 'lc_cfg_set_boolean_value(array(1, -1))', now())"); + $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_public function, set_public function, date_added) VALUES ('Check Configuration File', 'SERVICE_DEBUG_CHECK_CONFIGURATION', '1', 'Show a warning if the configuration file is writeable.', '6', '0', 'lc_cfg_use_get_boolean_value', 'lc_cfg_set_boolean_value(array(1, -1))', now())"); + $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_public function, set_public function, date_added) VALUES ('Check Sessions Directory', 'SERVICE_DEBUG_CHECK_SESSION_DIRECTORY', '1', 'Show a warning if the file-based session directory does not exist.', '6', '0', 'lc_cfg_use_get_boolean_value', 'lc_cfg_set_boolean_value(array(1, -1))', now())"); + $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_public function, set_public function, date_added) VALUES ('Check Sessions Auto Start', 'SERVICE_DEBUG_CHECK_SESSION_AUTOSTART', '1', 'Show a warning if PHP is configured to automatically start sessions.', '6', '0', 'lc_cfg_use_get_boolean_value', 'lc_cfg_set_boolean_value(array(1, -1))', now())"); + $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_public function, set_public function, date_added) VALUES ('Check Download Directory', 'SERVICE_DEBUG_CHECK_DOWNLOAD_DIRECTORY', '1', 'Show a warning if the digital product download directory does not exist.', '6', '0', 'lc_cfg_use_get_boolean_value', 'lc_cfg_set_boolean_value(array(1, -1))', now())"); + } - function remove() { - global $lC_Database; + public function remove() { + global $lC_Database; - $lC_Database->simpleQuery("delete from " . TABLE_CONFIGURATION . " where configuration_key in ('" . implode("', '", $this->keys()) . "')"); - } + $lC_Database->simpleQuery("delete from " . TABLE_CONFIGURATION . " where configuration_key in ('" . implode("', '", $this->keys()) . "')"); + } - function keys() { - return array('SERVICE_DEBUG_OUTPUT_DB_QUERIES', - 'SERVICE_DEBUG_LOG_DB_QUERIES', - 'SERVICE_DEBUG_EXECUTION_TIME_LOG', - 'SERVICE_DEBUG_EXECUTION_DISPLAY', - 'SERVICE_DEBUG_SHOW_DEVELOPMENT_WARNING', - 'SERVICE_DEBUG_CHECK_LOCALE', - 'SERVICE_DEBUG_CHECK_INSTALLATION_MODULE', - 'SERVICE_DEBUG_CHECK_CONFIGURATION', - 'SERVICE_DEBUG_CHECK_SESSION_DIRECTORY', - 'SERVICE_DEBUG_CHECK_SESSION_AUTOSTART', - 'SERVICE_DEBUG_CHECK_DOWNLOAD_DIRECTORY'); - } + public function keys() { + return array('SERVICE_DEBUG_OUTPUT_DB_QUERIES', + 'SERVICE_DEBUG_LOG_DB_QUERIES', + 'SERVICE_DEBUG_EXECUTION_TIME_LOG', + 'SERVICE_DEBUG_EXECUTION_DISPLAY', + 'SERVICE_DEBUG_SHOW_DEVELOPMENT_WARNING', + 'SERVICE_DEBUG_CHECK_LOCALE', + 'SERVICE_DEBUG_CHECK_INSTALLATION_MODULE', + 'SERVICE_DEBUG_CHECK_CONFIGURATION', + 'SERVICE_DEBUG_CHECK_SESSION_DIRECTORY', + 'SERVICE_DEBUG_CHECK_SESSION_AUTOSTART', + 'SERVICE_DEBUG_CHECK_DOWNLOAD_DIRECTORY'); } -?> +} +?> \ No newline at end of file diff --git a/catalog/admin/includes/modules/services/language.php b/catalog/admin/includes/modules/services/language.php index f66407bbc..ac8ea9037 100644 --- a/catalog/admin/includes/modules/services/language.php +++ b/catalog/admin/includes/modules/services/language.php @@ -1,43 +1,38 @@ loadIniFile('modules/services/language.php'); + $lC_Language->loadIniFile('modules/services/language.php'); - $this->title = $lC_Language->get('services_language_title'); - $this->description = $lC_Language->get('services_language_description'); - } + $this->title = $lC_Language->get('services_language_title'); + $this->description = $lC_Language->get('services_language_description'); + } - function install() { - return false; - } + public function install() { + return false; + } - function remove() { - return false; - } + public function remove() { + return false; + } - function keys() { - return false; - } + public function keys() { + return false; } +} ?> \ No newline at end of file diff --git a/catalog/admin/includes/modules/services/output_compression.php b/catalog/admin/includes/modules/services/output_compression.php index 83f1cabe0..98014a4cc 100644 --- a/catalog/admin/includes/modules/services/output_compression.php +++ b/catalog/admin/includes/modules/services/output_compression.php @@ -1,47 +1,42 @@ loadIniFile('modules/services/output_compression.php'); + $lC_Language->loadIniFile('modules/services/output_compression.php'); - $this->title = $lC_Language->get('services_output_compression_title'); - $this->description = $lC_Language->get('services_output_compression_description'); - } + $this->title = $lC_Language->get('services_output_compression_title'); + $this->description = $lC_Language->get('services_output_compression_description'); + } - function install() { - global $lC_Database; + public function install() { + global $lC_Database; - $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) values ('GZIP Compression Level', 'SERVICE_OUTPUT_COMPRESSION_GZIP_LEVEL', '5', 'Set the GZIP compression level to this value (0=min, 9=max).', '6', '0', 'lc_cfg_set_output_compression_pulldown_menu())', now())"); - } + $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_public function, date_added) values ('GZIP Compression Level', 'SERVICE_OUTPUT_COMPRESSION_GZIP_LEVEL', '5', 'Set the GZIP compression level to this value (0=min, 9=max).', '6', '0', 'lc_cfg_set_output_compression_pulldown_menu())', now())"); + } - function remove() { - global $lC_Database; + public function remove() { + global $lC_Database; - $lC_Database->simpleQuery("delete from " . TABLE_CONFIGURATION . " where configuration_key in ('" . implode("', '", $this->keys()) . "')"); - } + $lC_Database->simpleQuery("delete from " . TABLE_CONFIGURATION . " where configuration_key in ('" . implode("', '", $this->keys()) . "')"); + } - function keys() { - return array('SERVICE_OUTPUT_COMPRESSION_GZIP_LEVEL'); - } + public function keys() { + return array('SERVICE_OUTPUT_COMPRESSION_GZIP_LEVEL'); } -?> +} +?> \ No newline at end of file diff --git a/catalog/admin/includes/modules/services/recently_visited.php b/catalog/admin/includes/modules/services/recently_visited.php index 8eb135be5..6b7c97e2d 100644 --- a/catalog/admin/includes/modules/services/recently_visited.php +++ b/catalog/admin/includes/modules/services/recently_visited.php @@ -1,61 +1,56 @@ loadIniFile('modules/services/recently_visited.php'); - @author LoadedCommerce Team - @copyright (c) 2013 LoadedCommerce Team - @license http://loadedcommerce.com/license.html -*/ + $this->title = $lC_Language->get('services_recently_visited_title'); + $this->description = $lC_Language->get('services_recently_visited_description'); + } + + public function install() { + global $lC_Database; + + $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_public function, set_public function, date_added) VALUES ('Display latest products', 'SERVICE_RECENTLY_VISITED_SHOW_PRODUCTS', '1', 'Display recently visited products.', '6', '0', 'lc_cfg_use_get_boolean_value', 'lc_cfg_set_boolean_value(array(1, -1))', now())"); + $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_public function, set_public function, date_added) VALUES ('Display product images', 'SERVICE_RECENTLY_VISITED_SHOW_PRODUCT_IMAGES', '1', 'Display the product image.', '6', '0', 'lc_cfg_use_get_boolean_value', 'lc_cfg_set_boolean_value(array(1, -1))', now())"); + $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_public function, set_public function, date_added) VALUES ('Display product prices', 'SERVICE_RECENTLY_VISITED_SHOW_PRODUCT_PRICES', '1', 'Display the products price.', '6', '0', 'lc_cfg_use_get_boolean_value', 'lc_cfg_set_boolean_value(array(1, -1))', now())"); + $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Maximum products to show', 'SERVICE_RECENTLY_VISITED_MAX_PRODUCTS', '5', 'Maximum number of recently visited products to show', '6', '0', now())"); + $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_public function, set_public function, date_added) VALUES ('Display latest categories', 'SERVICE_RECENTLY_VISITED_SHOW_CATEGORIES', '1', 'Display recently visited categories.', '6', '0', 'lc_cfg_use_get_boolean_value', 'lc_cfg_set_boolean_value(array(1, -1))', now())"); + $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Maximum categories to show', 'SERVICE_RECENTLY_VISITED_MAX_CATEGORIES', '3', 'Mazimum number of recently visited categories to show', '6', '0', now())"); + $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_public function, set_public function, date_added) VALUES ('Display latest searches', 'SERVICE_RECENTLY_VISITED_SHOW_SEARCHES', '1', 'Show recent searches.', '6', '0', 'lc_cfg_use_get_boolean_value', 'lc_cfg_set_boolean_value(array(1, -1))', now())"); + $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Maximum searches to show', 'SERVICE_RECENTLY_VISITED_MAX_SEARCHES', '3', 'Mazimum number of recent searches to display', '6', '0', now())"); + } + + public function remove() { + global $lC_Database; + + $lC_Database->simpleQuery("delete from " . TABLE_CONFIGURATION . " where configuration_key in ('" . implode("', '", $this->keys()) . "')"); + } - class lC_Services_recently_visited_Admin { - var $title, - $description, - $uninstallable = true, - $depends = array('session', 'category_path'), - $precedes; - - function lC_Services_recently_visited_Admin() { - global $lC_Language; - - $lC_Language->loadIniFile('modules/services/recently_visited.php'); - - $this->title = $lC_Language->get('services_recently_visited_title'); - $this->description = $lC_Language->get('services_recently_visited_description'); - } - - function install() { - global $lC_Database; - - $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_function, set_function, date_added) VALUES ('Display latest products', 'SERVICE_RECENTLY_VISITED_SHOW_PRODUCTS', '1', 'Display recently visited products.', '6', '0', 'lc_cfg_use_get_boolean_value', 'lc_cfg_set_boolean_value(array(1, -1))', now())"); - $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_function, set_function, date_added) VALUES ('Display product images', 'SERVICE_RECENTLY_VISITED_SHOW_PRODUCT_IMAGES', '1', 'Display the product image.', '6', '0', 'lc_cfg_use_get_boolean_value', 'lc_cfg_set_boolean_value(array(1, -1))', now())"); - $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_function, set_function, date_added) VALUES ('Display product prices', 'SERVICE_RECENTLY_VISITED_SHOW_PRODUCT_PRICES', '1', 'Display the products price.', '6', '0', 'lc_cfg_use_get_boolean_value', 'lc_cfg_set_boolean_value(array(1, -1))', now())"); - $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Maximum products to show', 'SERVICE_RECENTLY_VISITED_MAX_PRODUCTS', '5', 'Maximum number of recently visited products to show', '6', '0', now())"); - $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_function, set_function, date_added) VALUES ('Display latest categories', 'SERVICE_RECENTLY_VISITED_SHOW_CATEGORIES', '1', 'Display recently visited categories.', '6', '0', 'lc_cfg_use_get_boolean_value', 'lc_cfg_set_boolean_value(array(1, -1))', now())"); - $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Maximum categories to show', 'SERVICE_RECENTLY_VISITED_MAX_CATEGORIES', '3', 'Mazimum number of recently visited categories to show', '6', '0', now())"); - $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_function, set_function, date_added) VALUES ('Display latest searches', 'SERVICE_RECENTLY_VISITED_SHOW_SEARCHES', '1', 'Show recent searches.', '6', '0', 'lc_cfg_use_get_boolean_value', 'lc_cfg_set_boolean_value(array(1, -1))', now())"); - $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Maximum searches to show', 'SERVICE_RECENTLY_VISITED_MAX_SEARCHES', '3', 'Mazimum number of recent searches to display', '6', '0', now())"); - } - - function remove() { - global $lC_Database; - - $lC_Database->simpleQuery("delete from " . TABLE_CONFIGURATION . " where configuration_key in ('" . implode("', '", $this->keys()) . "')"); - } - - function keys() { - return array('SERVICE_RECENTLY_VISITED_SHOW_PRODUCTS', - 'SERVICE_RECENTLY_VISITED_SHOW_PRODUCT_IMAGES', - 'SERVICE_RECENTLY_VISITED_SHOW_PRODUCT_PRICES', - 'SERVICE_RECENTLY_VISITED_MAX_PRODUCTS', - 'SERVICE_RECENTLY_VISITED_SHOW_CATEGORIES', - 'SERVICE_RECENTLY_VISITED_MAX_CATEGORIES', - 'SERVICE_RECENTLY_VISITED_SHOW_SEARCHES', - 'SERVICE_RECENTLY_VISITED_MAX_SEARCHES'); - } + public function keys() { + return array('SERVICE_RECENTLY_VISITED_SHOW_PRODUCTS', + 'SERVICE_RECENTLY_VISITED_SHOW_PRODUCT_IMAGES', + 'SERVICE_RECENTLY_VISITED_SHOW_PRODUCT_PRICES', + 'SERVICE_RECENTLY_VISITED_MAX_PRODUCTS', + 'SERVICE_RECENTLY_VISITED_SHOW_CATEGORIES', + 'SERVICE_RECENTLY_VISITED_MAX_CATEGORIES', + 'SERVICE_RECENTLY_VISITED_SHOW_SEARCHES', + 'SERVICE_RECENTLY_VISITED_MAX_SEARCHES'); } +} ?> \ No newline at end of file diff --git a/catalog/admin/includes/modules/services/reviews.php b/catalog/admin/includes/modules/services/reviews.php index 010dad31a..713db5429 100644 --- a/catalog/admin/includes/modules/services/reviews.php +++ b/catalog/admin/includes/modules/services/reviews.php @@ -1,51 +1,46 @@ loadIniFile('modules/services/reviews.php'); + $lC_Language->loadIniFile('modules/services/reviews.php'); - $this->title = $lC_Language->get('services_reviews_title'); - $this->description = $lC_Language->get('services_reviews_description'); - } + $this->title = $lC_Language->get('services_reviews_title'); + $this->description = $lC_Language->get('services_reviews_description'); + } - function install() { - global $lC_Database; + public function install() { + global $lC_Database; - $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('New Reviews', 'MAX_DISPLAY_NEW_REVIEWS', '6', 'Maximum number of new reviews to display', '6', '0', now())"); - $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) values ('Review Level', 'SERVICE_REVIEW_ENABLE_REVIEWS', '1', 'Customer level required to write a review.', '6', '0', 'lc_cfg_set_boolean_value(array(\'0\', \'1\', \'2\'))', now())"); - $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) values ('Moderate Reviews', 'SERVICE_REVIEW_ENABLE_MODERATION', '-1', 'Should reviews be approved by store admin.', '6', '0', 'lc_cfg_set_boolean_value(array(\'-1\', \'0\', \'1\'))', now())"); - } + $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('New Reviews', 'MAX_DISPLAY_NEW_REVIEWS', '6', 'Maximum number of new reviews to display', '6', '0', now())"); + $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_public function, date_added) values ('Review Level', 'SERVICE_REVIEW_ENABLE_REVIEWS', '1', 'Customer level required to write a review.', '6', '0', 'lc_cfg_set_boolean_value(array(\'0\', \'1\', \'2\'))', now())"); + $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_public function, date_added) values ('Moderate Reviews', 'SERVICE_REVIEW_ENABLE_MODERATION', '-1', 'Should reviews be approved by store admin.', '6', '0', 'lc_cfg_set_boolean_value(array(\'-1\', \'0\', \'1\'))', now())"); + } - function remove() { - global $lC_Database; + public function remove() { + global $lC_Database; - $lC_Database->simpleQuery("delete from " . TABLE_CONFIGURATION . " where configuration_key in ('" . implode("', '", $this->keys()) . "')"); - } + $lC_Database->simpleQuery("delete from " . TABLE_CONFIGURATION . " where configuration_key in ('" . implode("', '", $this->keys()) . "')"); + } - function keys() { - return array('MAX_DISPLAY_NEW_REVIEWS', - 'SERVICE_REVIEW_ENABLE_REVIEWS', - 'SERVICE_REVIEW_ENABLE_MODERATION'); - } + public function keys() { + return array('MAX_DISPLAY_NEW_REVIEWS', + 'SERVICE_REVIEW_ENABLE_REVIEWS', + 'SERVICE_REVIEW_ENABLE_MODERATION'); } +} ?> \ No newline at end of file diff --git a/catalog/admin/includes/modules/services/seo.php b/catalog/admin/includes/modules/services/seo.php index 4fd62c009..8c93e73ed 100644 --- a/catalog/admin/includes/modules/services/seo.php +++ b/catalog/admin/includes/modules/services/seo.php @@ -1,88 +1,83 @@ loadIniFile('modules/services/seo.php'); + $lC_Language->loadIniFile('modules/services/seo.php'); - $this->title = $lC_Language->get('services_seo_title'); - $this->description = $lC_Language->get('services_seo_description'); - } + $this->title = $lC_Language->get('services_seo_title'); + $this->description = $lC_Language->get('services_seo_description'); + } - function install() { - global $lC_Database; - - $exists = false; - - if ($handle = opendir(DIR_FS_CATALOG)) { - while (false !== ($entry = readdir($handle))) { - if ($entry == '.htaccess') { - $exists = true; - } - } - closedir($handle); + public function install() { + global $lC_Database; + + $exists = false; + + if ($handle = opendir(DIR_FS_CATALOG)) { + while (false !== ($entry = readdir($handle))) { + if ($entry == '.htaccess') { + $exists = true; + } } - - if ($exists == false) { - $file = file_get_contents(DIR_FS_CATALOG . 'dot.htaccess'); - $file = str_replace('RewriteBase /', 'RewriteBase ' . DIR_WS_HTTP_CATALOG, $file); - file_put_contents(DIR_FS_CATALOG . 'dot.htaccess', $file); - if (rename(DIR_FS_CATALOG . 'dot.htaccess', DIR_FS_CATALOG . '.htaccess')) { - } else { - return false; - } + closedir($handle); + } + + if ($exists == false) { + $file = file_get_contents(DIR_FS_CATALOG . 'dot.htaccess'); + $file = str_replace('RewriteBase /', 'RewriteBase ' . DIR_WS_HTTP_CATALOG, $file); + file_put_contents(DIR_FS_CATALOG . 'dot.htaccess', $file); + if (rename(DIR_FS_CATALOG . 'dot.htaccess', DIR_FS_CATALOG . '.htaccess')) { } else { return false; } - - $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_function, set_function, date_added) VALUES ('Add Category Parent Permalinks?', 'SERVICE_SEO_URL_ADD_CATEGORY_PARENT', '-1', 'Add each parent permalink to the url structure as you drill down into categories and products?', '6', '0', 'lc_cfg_use_get_boolean_value', 'lc_cfg_set_boolean_value(array(1, -1))', now())"); - - lC_Cache::clear('category_tree'); - lC_Cache::clear('templates'); + } else { + return false; } + + $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_public function, set_public function, date_added) VALUES ('Add Category Parent Permalinks?', 'SERVICE_SEO_URL_ADD_CATEGORY_PARENT', '-1', 'Add each parent permalink to the url structure as you drill down into categories and products?', '6', '0', 'lc_cfg_use_get_boolean_value', 'lc_cfg_set_boolean_value(array(1, -1))', now())"); + + lC_Cache::clear('category_tree'); + lC_Cache::clear('templates'); + } - function remove() { - global $lC_Database; - - if ($handle = opendir(DIR_FS_CATALOG)) { - while (false !== ($entry = readdir($handle))) { - if ($entry == '.htaccess') { - if (rename(DIR_FS_CATALOG . '.htaccess', DIR_FS_CATALOG . 'dot.htaccess')) { - } else { - return false; - } + public function remove() { + global $lC_Database; + + if ($handle = opendir(DIR_FS_CATALOG)) { + while (false !== ($entry = readdir($handle))) { + if ($entry == '.htaccess') { + if (rename(DIR_FS_CATALOG . '.htaccess', DIR_FS_CATALOG . 'dot.htaccess')) { + } else { + return false; } } - closedir($handle); } - - $lC_Database->simpleQuery("delete from " . TABLE_CONFIGURATION . " where configuration_key in ('" . implode("', '", $this->keys()) . "')"); - - lC_Cache::clear('category_tree'); - lC_Cache::clear('templates'); + closedir($handle); } - function keys() { - return array('SERVICE_SEO_URL_ADD_CATEGORY_PARENT'); - } + $lC_Database->simpleQuery("delete from " . TABLE_CONFIGURATION . " where configuration_key in ('" . implode("', '", $this->keys()) . "')"); + + lC_Cache::clear('category_tree'); + lC_Cache::clear('templates'); + } + + public function keys() { + return array('SERVICE_SEO_URL_ADD_CATEGORY_PARENT'); } +} ?> \ No newline at end of file diff --git a/catalog/admin/includes/modules/services/session.php b/catalog/admin/includes/modules/services/session.php index 637881641..72f8dee69 100644 --- a/catalog/admin/includes/modules/services/session.php +++ b/catalog/admin/includes/modules/services/session.php @@ -1,59 +1,54 @@ loadIniFile('modules/services/session.php'); - @author LoadedCommerce Team - @copyright (c) 2013 LoadedCommerce Team - @license http://loadedcommerce.com/license.html -*/ + $this->title = $lC_Language->get('services_session_title'); + $this->description = $lC_Language->get('services_session_description'); + } + + public function install() { + global $lC_Database; + + $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) VALUES ('Session Expiration Time', 'SERVICE_SESSION_EXPIRATION_TIME', '30', 'The time (in minutes) to keep sessions active for. A value of 0 means until the browser is closed.', '6', '0', now())"); + $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_public function, set_public function, date_added) VALUES ('Force Cookie Usage', 'SERVICE_SESSION_FORCE_COOKIE_USAGE', '-1', 'Only start a session when cookies are enabled.', '6', '0', 'lc_cfg_use_get_boolean_value', 'lc_cfg_set_boolean_value(array(1, -1))', now())"); + $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_public function, set_public function, date_added) VALUES ('Block Search Engine Spiders', 'SERVICE_SESSION_BLOCK_SPIDERS', '-1', 'Block search engine spider robots from starting a session.', '6', '0', 'lc_cfg_use_get_boolean_value', 'lc_cfg_set_boolean_value(array(1, -1))', now())"); + $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_public function, set_public function, date_added) VALUES ('Check SSL Session ID', 'SERVICE_SESSION_CHECK_SSL_SESSION_ID', '-1', 'Check the SSL_SESSION_ID on every secure HTTPS page request.', '6', '0', 'lc_cfg_use_get_boolean_value', 'lc_cfg_set_boolean_value(array(1, -1))', now())"); + $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_public function, set_public function, date_added) VALUES ('Check User Agent', 'SERVICE_SESSION_CHECK_USER_AGENT', '-1', 'Check the browser user agent on every page request.', '6', '0', 'lc_cfg_use_get_boolean_value', 'lc_cfg_set_boolean_value(array(1, -1))', now())"); + $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_public function, set_public function, date_added) VALUES ('Check IP Address', 'SERVICE_SESSION_CHECK_IP_ADDRESS', '-1', 'Check the IP address on every page request.', '6', '0', 'lc_cfg_use_get_boolean_value', 'lc_cfg_set_boolean_value(array(1, -1))', now())"); + $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_public function, set_public function, date_added) VALUES ('Regenerate Session ID', 'SERVICE_SESSION_REGENERATE_ID', '-1', 'Regenerate the session ID when a customer logs on or creates an account.', '6', '0', 'lc_cfg_use_get_boolean_value', 'lc_cfg_set_boolean_value(array(1, -1))', now())"); + } + + public function remove() { + global $lC_Database; + + $lC_Database->simpleQuery("delete from " . TABLE_CONFIGURATION . " where configuration_key in ('" . implode("', '", $this->keys()) . "')"); + } - class lC_Services_session_Admin { - var $title, - $description, - $uninstallable = false, - $depends, - $precedes; - - function lC_Services_session_Admin() { - global $lC_Language; - - $lC_Language->loadIniFile('modules/services/session.php'); - - $this->title = $lC_Language->get('services_session_title'); - $this->description = $lC_Language->get('services_session_description'); - } - - function install() { - global $lC_Database; - - $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) VALUES ('Session Expiration Time', 'SERVICE_SESSION_EXPIRATION_TIME', '30', 'The time (in minutes) to keep sessions active for. A value of 0 means until the browser is closed.', '6', '0', now())"); - $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_function, set_function, date_added) VALUES ('Force Cookie Usage', 'SERVICE_SESSION_FORCE_COOKIE_USAGE', '-1', 'Only start a session when cookies are enabled.', '6', '0', 'lc_cfg_use_get_boolean_value', 'lc_cfg_set_boolean_value(array(1, -1))', now())"); - $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_function, set_function, date_added) VALUES ('Block Search Engine Spiders', 'SERVICE_SESSION_BLOCK_SPIDERS', '-1', 'Block search engine spider robots from starting a session.', '6', '0', 'lc_cfg_use_get_boolean_value', 'lc_cfg_set_boolean_value(array(1, -1))', now())"); - $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_function, set_function, date_added) VALUES ('Check SSL Session ID', 'SERVICE_SESSION_CHECK_SSL_SESSION_ID', '-1', 'Check the SSL_SESSION_ID on every secure HTTPS page request.', '6', '0', 'lc_cfg_use_get_boolean_value', 'lc_cfg_set_boolean_value(array(1, -1))', now())"); - $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_function, set_function, date_added) VALUES ('Check User Agent', 'SERVICE_SESSION_CHECK_USER_AGENT', '-1', 'Check the browser user agent on every page request.', '6', '0', 'lc_cfg_use_get_boolean_value', 'lc_cfg_set_boolean_value(array(1, -1))', now())"); - $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_function, set_function, date_added) VALUES ('Check IP Address', 'SERVICE_SESSION_CHECK_IP_ADDRESS', '-1', 'Check the IP address on every page request.', '6', '0', 'lc_cfg_use_get_boolean_value', 'lc_cfg_set_boolean_value(array(1, -1))', now())"); - $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_function, set_function, date_added) VALUES ('Regenerate Session ID', 'SERVICE_SESSION_REGENERATE_ID', '-1', 'Regenerate the session ID when a customer logs on or creates an account.', '6', '0', 'lc_cfg_use_get_boolean_value', 'lc_cfg_set_boolean_value(array(1, -1))', now())"); - } - - function remove() { - global $lC_Database; - - $lC_Database->simpleQuery("delete from " . TABLE_CONFIGURATION . " where configuration_key in ('" . implode("', '", $this->keys()) . "')"); - } - - function keys() { - return array('SERVICE_SESSION_EXPIRATION_TIME', - 'SERVICE_SESSION_FORCE_COOKIE_USAGE', - 'SERVICE_SESSION_BLOCK_SPIDERS', - 'SERVICE_SESSION_CHECK_SSL_SESSION_ID', - 'SERVICE_SESSION_CHECK_USER_AGENT', - 'SERVICE_SESSION_CHECK_IP_ADDRESS', - 'SERVICE_SESSION_REGENERATE_ID'); - } + public function keys() { + return array('SERVICE_SESSION_EXPIRATION_TIME', + 'SERVICE_SESSION_FORCE_COOKIE_USAGE', + 'SERVICE_SESSION_BLOCK_SPIDERS', + 'SERVICE_SESSION_CHECK_SSL_SESSION_ID', + 'SERVICE_SESSION_CHECK_USER_AGENT', + 'SERVICE_SESSION_CHECK_IP_ADDRESS', + 'SERVICE_SESSION_REGENERATE_ID'); } +} ?> \ No newline at end of file diff --git a/catalog/admin/includes/modules/services/simple_counter.php b/catalog/admin/includes/modules/services/simple_counter.php index 2f4378465..8d2f32769 100644 --- a/catalog/admin/includes/modules/services/simple_counter.php +++ b/catalog/admin/includes/modules/services/simple_counter.php @@ -1,43 +1,38 @@ loadIniFile('modules/services/simple_counter.php'); + $lC_Language->loadIniFile('modules/services/simple_counter.php'); - $this->title = $lC_Language->get('services_simple_counter_title'); - $this->description = $lC_Language->get('services_simple_counter_description'); - } + $this->title = $lC_Language->get('services_simple_counter_title'); + $this->description = $lC_Language->get('services_simple_counter_description'); + } - function install() { - return false; - } + public function install() { + return false; + } - function remove() { - return false; - } + public function remove() { + return false; + } - function keys() { - return false; - } + public function keys() { + return false; } +} ?> \ No newline at end of file diff --git a/catalog/admin/includes/modules/services/specials.php b/catalog/admin/includes/modules/services/specials.php index 651b5580a..961115015 100644 --- a/catalog/admin/includes/modules/services/specials.php +++ b/catalog/admin/includes/modules/services/specials.php @@ -1,47 +1,42 @@ loadIniFile('modules/services/specials.php'); + $lC_Language->loadIniFile('modules/services/specials.php'); - $this->title = $lC_Language->get('services_specials_title'); - $this->description = $lC_Language->get('services_specials_description'); - } + $this->title = $lC_Language->get('services_specials_title'); + $this->description = $lC_Language->get('services_specials_description'); + } - function install() { - global $lC_Database; + public function install() { + global $lC_Database; - $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Number Of Specials To Display', 'MAX_DISPLAY_SPECIAL_PRODUCTS', '9', 'Maximum number of products on special to display', '6', '0', now())"); - } + $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Number Of Specials To Display', 'MAX_DISPLAY_SPECIAL_PRODUCTS', '9', 'Maximum number of products on special to display', '6', '0', now())"); + } - function remove() { - global $lC_Database; + public function remove() { + global $lC_Database; - $lC_Database->simpleQuery("delete from " . TABLE_CONFIGURATION . " where configuration_key in ('" . implode("', '", $this->keys()) . "')"); - } + $lC_Database->simpleQuery("delete from " . TABLE_CONFIGURATION . " where configuration_key in ('" . implode("', '", $this->keys()) . "')"); + } - function keys() { - return array('MAX_DISPLAY_SPECIAL_PRODUCTS'); - } + public function keys() { + return array('MAX_DISPLAY_SPECIAL_PRODUCTS'); } +} ?> \ No newline at end of file diff --git a/catalog/admin/includes/modules/services/whos_online.php b/catalog/admin/includes/modules/services/whos_online.php index c62773f1a..70b5aff90 100644 --- a/catalog/admin/includes/modules/services/whos_online.php +++ b/catalog/admin/includes/modules/services/whos_online.php @@ -1,47 +1,42 @@ loadIniFile('modules/services/whos_online.php'); + $lC_Language->loadIniFile('modules/services/whos_online.php'); - $this->title = $lC_Language->get('services_whos_online_title'); - $this->description = $lC_Language->get('services_whos_online_description'); - } + $this->title = $lC_Language->get('services_whos_online_title'); + $this->description = $lC_Language->get('services_whos_online_description'); + } - function install() { - global $lC_Database; + public function install() { + global $lC_Database; - $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_function, set_function, date_added) VALUES ('Detect Search Engine Spider Robots', 'SERVICE_WHOS_ONLINE_SPIDER_DETECTION', '1', 'Detect search engine spider robots (GoogleBot, Yahoo, etc).', '6', '0', 'lc_cfg_use_get_boolean_value', 'lc_cfg_set_boolean_value(array(1, -1))', now())"); - } + $lC_Database->simpleQuery("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_public function, set_public function, date_added) VALUES ('Detect Search Engine Spider Robots', 'SERVICE_WHOS_ONLINE_SPIDER_DETECTION', '1', 'Detect search engine spider robots (GoogleBot, Yahoo, etc).', '6', '0', 'lc_cfg_use_get_boolean_value', 'lc_cfg_set_boolean_value(array(1, -1))', now())"); + } - function remove() { - global $lC_Database; + public function remove() { + global $lC_Database; - $lC_Database->simpleQuery("delete from " . TABLE_CONFIGURATION . " where configuration_key in ('" . implode("', '", $this->keys()) . "')"); - } + $lC_Database->simpleQuery("delete from " . TABLE_CONFIGURATION . " where configuration_key in ('" . implode("', '", $this->keys()) . "')"); + } - function keys() { - return array('SERVICE_WHOS_ONLINE_SPIDER_DETECTION'); - } + public function keys() { + return array('SERVICE_WHOS_ONLINE_SPIDER_DETECTION'); } +} ?> \ No newline at end of file diff --git a/catalog/admin/includes/modules/statistics/low_stock.php b/catalog/admin/includes/modules/statistics/low_stock.php index 62a4cdc40..5078b5f37 100644 --- a/catalog/admin/includes/modules/statistics/low_stock.php +++ b/catalog/admin/includes/modules/statistics/low_stock.php @@ -1,15 +1,11 @@ loadIniFile('modules/statistics/low_stock.php'); @@ -30,24 +26,24 @@ function lC_Statistics_Low_Stock() { } // Private methods - function _setIcon() { + protected function _setIcon() { $this->_icon = lc_icon_admin('products.png'); } - function _setTitle() { + protected function _setTitle() { global $lC_Language; $this->_title = $lC_Language->get('statistics_low_stock_title'); } - function _setHeader() { + protected function _setHeader() { global $lC_Language; $this->_header = array($lC_Language->get('statistics_low_stock_table_heading_products'), $lC_Language->get('statistics_low_stock_table_heading_level')); } - function _setData() { + protected function _setData() { global $lC_Database, $lC_Language; $this->_data = array(); diff --git a/catalog/admin/includes/modules/statistics/orders.php b/catalog/admin/includes/modules/statistics/orders.php index 6fb4780be..c7ee77ae5 100644 --- a/catalog/admin/includes/modules/statistics/orders.php +++ b/catalog/admin/includes/modules/statistics/orders.php @@ -1,15 +1,11 @@ loadIniFile('modules/statistics/orders.php'); @@ -38,24 +34,24 @@ function lC_Statistics_Orders() { } // Private methods - function _setIcon() { + protected function _setIcon() { $this->_icon = lc_icon_admin('orders.png'); } - function _setTitle() { + protected function _setTitle() { global $lC_Language; $this->_title = $lC_Language->get('statistics_orders_title'); } - function _setHeader() { + protected function _setHeader() { global $lC_Language; $this->_header = array($lC_Language->get('statistics_orders_table_heading_customers'), $lC_Language->get('statistics_orders_table_heading_total')); } - function _setData() { + protected function _setData() { global $lC_Database, $lC_Currencies; $this->_data = array(); diff --git a/catalog/admin/includes/modules/statistics/products_purchased.php b/catalog/admin/includes/modules/statistics/products_purchased.php index bb7feb9ca..71e535d54 100644 --- a/catalog/admin/includes/modules/statistics/products_purchased.php +++ b/catalog/admin/includes/modules/statistics/products_purchased.php @@ -1,15 +1,11 @@ loadIniFile('modules/statistics/products_purchased.php'); @@ -30,26 +25,25 @@ function lC_Statistics_Products_Purchased() { $this->_setTitle(); } -// Private methods - - function _setIcon() { + // Private methods + protected function _setIcon() { $this->_icon = lc_icon_admin('products.png'); } - function _setTitle() { + protected function _setTitle() { global $lC_Language; $this->_title = $lC_Language->get('statistics_products_purchased_title'); } - function _setHeader() { + protected function _setHeader() { global $lC_Language; $this->_header = array($lC_Language->get('statistics_products_purchased_table_heading_products'), - $lC_Language->get('statistics_products_purchased_table_heading_total')); + $lC_Language->get('statistics_products_purchased_table_heading_total')); } - function _setData() { + protected function _setData() { global $lC_Database, $lC_Language; $this->_data = array(); @@ -63,7 +57,7 @@ function _setData() { while ( $this->_resultset->next() ) { $this->_data[] = array(lc_link_object(lc_href_link_admin(FILENAME_DEFAULT, 'products&pID=' . $this->_resultset->valueInt('products_id') . '&action=preview'), $this->_icon . ' ' . $this->_resultset->value('products_name')), - $this->_resultset->valueInt('products_ordered')); + $this->_resultset->valueInt('products_ordered')); } } } diff --git a/catalog/admin/includes/modules/statistics/products_viewed.php b/catalog/admin/includes/modules/statistics/products_viewed.php index 165c4d057..937aabbd2 100644 --- a/catalog/admin/includes/modules/statistics/products_viewed.php +++ b/catalog/admin/includes/modules/statistics/products_viewed.php @@ -1,15 +1,11 @@ loadIniFile('modules/statistics/products_viewed.php'); @@ -30,19 +25,18 @@ function lC_Statistics_Products_Viewed() { $this->_setTitle(); } -// Private methods - - function _setIcon() { + // Private methods + protected function _setIcon() { $this->_icon = lc_icon_admin('products.png'); } - function _setTitle() { + protected function _setTitle() { global $lC_Language; $this->_title = $lC_Language->get('statistics_products_viewed_title'); } - function _setHeader() { + protected function _setHeader() { global $lC_Language; $this->_header = array($lC_Language->get('statistics_products_viewed_table_heading_products'), @@ -50,7 +44,7 @@ function _setHeader() { $lC_Language->get('statistics_products_viewed_table_heading_total')); } - function _setData() { + protected function _setData() { global $lC_Database, $lC_Language; $this->_data = array(); diff --git a/catalog/admin/includes/modules/summary/administrators_log.php b/catalog/admin/includes/modules/summary/administrators_log.php index d3176c20f..dfeeb879f 100644 --- a/catalog/admin/includes/modules/summary/administrators_log.php +++ b/catalog/admin/includes/modules/summary/administrators_log.php @@ -1,15 +1,11 @@ loadIniFile('modules/summary/administrators_log.php'); @@ -36,9 +32,17 @@ function __construct() { $this->_setData(); } } + + public function loadModal() { + global $lC_Database, $lC_Language, $lC_Template, $lC_Vqmod; + + if ( is_dir('includes/applications/administrators_log/modal') ) { + if ( file_exists('includes/applications/administrators_log/modal/info.php') ) include_once($lC_Vqmod->modCheck('includes/applications/administrators_log/modal/info.php')); + } + } /* Private methods */ - function _setData() { + protected function _setData() { global $lC_Database, $lC_Language; if (!$this->enabled) { @@ -71,14 +75,6 @@ function _setData() { $this->_data .= $this->loadModal(); } - } - - function loadModal() { - global $lC_Database, $lC_Language, $lC_Template, $lC_Vqmod; - - if ( is_dir('includes/applications/administrators_log/modal') ) { - if ( file_exists('includes/applications/administrators_log/modal/info.php') ) include_once($lC_Vqmod->modCheck('includes/applications/administrators_log/modal/info.php')); - } } } ?> \ No newline at end of file diff --git a/catalog/admin/includes/modules/summary/customers.php b/catalog/admin/includes/modules/summary/customers.php index 19b3f41e0..2a37dd596 100644 --- a/catalog/admin/includes/modules/summary/customers.php +++ b/catalog/admin/includes/modules/summary/customers.php @@ -1,15 +1,11 @@ loadIniFile('modules/summary/customers.php'); @@ -37,8 +33,17 @@ function __construct() { } } + public function loadModal() { + global $lC_Database, $lC_Language, $lC_Template, $lC_Vqmod; + + if ( is_dir('includes/applications/customers/modal') ) { + if ( file_exists('includes/applications/customers/modal/edit.php') ) include_once($lC_Vqmod->modCheck('includes/applications/customers/modal/edit.php')); + //if ( file_exists('includes/applications/customers/modal/delete.php') ) include_once($lC_Vqmod->modCheck('includes/applications/customers/modal/delete.php')); + } + } + /* Private methods */ - function _setData() { + protected function _setData() { global $lC_Database, $lC_Language, $lC_Template; if (!$this->enabled) { @@ -74,14 +79,5 @@ function _setData() { $this->_data .= $this->loadModal(); } } - - function loadModal() { - global $lC_Database, $lC_Language, $lC_Template, $lC_Vqmod; - - if ( is_dir('includes/applications/customers/modal') ) { - if ( file_exists('includes/applications/customers/modal/edit.php') ) include_once($lC_Vqmod->modCheck('includes/applications/customers/modal/edit.php')); - //if ( file_exists('includes/applications/customers/modal/delete.php') ) include_once($lC_Vqmod->modCheck('includes/applications/customers/modal/delete.php')); - } - } } ?> \ No newline at end of file diff --git a/catalog/admin/includes/modules/summary/error_log.php b/catalog/admin/includes/modules/summary/error_log.php index 748f534a9..7cb850406 100644 --- a/catalog/admin/includes/modules/summary/error_log.php +++ b/catalog/admin/includes/modules/summary/error_log.php @@ -1,15 +1,11 @@ loadIniFile('modules/summary/error_log.php'); @@ -39,7 +35,7 @@ function __construct() { } /* Private methods */ - function _setData() { + protected function _setData() { global $lC_Database, $lC_Language; if (!$this->enabled) { diff --git a/catalog/admin/includes/modules/summary/orders.php b/catalog/admin/includes/modules/summary/orders.php index 64c9636bb..f7d71a59b 100644 --- a/catalog/admin/includes/modules/summary/orders.php +++ b/catalog/admin/includes/modules/summary/orders.php @@ -1,15 +1,11 @@ modCheck('includes/classes/summary.php')); @@ -21,7 +17,7 @@ class lC_Summary_orders extends lC_Summary { $sort_order = 30; /* Class constructor */ - function __construct() { + public function __construct() { global $lC_Language; $lC_Language->loadIniFile('modules/summary/orders.php'); @@ -34,9 +30,25 @@ function __construct() { $this->_setData(); } } + + public function loadModal() { + global $lC_Database, $lC_Language, $lC_Template, $lC_Vqmod; + + if ( is_dir('includes/applications/orders/modal') ) { + if ( file_exists('includes/applications/orders/modal/edit.php') ) include_once($lC_Vqmod->modCheck('includes/applications/orders/modal/edit.php')); + } + + if ( is_dir('includes/applications/orders/js') ) { + if ( file_exists('includes/applications/orders/js/orders.js.php') ) include_once($lC_Vqmod->modCheck('includes/applications/orders/js/orders.js.php')); + } + + if ( is_dir('includes/applications/orders/classes') ) { + if ( file_exists('includes/applications/orders/classes/orders.php') ) include_once($lC_Vqmod->modCheck('includes/applications/orders/classes/orders.php')); + } + } /* Private methods */ - function _setData() { + protected function _setData() { global $lC_Database, $lC_Language; if (!$this->enabled) { @@ -74,22 +86,6 @@ function _setData() { $this->_data .= $this->loadModal(); } - } - - function loadModal() { - global $lC_Database, $lC_Language, $lC_Template, $lC_Vqmod; - - if ( is_dir('includes/applications/orders/modal') ) { - if ( file_exists('includes/applications/orders/modal/edit.php') ) include_once($lC_Vqmod->modCheck('includes/applications/orders/modal/edit.php')); - } - - if ( is_dir('includes/applications/orders/js') ) { - if ( file_exists('includes/applications/orders/js/orders.js.php') ) include_once($lC_Vqmod->modCheck('includes/applications/orders/js/orders.js.php')); - } - - if ( is_dir('includes/applications/orders/classes') ) { - if ( file_exists('includes/applications/orders/classes/orders.php') ) include_once($lC_Vqmod->modCheck('includes/applications/orders/classes/orders.php')); - } } } ?> \ No newline at end of file diff --git a/catalog/admin/includes/modules/summary/products.php b/catalog/admin/includes/modules/summary/products.php index 4216ad253..a7a4dead6 100644 --- a/catalog/admin/includes/modules/summary/products.php +++ b/catalog/admin/includes/modules/summary/products.php @@ -1,15 +1,11 @@ loadIniFile('modules/summary/products.php'); @@ -38,9 +34,18 @@ function lC_Summary_products() { $this->_setData(); } } + + public function loadModal() { + global $lC_Database, $lC_Language, $lC_Template, $lC_Vqmod; + + if ( is_dir('includes/applications/products/modal') ) { + if ( file_exists('includes/applications/products/modal/copy.php') ) include_once($lC_Vqmod->modCheck('includes/applications/products/modal/copy.php')); + if ( file_exists('includes/applications/products/modal/delete.php') ) include_once($lC_Vqmod->modCheck('includes/applications/products/modal/delete.php')); + } + } /* Private methods */ - function _setData() { + protected function _setData() { global $lC_Database, $lC_Language, $lC_Currencies, $lC_Vqmod; if (!$this->enabled) { @@ -104,15 +109,6 @@ function _setData() { $this->_data .= $this->loadModal(); } - } - - function loadModal() { - global $lC_Database, $lC_Language, $lC_Template, $lC_Vqmod; - - if ( is_dir('includes/applications/products/modal') ) { - if ( file_exists('includes/applications/products/modal/copy.php') ) include_once($lC_Vqmod->modCheck('includes/applications/products/modal/copy.php')); - if ( file_exists('includes/applications/products/modal/delete.php') ) include_once($lC_Vqmod->modCheck('includes/applications/products/modal/delete.php')); - } } } ?> \ No newline at end of file diff --git a/catalog/admin/includes/modules/summary/revenue.php b/catalog/admin/includes/modules/summary/revenue.php index 025159ebd..2e2e9ab5c 100644 --- a/catalog/admin/includes/modules/summary/revenue.php +++ b/catalog/admin/includes/modules/summary/revenue.php @@ -1,15 +1,11 @@ loadIniFile('modules/summary/revenue.php'); @@ -37,7 +33,7 @@ function __construct() { } /* Private methods */ - function _setData() { + protected function _setData() { global $lC_Database, $lC_Language, $lC_Vqmod; if (!$this->enabled) { @@ -47,10 +43,10 @@ function _setData() { require_once($lC_Vqmod->modCheck('../includes/classes/currencies.php')); $lC_Currencies = new lC_Currencies(); - $lastMonth = date("m",strtotime("-1 month")); - $currentDay = date("d"); - $currentMonth = date("m"); - $currentYear = date("Y"); + $lastMonth = @date("m", @strtotime("-1 month")); + $currentDay = @date("d"); + $currentMonth = @date("m"); + $currentYear = @date("Y"); $Qorders = $lC_Database->query('select o.orders_id, ot.value as order_total, greatest(o.date_purchased, ifnull(o.last_modified, "1970-01-01")) as date_last_modified from :table_orders o, :table_orders_total ot where o.orders_id = ot.orders_id and ot.class = "total" order by date_last_modified desc limit 6'); $Qorders->bindTable(':table_orders', TABLE_ORDERS); diff --git a/catalog/admin/includes/modules/summary/reviews.php b/catalog/admin/includes/modules/summary/reviews.php index fd47998fd..fb1f5f3a8 100644 --- a/catalog/admin/includes/modules/summary/reviews.php +++ b/catalog/admin/includes/modules/summary/reviews.php @@ -1,15 +1,11 @@ loadIniFile('modules/summary/reviews.php'); @@ -37,7 +33,7 @@ function __construct() { } /* Private methods */ - function _setData() { + protected function _setData() { global $lC_Database, $lC_Language; if (!$this->enabled) { diff --git a/catalog/admin/includes/templates/core.php b/catalog/admin/includes/templates/core.php index dbc0c7e8d..f091201fb 100644 --- a/catalog/admin/includes/templates/core.php +++ b/catalog/admin/includes/templates/core.php @@ -1,30 +1,30 @@ array('left', 'right'), 'content' => array('before', 'after')), $_keys; - function getID() { + public function getID() { global $lC_Database; if (isset($this->_id) === false) { @@ -39,39 +39,51 @@ function getID() { return $this->_id; } - function getTitle() { + public function getTitle() { return $this->_title; } - function getCode() { + public function getCode() { return $this->_code; } - function getAuthorName() { + public function getAuthorName() { return $this->_author_name; } - function getAuthorAddress() { + public function getAuthorAddress() { return $this->_author_www; } - function getMarkup() { + public function getMarkup() { return $this->_markup_version; } - function isCSSBased() { + public function isCSSBased() { return ($this->_css_based == '1'); } - function getMedium() { + public function getMedium() { return $this->_medium; } - function getGroups($group) { + public function getGroups($group) { return $this->_groups[$group]; } + + function getScreenshot() { + return $this->_screenshot; + } + + public function getVersion() { + return $this->_version; + } + + public function getCompatibility() { + return $this->_compatibility; + } - function install() { + public function install() { global $lC_Database; $Qinstall = $lC_Database->query('insert into :table_templates (title, code, author_name, author_www, markup_version, css_based, medium) values (:title, :code, :author_name, :author_www, :markup_version, :css_based, :medium)'); @@ -109,7 +121,7 @@ function install() { } } - function remove() { + public function remove() { global $lC_Database; $Qdel = $lC_Database->query('delete from :table_templates_boxes_to_pages where templates_id = :templates_id'); @@ -130,7 +142,7 @@ function remove() { } } - function getKeys() { + public function getKeys() { if (!isset($this->_keys)) { $this->_keys = array(); } @@ -138,7 +150,7 @@ function getKeys() { return $this->_keys; } - function hasKeys() { + public function hasKeys() { static $has_keys; if (isset($has_keys) === false) { @@ -148,7 +160,7 @@ function hasKeys() { return $has_keys; } - function isInstalled() { + public function isInstalled() { global $lC_Database; static $is_installed; @@ -165,7 +177,7 @@ function isInstalled() { return $is_installed; } - function isActive() { + public function isActive() { return true; } } diff --git a/catalog/admin/index.php b/catalog/admin/index.php index 5c3496b39..18e472418 100644 --- a/catalog/admin/index.php +++ b/catalog/admin/index.php @@ -1,15 +1,11 @@ modCheck('includes/classes/template.php')); diff --git a/catalog/admin/rpc.php b/catalog/admin/rpc.php index ef3752a23..ce93c3e0a 100644 --- a/catalog/admin/rpc.php +++ b/catalog/admin/rpc.php @@ -1,15 +1,11 @@ @@ -19,7 +14,7 @@ - + @@ -238,7 +233,13 @@ - + + + @@ -597,7 +598,6 @@ - diff --git a/catalog/admin/templates/default/classes/general.php b/catalog/admin/templates/default/classes/general.php index 0d5973028..4bd577f19 100644 --- a/catalog/admin/templates/default/classes/general.php +++ b/catalog/admin/templates/default/classes/general.php @@ -1,19 +1,13 @@ - + diff --git a/catalog/install/templates/pages/install.php b/catalog/install/templates/pages/install.php index 339fa1a38..a5acde1af 100644 --- a/catalog/install/templates/pages/install.php +++ b/catalog/install/templates/pages/install.php @@ -1,15 +1,11 @@ 'mysqli', 'text' => 'MySQL - MyISAM (Default)'), array('id' => 'mysqli_innodb', 'text' => 'MySQL - InnoDB (Transaction-Safe)')); diff --git a/catalog/install/templates/pages/install_2.php b/catalog/install/templates/pages/install_2.php index 54205963c..8bd4b1040 100644 --- a/catalog/install/templates/pages/install_2.php +++ b/catalog/install/templates/pages/install_2.php @@ -1,15 +1,11 @@ diff --git a/catalog/install/templates/pages/install_4.php b/catalog/install/templates/pages/install_4.php index e3e914fd4..57a829d36 100644 --- a/catalog/install/templates/pages/install_4.php +++ b/catalog/install/templates/pages/install_4.php @@ -1,15 +1,11 @@ 'mysqli', 'text' => 'MySQL - MyISAM (Default)')); ?> diff --git a/catalog/install/templates/pages/upgrade_1.php b/catalog/install/templates/pages/upgrade_1.php index 48e3c8f5a..9b8f75ef4 100644 --- a/catalog/install/templates/pages/upgrade_1.php +++ b/catalog/install/templates/pages/upgrade_1.php @@ -1,15 +1,11 @@ 'mysqli', 'text' => 'MySQL - MyISAM (Default)')); diff --git a/catalog/install/templates/pages/upgrade_2.php b/catalog/install/templates/pages/upgrade_2.php index aa9057cd6..f6046f2c9 100644 --- a/catalog/install/templates/pages/upgrade_2.php +++ b/catalog/install/templates/pages/upgrade_2.php @@ -1,15 +1,11 @@ 'mysqli', 'text' => 'MySQL - MyISAM (Default)')); diff --git a/catalog/install/templates/pages/upgrade_3.php b/catalog/install/templates/pages/upgrade_3.php index 5f8c50db7..65885bba0 100644 --- a/catalog/install/templates/pages/upgrade_3.php +++ b/catalog/install/templates/pages/upgrade_3.php @@ -1,15 +1,11 @@ - - get('param_import_products'); ?> - - - - - - - - - - - - - - - get('param_import_attributes'); ?> - - - - - - - - - - - - - get('param_import_customers'); ?> @@ -244,6 +210,36 @@ function prepareWork() { + + + get('param_import_products'); ?> + + + + + + + + + + + + + + + get('param_import_attributes'); ?> + + + + + + + + + + + + get('param_import_orders'); ?> @@ -412,41 +408,41 @@ function prepareWork() { $('#eBoxContents_categories').html(_rslt); $('#eBox_categories').show(); } - - $('#img_copy_progress_products').show(); + + $('#img_copy_progress_customers').show(); setTimeout(function() { - _rslt = doImport('_products'); + _rslt = doImport('_customers'); if(_rslt === ""){ } else { _err = true ; _errmsg = _errmsg + '' + _rslt; - $('#eBoxContents_products').html(_rslt); - $('#eBox_products').show(); + $('#eBoxContents_customers').html(_rslt); + $('#eBox_customers').show(); } - $('#img_copy_progress_attributes').show(); + $('#img_copy_progress_customer_groups').show(); setTimeout(function() { - _rslt = doImport('_attributes'); + _rslt = doImport('_customer_groups'); if(_rslt === ""){ } else { _err = true ; _errmsg = _errmsg + '' + _rslt; - $('#eBoxContents_attributes').html(_rslt); - $('#eBox_attributes').show(); + $('#eBoxContents_customer_groups').html(_rslt); + $('#eBox_customer_groups').show(); } - - $('#img_copy_progress_customers').show(); + + $('#img_copy_progress_products').show(); setTimeout(function() { - _rslt = doImport('_customers'); + _rslt = doImport('_products'); if(_rslt === ""){ } else { _err = true ; _errmsg = _errmsg + '' + _rslt; - $('#eBoxContents_customers').html(_rslt); - $('#eBox_customers').show(); + $('#eBoxContents_products').html(_rslt); + $('#eBox_products').show(); } - $('#img_copy_progress_customer_groups').show(); + $('#img_copy_progress_attributes').show(); setTimeout(function() { - _rslt = doImport('_customer_groups'); + _rslt = doImport('_attributes'); if(_rslt === ""){ } else { _err = true ; _errmsg = _errmsg + '' + _rslt; - $('#eBoxContents_customer_groups').html(_rslt); - $('#eBox_customer_groups').show(); + $('#eBoxContents_attributes').html(_rslt); + $('#eBox_attributes').show(); } $('#img_copy_progress_orders').show(); diff --git a/catalog/install/templates/pages/upgrade_4.php b/catalog/install/templates/pages/upgrade_4.php index a84ded3fc..e9c454599 100644 --- a/catalog/install/templates/pages/upgrade_4.php +++ b/catalog/install/templates/pages/upgrade_4.php @@ -1,15 +1,11 @@ diff --git a/catalog/install/templates/pages/upgrade_6.php b/catalog/install/templates/pages/upgrade_6.php index a371da83a..00c095215 100644 --- a/catalog/install/templates/pages/upgrade_6.php +++ b/catalog/install/templates/pages/upgrade_6.php @@ -1,15 +1,11 @@ diff --git a/catalog/products.php b/catalog/products.php index 53e4eb67b..abd3e2515 100644 --- a/catalog/products.php +++ b/catalog/products.php @@ -1,15 +1,11 @@ - get('checkout_order_number') . ' ' . $_SESSION['cartID']; ?> - - get('checkout_order_number'); ?> - - getOrderTotals() as $module) { ?> diff --git a/catalog/templates/core/content/checkout/checkout_payment_address.php b/catalog/templates/core/content/checkout/checkout_payment_address.php index ba987544c..a2f238a16 100644 --- a/catalog/templates/core/content/checkout/checkout_payment_address.php +++ b/catalog/templates/core/content/checkout/checkout_payment_address.php @@ -1,8 +1,8 @@ - - get('checkout_order_number'); ?> - - getOrderTotals() as $module) { ?> diff --git a/catalog/templates/core/content/checkout/checkout_payment_template.php b/catalog/templates/core/content/checkout/checkout_payment_template.php index 8969f3719..e572eed0e 100644 --- a/catalog/templates/core/content/checkout/checkout_payment_template.php +++ b/catalog/templates/core/content/checkout/checkout_payment_template.php @@ -1,8 +1,8 @@ - - get('checkout_order_number'); ?> - - getOrderTotals() as $module) { ?> diff --git a/catalog/templates/core/content/checkout/checkout_shipping_address.php b/catalog/templates/core/content/checkout/checkout_shipping_address.php index adbfac8aa..becb4a956 100644 --- a/catalog/templates/core/content/checkout/checkout_shipping_address.php +++ b/catalog/templates/core/content/checkout/checkout_shipping_address.php @@ -1,8 +1,8 @@ size('checkout_shipping_address') > 0 ) echo '' . $lC_MessageStack->get('checkout_shipping_address') . '' . "\n"; ?> + size('checkout_shipping_account') > 0 ) echo '' . $lC_MessageStack->get('checkout_shipping_account') . '' . "\n"; + ?> @@ -31,10 +34,6 @@ - - get('checkout_order_number'); ?> - - getOrderTotals() as $module) { ?> diff --git a/catalog/templates/core/content/checkout/checkout_success.php b/catalog/templates/core/content/checkout/checkout_success.php index cb3e4e3dd..caf25cf7b 100644 --- a/catalog/templates/core/content/checkout/checkout_success.php +++ b/catalog/templates/core/content/checkout/checkout_success.php @@ -1,8 +1,8 @@ - get('checkout_order_number') . ' ' . $_SESSION['cartID']; ?> - get('checkout_order_id') . ' ' . $oID; ?> + + get('checkout_order_number') . ' ' . $oID; ?> diff --git a/catalog/templates/core/content/checkout/shopping_cart.php b/catalog/templates/core/content/checkout/shopping_cart.php index 102c10a7e..49bc7e436 100644 --- a/catalog/templates/core/content/checkout/shopping_cart.php +++ b/catalog/templates/core/content/checkout/shopping_cart.php @@ -1,8 +1,8 @@ \ No newline at end of file diff --git a/catalog/templates/core/content/index/category_not_found.php b/catalog/templates/core/content/index/category_not_found.php index bbccbce55..a6909de42 100644 --- a/catalog/templates/core/content/index/category_not_found.php +++ b/catalog/templates/core/content/index/category_not_found.php @@ -1,8 +1,8 @@ ' + descContent + '' + ' ' + ' ' + - ' ' + priceContent + '' + + ' ' + priceContent + '' + ' ' + ' ' + buttonContent + '' + ' ' + @@ -127,6 +127,7 @@ $('.product-listing-module-container p.lead').attr('style', 'font-size:1.1em;'); $('.product-listing-module-items').find('img').addClass('img-responsive'); } + $('.thumbnail').equalHeights(); }); \ No newline at end of file diff --git a/catalog/templates/core/content/info/cookie.php b/catalog/templates/core/content/info/cookie.php index ad6075883..40870c955 100644 --- a/catalog/templates/core/content/info/cookie.php +++ b/catalog/templates/core/content/info/cookie.php @@ -1,8 +1,8 @@ get('button_continue'); ?> - get('button_back'); ?> diff --git a/catalog/templates/core/content/info/info.php b/catalog/templates/core/content/info/info.php index 02fa52d67..ea962d9f2 100644 --- a/catalog/templates/core/content/info/info.php +++ b/catalog/templates/core/content/info/info.php @@ -1,8 +1,8 @@ - - - - getPageTitle(); ?> - get('text_information_conditions'); ?> - - get('button_continue'); ?> - get('button_back'); ?> - - - - \ No newline at end of file diff --git a/catalog/templates/core/content/info/info_contact.php b/catalog/templates/core/content/info/info_contact.php index 586c79272..07eedd5d8 100644 --- a/catalog/templates/core/content/info/info_contact.php +++ b/catalog/templates/core/content/info/info_contact.php @@ -1,8 +1,8 @@ get('button_send_message'); ?> - get('button_back'); ?> \ No newline at end of file diff --git a/catalog/templates/core/content/info/info_privacy.php b/catalog/templates/core/content/info/info_privacy.php deleted file mode 100644 index 81a3b1657..000000000 --- a/catalog/templates/core/content/info/info_privacy.php +++ /dev/null @@ -1,23 +0,0 @@ - - - - - getPageTitle(); ?> - get('text_information_privacy'); ?> - - get('button_continue'); ?> - get('button_back'); ?> - - - - \ No newline at end of file diff --git a/catalog/templates/core/content/info/info_shipping.php b/catalog/templates/core/content/info/info_shipping.php deleted file mode 100644 index c641cc3be..000000000 --- a/catalog/templates/core/content/info/info_shipping.php +++ /dev/null @@ -1,23 +0,0 @@ - - - - - getPageTitle(); ?> - get('text_information_shipping'); ?> - - get('button_continue'); ?> - get('button_back'); ?> - - - - \ No newline at end of file diff --git a/catalog/templates/core/content/info/info_sitemap.php b/catalog/templates/core/content/info/info_sitemap.php index 33eab11ff..2419e459c 100644 --- a/catalog/templates/core/content/info/info_sitemap.php +++ b/catalog/templates/core/content/info/info_sitemap.php @@ -1,8 +1,8 @@ get('sitemap_products_new')); ?> get('sitemap_specials')); ?> get('sitemap_reviews')); ?> - get('box_information_heading')); ?> - - get('text_shipping_returns')); ?> - get('text_privacy')); ?> - get('text_terms_conditions')); ?> - get('breadcrumb_cookie_usage')); ?> - get('breadcrumb_ssl_check')); ?> - get('box_information_contact')); ?> - - + get('breadcrumb_cookie_usage')); ?> + get('breadcrumb_ssl_check')); ?> + get('box_information_contact')); ?> get('button_continue'); ?> - get('button_back'); ?> diff --git a/catalog/templates/core/content/info/ssl_check.php b/catalog/templates/core/content/info/ssl_check.php index 269d1ba3e..904d9dc51 100644 --- a/catalog/templates/core/content/info/ssl_check.php +++ b/catalog/templates/core/content/info/ssl_check.php @@ -1,8 +1,8 @@ get('button_continue'); ?> - get('button_back'); ?> diff --git a/catalog/templates/core/content/products/images.php b/catalog/templates/core/content/products/images.php index 4c0f63858..dc46b3e7b 100644 --- a/catalog/templates/core/content/products/images.php +++ b/catalog/templates/core/content/products/images.php @@ -1,8 +1,8 @@ - - + getImages()) > 1) { - echo '' . $lC_Product->getAdditionalImagesHtml() . '' . "\n"; + $_product_additionalimages = $lC_Product->getAdditionalImagesHtml(); + echo '' . $_product_additionalimages['images'] . '' . "\n"; + echo $_product_additionalimages['model']. "\n"; } ?> diff --git a/catalog/templates/core/content/products/info_not_found.php b/catalog/templates/core/content/products/info_not_found.php index 08d04f30a..eeb550d31 100644 --- a/catalog/templates/core/content/products/info_not_found.php +++ b/catalog/templates/core/content/products/info_not_found.php @@ -1,8 +1,8 @@ ' + descContent + '' + ' ' + ' ' + - ' ' + priceContent + '' + + ' ' + priceContent + '' + ' ' + ' ' + buttonContent + '' + ' ' + @@ -129,6 +129,7 @@ $('.product-listing-module-container p.lead').attr('style', 'font-size:1.1em;'); $('.product-listing-module-items').find('img').addClass('img-responsive'); } + $('.thumbnail').equalHeights(); }); \ No newline at end of file diff --git a/catalog/templates/core/content/products/product_reviews.php b/catalog/templates/core/content/products/product_reviews.php index 4e8abe6d0..d63942b3d 100644 --- a/catalog/templates/core/content/products/product_reviews.php +++ b/catalog/templates/core/content/products/product_reviews.php @@ -1,8 +1,8 @@ ' + descContent + '' + ' ' + ' ' + - ' ' + priceContent + '' + + ' ' + priceContent + '' + ' ' + ' ' + buttonContent + '' + ' ' + @@ -67,5 +67,6 @@ $('.content-specials-listing-buy-now-button').text(textArr[0]); $('.content-specials-listing-container p.lead').attr('style', 'font-size:1.1em;'); } + $('.thumbnail').equalHeights(); }); \ No newline at end of file diff --git a/catalog/templates/core/content/products/tell_a_friend.php b/catalog/templates/core/content/products/tell_a_friend.php index c661b8477..9a90898bc 100644 --- a/catalog/templates/core/content/products/tell_a_friend.php +++ b/catalog/templates/core/content/products/tell_a_friend.php @@ -1,8 +1,8 @@ ' + descContent + '' + ' ' + ' ' + - ' ' + priceContent + '' + + ' ' + priceContent + '' + ' ' + ' ' + buttonContent + '' + ' ' + @@ -78,6 +78,7 @@ $('.product-listing-module-container p.lead').attr('style', 'font-size:1.1em;'); $('.product-listing-module-items').find('img').addClass('img-responsive'); } + $('.thumbnail').equalHeights(); }); \ No newline at end of file diff --git a/catalog/templates/core/content/search/search.php b/catalog/templates/core/content/search/search.php index 13a5b73fa..8430d9128 100644 --- a/catalog/templates/core/content/search/search.php +++ b/catalog/templates/core/content/search/search.php @@ -1,8 +1,8 @@ \ No newline at end of file diff --git a/catalog/templates/core/modules/content/mainpage_banner.php b/catalog/templates/core/modules/content/mainpage_banner.php index 1e388c975..375e6bb93 100644 --- a/catalog/templates/core/modules/content/mainpage_banner.php +++ b/catalog/templates/core/modules/content/mainpage_banner.php @@ -1,8 +1,8 @@ ' + descContent + '' + ' ' + ' ' + - ' ' + priceContent + '' + + ' ' + priceContent + '' + ' ' + ' ' + buttonContent + '' + ' ' + @@ -68,6 +68,7 @@ $('.content-new-products-container p.lead').attr('style', 'font-size:1.1em;'); } $('.content-new-products-image-src').addClass('img-responsive'); + $('.thumbnail').equalHeights(); }); \ No newline at end of file diff --git a/catalog/templates/core/modules/content/product_on_homepage.php b/catalog/templates/core/modules/content/product_on_homepage.php index 2dd1a84ef..d6a8b7637 100644 --- a/catalog/templates/core/modules/content/product_on_homepage.php +++ b/catalog/templates/core/modules/content/product_on_homepage.php @@ -1,8 +1,8 @@ diff --git a/catalog/templates/core/modules/content/upcoming_products.php b/catalog/templates/core/modules/content/upcoming_products.php index 46382ac37..821dc5213 100644 --- a/catalog/templates/core/modules/content/upcoming_products.php +++ b/catalog/templates/core/modules/content/upcoming_products.php @@ -1,8 +1,8 @@ \ No newline at end of file
' . lc_draw_pull_down_menu('customer', $customers_array, null, 'class="input full-width with-small-padding" size="25"') . '
' . sprintf($lC_Language->get('newsletter_email_total_recipients'), $this->_audience_size) . '
' . $this->_newsletter_title . '
' . nl2br(lc_output_string_protected($this->_newsletter_content)) . '
' . $lC_Language->get('sending_refreshing_page') . '
' . sprintf($lC_Language->get('newsletter_newsletter_total_recipients'), $this->_audience_size) . '
'; - /* - if ($this->_audience_size > 0) { - $confirmation_string .= lc_draw_hidden_field('subaction', 'execute') . - ' ' . - ''; - } else { - $confirmation_string .= ''; - } - */ + /* + if ($this->_audience_size > 0) { + $confirmation_string .= lc_draw_hidden_field('subaction', 'execute') . + ' ' . + ''; + } else { + $confirmation_string .= ''; + } + */ - $confirmation_string .= '
' . lc_draw_hidden_field('subaction', 'execute') . '
' . sprintf($lC_Language->get('newsletter_product_notifications_total_recipients'), $this->_audience_size) . '
- - - -
- -
+ + + +
+ +
' + _rslt; - $('#eBoxContents_products').html(_rslt); - $('#eBox_products').show(); + $('#eBoxContents_customers').html(_rslt); + $('#eBox_customers').show(); } - $('#img_copy_progress_attributes').show(); + $('#img_copy_progress_customer_groups').show(); setTimeout(function() { - _rslt = doImport('_attributes'); + _rslt = doImport('_customer_groups'); if(_rslt === ""){ } else { _err = true ; _errmsg = _errmsg + '
' + _rslt; - $('#eBoxContents_attributes').html(_rslt); - $('#eBox_attributes').show(); + $('#eBoxContents_customer_groups').html(_rslt); + $('#eBox_customer_groups').show(); } - - $('#img_copy_progress_customers').show(); + + $('#img_copy_progress_products').show(); setTimeout(function() { - _rslt = doImport('_customers'); + _rslt = doImport('_products'); if(_rslt === ""){ } else { _err = true ; _errmsg = _errmsg + '
' + _rslt; - $('#eBoxContents_customers').html(_rslt); - $('#eBox_customers').show(); + $('#eBoxContents_products').html(_rslt); + $('#eBox_products').show(); } - $('#img_copy_progress_customer_groups').show(); + $('#img_copy_progress_attributes').show(); setTimeout(function() { - _rslt = doImport('_customer_groups'); + _rslt = doImport('_attributes'); if(_rslt === ""){ } else { _err = true ; _errmsg = _errmsg + '
' + _rslt; - $('#eBoxContents_customer_groups').html(_rslt); - $('#eBox_customer_groups').show(); + $('#eBoxContents_attributes').html(_rslt); + $('#eBox_attributes').show(); } $('#img_copy_progress_orders').show(); diff --git a/catalog/install/templates/pages/upgrade_4.php b/catalog/install/templates/pages/upgrade_4.php index a84ded3fc..e9c454599 100644 --- a/catalog/install/templates/pages/upgrade_4.php +++ b/catalog/install/templates/pages/upgrade_4.php @@ -1,15 +1,11 @@ diff --git a/catalog/install/templates/pages/upgrade_6.php b/catalog/install/templates/pages/upgrade_6.php index a371da83a..00c095215 100644 --- a/catalog/install/templates/pages/upgrade_6.php +++ b/catalog/install/templates/pages/upgrade_6.php @@ -1,15 +1,11 @@ diff --git a/catalog/products.php b/catalog/products.php index 53e4eb67b..abd3e2515 100644 --- a/catalog/products.php +++ b/catalog/products.php @@ -1,15 +1,11 @@
' + priceContent + '