FireGento_MageSetup - Version 2.1.0

Version Notes

Download this release

Release Info

Developer Team FireGento
Extension FireGento_MageSetup
Version 2.1.0
Comparing to
See all releases


Code changes from version 2.0.3 to 2.1.0

Files changed (138) hide show
  1. app/code/community/FireGento/MageSetup/Block/Adminhtml/Magesetup.php +33 -24
  2. app/code/community/FireGento/MageSetup/Block/Adminhtml/Newsletter/Subscriber/Status.php +6 -10
  3. app/code/community/FireGento/MageSetup/Block/Adminhtml/Newsletter/Subscriber/Status/Grid.php +7 -14
  4. app/code/community/FireGento/MageSetup/Block/Adminhtml/Notifications.php +19 -18
  5. app/code/community/FireGento/MageSetup/Block/Bundle/Catalog/Product/Price.php +6 -10
  6. app/code/community/FireGento/MageSetup/Block/Bundle/Catalog/Product/Price/Abstract.php +8 -10
  7. app/code/community/FireGento/MageSetup/Block/Catalog/Product/Price.php +6 -10
  8. app/code/community/FireGento/MageSetup/Block/Catalog/Product/Price/Abstract.php +8 -10
  9. app/code/community/FireGento/MageSetup/Block/Checkout/Agreements.php +27 -24
  10. app/code/community/FireGento/MageSetup/Block/Checkout/Information.php +6 -10
  11. app/code/community/FireGento/MageSetup/Block/Customer/Account/Agreements.php +6 -10
  12. app/code/community/FireGento/MageSetup/Block/Ga.php +6 -10
  13. app/code/community/FireGento/MageSetup/Block/Imprint/Content.php +36 -11
  14. app/code/community/FireGento/MageSetup/Block/Imprint/Field.php +11 -11
  15. app/code/community/FireGento/MageSetup/Helper/Catalog/Product/Configuration.php +6 -11
  16. app/code/community/FireGento/MageSetup/Helper/Checkout/Data.php +7 -11
  17. app/code/community/FireGento/MageSetup/Helper/Data.php +24 -14
  18. app/code/community/FireGento/MageSetup/Model/Config.php +21 -12
  19. app/code/community/FireGento/MageSetup/Model/Newsletter/Observer.php +8 -11
  20. app/code/community/FireGento/MageSetup/Model/Newsletter/Subscriber/Status.php +6 -10
  21. app/code/community/FireGento/MageSetup/Model/Observer.php +13 -18
  22. app/code/community/FireGento/MageSetup/Model/Resource/Newsletter/Subscriber/Status.php +6 -10
  23. app/code/community/FireGento/MageSetup/Model/Resource/Newsletter/Subscriber/Status/Collection.php +6 -10
  24. app/code/community/FireGento/MageSetup/Model/Setup.php +19 -17
  25. app/code/community/FireGento/MageSetup/Model/Setup/Abstract.php +9 -13
  26. app/code/community/FireGento/MageSetup/Model/Setup/Agreements.php +6 -10
  27. app/code/community/FireGento/MageSetup/Model/Setup/Cms.php +29 -14
  28. app/code/community/FireGento/MageSetup/Model/Setup/Email.php +9 -12
  29. app/code/community/FireGento/MageSetup/Model/Setup/Systemconfig.php +6 -10
  30. app/code/community/FireGento/MageSetup/Model/Setup/Tax.php +26 -32
  31. app/code/community/FireGento/MageSetup/Model/Source/AgreementType.php +8 -10
  32. app/code/community/FireGento/MageSetup/Model/Source/Cms/Block.php +6 -10
  33. app/code/community/FireGento/MageSetup/Model/Source/Cms/Page.php +6 -10
  34. app/code/community/FireGento/MageSetup/Model/Source/Tax/CustomerTaxClass.php +6 -10
  35. app/code/community/FireGento/MageSetup/Model/Source/Tax/DynamicType.php +6 -10
  36. app/code/community/FireGento/MageSetup/Model/Source/Tax/NewCustomerTaxClass.php +6 -10
  37. app/code/community/FireGento/MageSetup/Model/Source/Tax/NewProductTaxClass.php +6 -10
  38. app/code/community/FireGento/MageSetup/Model/Source/Tax/ProductTaxClass.php +6 -10
  39. app/code/community/FireGento/MageSetup/Model/Tax/Config.php +6 -10
  40. app/code/community/FireGento/MageSetup/Test/Config/Main.php +6 -10
  41. app/code/community/FireGento/MageSetup/Test/Model/Source/AgreementType.php +6 -10
  42. app/code/community/FireGento/MageSetup/Test/Model/Source/Tax/DynamicType.php +6 -10
  43. app/code/community/FireGento/MageSetup/controllers/Adminhtml/NewsletterController.php +6 -10
  44. app/code/community/FireGento/MageSetup/controllers/FrontendController.php +6 -10
  45. app/code/community/FireGento/MageSetup/controllers/MagesetupController.php +24 -15
  46. app/code/community/FireGento/MageSetup/data/magesetup_setup/data-upgrade-2.0.0-2.0.1.php +6 -11
  47. app/code/community/FireGento/MageSetup/data/magesetup_setup/data-upgrade-2.0.1-2.0.2.php +7 -12
  48. app/code/community/FireGento/MageSetup/etc/adminhtml.xml +19 -0
  49. app/code/community/FireGento/MageSetup/etc/at/email.xml +3 -7
  50. app/code/community/FireGento/MageSetup/etc/at/tax.xml +6 -7
  51. app/code/community/FireGento/MageSetup/etc/ch/email.xml +3 -7
  52. app/code/community/FireGento/MageSetup/etc/ch/tax.xml +6 -7
  53. app/code/community/FireGento/MageSetup/etc/config.xml +13 -12
  54. app/code/community/FireGento/MageSetup/etc/de/email.xml +3 -7
  55. app/code/community/FireGento/MageSetup/etc/de/tax.xml +6 -7
  56. app/code/community/FireGento/MageSetup/etc/default/agreement.xml +3 -7
  57. app/code/community/FireGento/MageSetup/etc/default/cms.xml +3 -7
  58. app/code/community/FireGento/MageSetup/etc/default/email.xml +3 -7
  59. app/code/community/FireGento/MageSetup/etc/default/systemconfig.xml +3 -7
  60. app/code/community/FireGento/MageSetup/etc/default/tax.xml +57 -203
  61. app/code/community/FireGento/MageSetup/etc/fr/email.xml +3 -7
  62. app/code/community/FireGento/MageSetup/etc/fr/tax.xml +13 -14
  63. app/code/community/FireGento/MageSetup/etc/gb/tax.xml +6 -7
  64. app/code/community/FireGento/MageSetup/etc/it/email.xml +3 -7
  65. app/code/community/FireGento/MageSetup/etc/it/tax.xml +6 -7
  66. app/code/community/FireGento/MageSetup/etc/nl/tax.xml +167 -0
  67. app/code/community/FireGento/MageSetup/etc/ru/cms.xml +3 -7
  68. app/code/community/FireGento/MageSetup/etc/ru/email.xml +3 -7
  69. app/code/community/FireGento/MageSetup/etc/ru/systemconfig.xml +3 -7
  70. app/code/community/FireGento/MageSetup/etc/ru/tax.xml +6 -7
  71. app/code/community/FireGento/MageSetup/etc/system.xml +11 -7
  72. app/code/community/FireGento/MageSetup/scripts/GenerateCountryTaxXml.php +0 -24
  73. app/code/community/FireGento/MageSetup/sql/magesetup_setup/mysql4-install-0.5.0.php +6 -10
  74. app/code/community/FireGento/MageSetup/sql/magesetup_setup/mysql4-upgrade-1.0.4-1.0.5.php +6 -10
  75. app/code/community/FireGento/MageSetup/sql/magesetup_setup/mysql4-upgrade-1.1.2-1.1.3.php +6 -10
  76. app/code/community/FireGento/MageSetup/sql/magesetup_setup/mysql4-upgrade-1.1.3-1.1.4.php +6 -10
  77. app/code/community/FireGento/MageSetup/sql/magesetup_setup/mysql4-upgrade-1.1.4-1.2.0.php +6 -10
  78. app/code/community/FireGento/MageSetup/sql/magesetup_setup/mysql4-upgrade-1.2.0-1.2.1.php +6 -10
  79. app/code/community/FireGento/MageSetup/sql/magesetup_setup/mysql4-upgrade-1.2.1-1.2.2.php +6 -10
  80. app/code/community/FireGento/MageSetup/sql/magesetup_setup/mysql4-upgrade-1.2.2-1.2.3.php +6 -10
  81. app/design/adminhtml/default/default/layout/magesetup.xml +3 -7
  82. app/design/adminhtml/default/default/template/magesetup/extensions.phtml +24 -0
  83. app/design/adminhtml/default/default/template/magesetup/form.phtml +8 -13
  84. app/design/adminhtml/default/default/template/magesetup/notifications.phtml +31 -5
  85. app/design/frontend/base/default/layout/magesetup.xml +19 -0
  86. app/design/frontend/base/default/template/magesetup/checkout/additional.phtml +9 -11
  87. app/design/frontend/base/default/template/magesetup/checkout/multishipping/agreements.phtml +5 -19
  88. app/design/frontend/base/default/template/magesetup/checkout/multishipping/overview.phtml +8 -8
  89. app/design/frontend/base/default/template/magesetup/checkout/onepage/agreements.phtml +5 -19
  90. app/design/frontend/base/default/template/magesetup/customer/form/tc-confirmation.phtml +14 -28
  91. app/design/frontend/base/default/template/magesetup/delivery_time.phtml +8 -23
  92. app/design/frontend/base/default/template/magesetup/imprint/address.phtml +4 -8
  93. app/design/frontend/base/default/template/magesetup/imprint/bank.phtml +8 -9
  94. app/design/frontend/base/default/template/magesetup/imprint/communication.phtml +4 -8
  95. app/design/frontend/base/default/template/magesetup/imprint/email_footer.phtml +8 -9
  96. app/design/frontend/base/default/template/magesetup/imprint/legal.phtml +3 -11
  97. app/design/frontend/base/default/template/magesetup/imprint/tax.phtml +4 -8
  98. app/design/frontend/base/default/template/magesetup/price_info.phtml +5 -20
  99. app/design/frontend/base/default/template/magesetup/shipping.phtml +9 -24
  100. app/etc/modules/FireGento_MageSetup.xml +3 -7
  101. app/locale/de_AT/FireGento_MageSetup.csv +2 -1
  102. app/locale/de_CH/template/magesetup/agreement/business_terms.html +3 -0
  103. app/locale/de_CH/template/magesetup/agreement/revocation.html +3 -0
  104. app/locale/de_CH/template/magesetup/block/business_terms.html +2 -0
  105. app/locale/de_CH/template/magesetup/block/revocation.html +2 -0
  106. app/locale/de_CH/template/magesetup/page/404.html +9 -0
  107. app/locale/de_CH/template/magesetup/page/business_terms.html +4 -0
  108. app/locale/de_CH/template/magesetup/page/imprint.html +37 -0
  109. app/locale/de_CH/template/magesetup/page/order.html +38 -0
  110. app/locale/de_CH/template/magesetup/page/payment.html +30 -0
  111. app/locale/de_CH/template/magesetup/page/privacy.html +4 -0
  112. app/locale/de_CH/template/magesetup/page/revocation.html +4 -0
  113. app/locale/de_CH/template/magesetup/page/shipping.html +4 -0
  114. app/locale/de_DE/FireGento_MageSetup.csv +4 -1
  115. app/locale/de_DE/template/magesetup/page/imprint.html +1 -1
  116. app/locale/en_US/FireGento_MageSetup.csv +4 -1
  117. app/locale/en_US/template/magesetup/page/imprint.html +2 -19
  118. app/locale/en_US/template/magesetup/page/order.html +0 -36
  119. app/locale/en_US/template/magesetup/page/payment.html +0 -28
  120. app/locale/fr_CH/template/magesetup/agreement/business_terms.html +3 -0
  121. app/locale/fr_CH/template/magesetup/agreement/revocation.html +3 -0
  122. app/locale/fr_CH/template/magesetup/block/business_terms.html +6 -0
  123. app/locale/fr_CH/template/magesetup/block/revocation.html +2 -0
  124. app/locale/fr_CH/template/magesetup/page/404.html +9 -0
  125. app/locale/fr_CH/template/magesetup/page/business_terms.html +4 -0
  126. app/locale/fr_CH/template/magesetup/page/imprint.html +37 -0
  127. app/locale/fr_CH/template/magesetup/page/order.html +38 -0
  128. app/locale/fr_CH/template/magesetup/page/payment.html +24 -0
  129. app/locale/fr_CH/template/magesetup/page/privacy.html +24 -0
  130. app/locale/fr_CH/template/magesetup/page/revocation.html +4 -0
  131. app/locale/fr_CH/template/magesetup/page/shipping.html +4 -0
  132. app/locale/fr_FR/FireGento_MageSetup.csv +4 -1
  133. app/locale/fr_FR/template/magesetup/page/imprint.html +1 -1
  134. app/locale/it_IT/FireGento_MageSetup.csv +4 -1
  135. app/locale/it_IT/template/magesetup/page/imprint.html +1 -1
  136. app/locale/ru_RU/FireGento_MageSetup.csv +3 -0
  137. package.xml +4 -4
  138. skin/frontend/base/default/css/magesetup/checkout.css +31 -64
app/code/community/FireGento/MageSetup/Block/Adminhtml/Magesetup.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -15,7 +15,7 @@
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.4.0
@@ -23,13 +23,9 @@
23
  /**
24
  * Displays a form with some options to setup things
25
  *
26
- * @category FireGento
27
- * @package FireGento_MageSetup
28
- * @author FireGento Team <team@firegento.com>
29
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
30
- * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
31
- * @version $Id:$
32
- * @since 0.4.0
33
  */
34
  class FireGento_MageSetup_Block_Adminhtml_Magesetup extends Mage_Adminhtml_Block_Widget
35
  {
@@ -169,63 +165,76 @@ class FireGento_MageSetup_Block_Adminhtml_Magesetup extends Mage_Adminhtml_Block
169
  }
170
 
171
  /**
172
- * @return string
 
 
173
  */
174
  public function getNewProductTaxClassesJson()
175
  {
176
- $countryTaxClasses = array();
177
- foreach(Mage::helper('magesetup')->getAvailableCountries() as $countryId => $countryName) {
178
 
179
- $configFile = Mage::getConfig()->getModuleDir('etc', 'FireGento_MageSetup') . DS . $countryId . DS . 'tax.xml';
 
 
 
180
 
181
  // If the given file does not exist, use the default file
182
  if (!file_exists($configFile)) {
183
- $configFile = Mage::getConfig()->getModuleDir('etc', 'FireGento_MageSetup') . DS . 'default' . DS . 'tax.xml';
184
  }
185
 
186
  $xml = new SimpleXMLElement(file_get_contents($configFile));
187
-
 
188
  $taxClasses = $xml->default->magesetup->tax_classes->default;
189
- foreach($taxClasses->children() as $identifier => $taxClass) {
190
  if ($taxClass->class_type != 'PRODUCT'
191
  || $taxClass->execute != 1
192
  || strpos($identifier, 'shipping') === 0) {
193
  continue;
194
  }
 
195
  $countryTaxClasses[$countryId][(string)$taxClass->class_id] = (string)$taxClass->class_name;
196
  }
 
197
 
198
  $countryTaxClasses[$countryId][] = $this->__('No tax');
199
  }
200
-
201
  return Zend_Json::encode($countryTaxClasses);
202
  }
203
 
204
  /**
205
- * @return string
 
 
206
  */
207
  public function getNewCustomerTaxClassesJson()
208
  {
209
- $countryTaxClasses = array();
210
- foreach(Mage::helper('magesetup')->getAvailableCountries() as $countryId => $countryName) {
211
 
212
- $configFile = Mage::getConfig()->getModuleDir('etc', 'FireGento_MageSetup') . DS . $countryId . DS . 'tax.xml';
 
 
 
213
 
214
  // If the given file does not exist, use the default file
215
  if (!file_exists($configFile)) {
216
- $configFile = Mage::getConfig()->getModuleDir('etc', 'FireGento_MageSetup') . DS . 'default' . DS . 'tax.xml';
217
  }
218
 
219
  $xml = new SimpleXMLElement(file_get_contents($configFile));
220
 
 
221
  $taxClasses = $xml->default->magesetup->tax_classes->default;
222
- foreach($taxClasses->children() as $identifier => $taxClass) {
223
  if ($taxClass->class_type != 'CUSTOMER'
224
  || $taxClass->execute != 1) {
225
  continue;
226
  }
227
  $countryTaxClasses[$countryId][(string)$taxClass->class_id] = (string)$taxClass->class_name;
228
  }
 
229
  }
230
 
231
  return Zend_Json::encode($countryTaxClasses);
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.4.0
23
  /**
24
  * Displays a form with some options to setup things
25
  *
26
+ * @category FireGento
27
+ * @package FireGento_MageSetup
28
+ * @author FireGento Team <team@firegento.com>
 
 
 
 
29
  */
30
  class FireGento_MageSetup_Block_Adminhtml_Magesetup extends Mage_Adminhtml_Block_Widget
31
  {
165
  }
166
 
167
  /**
168
+ * Retrieve the new product tax classes as JSON
169
+ *
170
+ * @return string JSON with Product Tax Classes
171
  */
172
  public function getNewProductTaxClassesJson()
173
  {
174
+ $moduleDir = Mage::getConfig()->getModuleDir('etc', 'FireGento_MageSetup');
 
175
 
176
+ $countryTaxClasses = array();
177
+ foreach (Mage::helper('magesetup')->getAvailableCountries() as $countryId => $countryName) {
178
+ // Get the config file for the given country
179
+ $configFile = $moduleDir . DS . $countryId . DS . 'tax.xml';
180
 
181
  // If the given file does not exist, use the default file
182
  if (!file_exists($configFile)) {
183
+ $configFile = $moduleDir . DS . 'default' . DS . 'tax.xml';
184
  }
185
 
186
  $xml = new SimpleXMLElement(file_get_contents($configFile));
187
+
188
+ // @codingStandardsIgnoreStart
189
  $taxClasses = $xml->default->magesetup->tax_classes->default;
190
+ foreach ($taxClasses->children() as $identifier => $taxClass) {
191
  if ($taxClass->class_type != 'PRODUCT'
192
  || $taxClass->execute != 1
193
  || strpos($identifier, 'shipping') === 0) {
194
  continue;
195
  }
196
+
197
  $countryTaxClasses[$countryId][(string)$taxClass->class_id] = (string)$taxClass->class_name;
198
  }
199
+ // @codingStandardsIgnoreEnd
200
 
201
  $countryTaxClasses[$countryId][] = $this->__('No tax');
202
  }
203
+
204
  return Zend_Json::encode($countryTaxClasses);
205
  }
206
 
207
  /**
208
+ * Retrieve the new customer tax classes as JSON
209
+ *
210
+ * @return string JSON with Customer Tax Classes
211
  */
212
  public function getNewCustomerTaxClassesJson()
213
  {
214
+ $moduleDir = Mage::getConfig()->getModuleDir('etc', 'FireGento_MageSetup');
 
215
 
216
+ $countryTaxClasses = array();
217
+ foreach (Mage::helper('magesetup')->getAvailableCountries() as $countryId => $countryName) {
218
+ // Get the config file for the given country
219
+ $configFile = $moduleDir . DS . $countryId . DS . 'tax.xml';
220
 
221
  // If the given file does not exist, use the default file
222
  if (!file_exists($configFile)) {
223
+ $configFile = $moduleDir. DS . 'default' . DS . 'tax.xml';
224
  }
225
 
226
  $xml = new SimpleXMLElement(file_get_contents($configFile));
227
 
228
+ // @codingStandardsIgnoreStart
229
  $taxClasses = $xml->default->magesetup->tax_classes->default;
230
+ foreach ($taxClasses->children() as $identifier => $taxClass) {
231
  if ($taxClass->class_type != 'CUSTOMER'
232
  || $taxClass->execute != 1) {
233
  continue;
234
  }
235
  $countryTaxClasses[$countryId][(string)$taxClass->class_id] = (string)$taxClass->class_name;
236
  }
237
+ // @codingStandardsIgnoreEnd
238
  }
239
 
240
  return Zend_Json::encode($countryTaxClasses);
app/code/community/FireGento/MageSetup/Block/Adminhtml/Newsletter/Subscriber/Status.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -15,7 +15,7 @@
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 1.1.4
@@ -23,13 +23,9 @@
23
  /**
24
  * Newsletter Subscriber Status Grid Container
25
  *
26
- * @category FireGento
27
- * @package FireGento_MageSetup
28
- * @author FireGento Team <team@firegento.com>
29
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
30
- * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
31
- * @version $Id:$
32
- * @since 1.1.4
33
  */
34
  class FireGento_MageSetup_Block_Adminhtml_Newsletter_Subscriber_Status
35
  extends Mage_Adminhtml_Block_Widget_Grid_Container
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 1.1.4
23
  /**
24
  * Newsletter Subscriber Status Grid Container
25
  *
26
+ * @category FireGento
27
+ * @package FireGento_MageSetup
28
+ * @author FireGento Team <team@firegento.com>
 
 
 
 
29
  */
30
  class FireGento_MageSetup_Block_Adminhtml_Newsletter_Subscriber_Status
31
  extends Mage_Adminhtml_Block_Widget_Grid_Container
app/code/community/FireGento/MageSetup/Block/Adminhtml/Newsletter/Subscriber/Status/Grid.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -15,7 +15,7 @@
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 1.1.4
@@ -23,13 +23,9 @@
23
  /**
24
  * Newsletter Subscriber Status Grid
25
  *
26
- * @category FireGento
27
- * @package FireGento_MageSetup
28
- * @author FireGento Team <team@firegento.com>
29
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
30
- * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
31
- * @version $Id:$
32
- * @since 1.1.4
33
  */
34
  class FireGento_MageSetup_Block_Adminhtml_Newsletter_Subscriber_Status_Grid
35
  extends Mage_Adminhtml_Block_Widget_Grid
@@ -50,7 +46,6 @@ class FireGento_MageSetup_Block_Adminhtml_Newsletter_Subscriber_Status_Grid
50
  /**
51
  * Prepares the grid collection
52
  *
53
- * @see Mage_Adminhtml_Block_Widget_Grid::_prepareCollection()
54
  * @return FireGento_MageSetup_Block_Adminhtml_Newsletter_Subscriber_Status_Grid Grid
55
  */
56
  protected function _prepareCollection()
@@ -64,7 +59,6 @@ class FireGento_MageSetup_Block_Adminhtml_Newsletter_Subscriber_Status_Grid
64
  /**
65
  * Prepares the grid columns
66
  *
67
- * @see Mage_Adminhtml_Block_Widget_Grid::_prepareColumns()
68
  * @return FireGento_MageSetup_Block_Adminhtml_Newsletter_Subscriber_Status_Grid Grid
69
  */
70
  protected function _prepareColumns()
@@ -117,8 +111,7 @@ class FireGento_MageSetup_Block_Adminhtml_Newsletter_Subscriber_Status_Grid
117
  /**
118
  * Deactivate the grid row url
119
  *
120
- * @see Mage_Adminhtml_Block_Widget_Grid::getRowUrl()
121
- * @param Varien_Object $row
122
  * @return bool Row Url
123
  */
124
  public function getRowUrl($row)
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 1.1.4
23
  /**
24
  * Newsletter Subscriber Status Grid
25
  *
26
+ * @category FireGento
27
+ * @package FireGento_MageSetup
28
+ * @author FireGento Team <team@firegento.com>
 
 
 
 
29
  */
30
  class FireGento_MageSetup_Block_Adminhtml_Newsletter_Subscriber_Status_Grid
31
  extends Mage_Adminhtml_Block_Widget_Grid
46
  /**
47
  * Prepares the grid collection
48
  *
 
49
  * @return FireGento_MageSetup_Block_Adminhtml_Newsletter_Subscriber_Status_Grid Grid
50
  */
51
  protected function _prepareCollection()
59
  /**
60
  * Prepares the grid columns
61
  *
 
62
  * @return FireGento_MageSetup_Block_Adminhtml_Newsletter_Subscriber_Status_Grid Grid
63
  */
64
  protected function _prepareColumns()
111
  /**
112
  * Deactivate the grid row url
113
  *
114
+ * @param Varien_Object $row Newsletter Subscriber Status Model
 
115
  * @return bool Row Url
116
  */
117
  public function getRowUrl($row)
app/code/community/FireGento/MageSetup/Block/Adminhtml/Notifications.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -15,7 +15,7 @@
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.4.0
@@ -23,31 +23,22 @@
23
  /**
24
  * Displays MageSetup notifications
25
  *
26
- * @category FireGento
27
- * @package FireGento_MageSetup
28
- * @author FireGento Team <team@firegento.com>
29
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
30
- * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
31
- * @version $Id:$
32
- * @since 0.4.0
33
  */
34
  class FireGento_MageSetup_Block_Adminhtml_Notifications extends Mage_Adminhtml_Block_Template
35
  {
36
  /**
37
- * (non-PHPdoc)
38
- * @see Mage_Core_Block_Template::_construct()
39
  */
40
  protected function _construct()
41
  {
42
- $this->addData(
43
- array(
44
- 'cache_lifetime'=> null
45
- )
46
- );
47
  }
48
 
49
  /**
50
- * Returns a value that indicates if some of the german setup settings have already been initialized.
51
  *
52
  * @return bool Flag if MageSetup is already initialized
53
  */
@@ -66,6 +57,16 @@ class FireGento_MageSetup_Block_Adminhtml_Notifications extends Mage_Adminhtml_B
66
  return $this->getUrl('adminhtml/magesetup');
67
  }
68
 
 
 
 
 
 
 
 
 
 
 
69
  /**
70
  * ACL validation before html generation
71
  *
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.4.0
23
  /**
24
  * Displays MageSetup notifications
25
  *
26
+ * @category FireGento
27
+ * @package FireGento_MageSetup
28
+ * @author FireGento Team <team@firegento.com>
 
 
 
 
29
  */
30
  class FireGento_MageSetup_Block_Adminhtml_Notifications extends Mage_Adminhtml_Block_Template
31
  {
32
  /**
33
+ * Disable the block caching for this block
 
34
  */
35
  protected function _construct()
36
  {
37
+ $this->addData(array('cache_lifetime'=> null));
 
 
 
 
38
  }
39
 
40
  /**
41
+ * Returns a value that indicates if some of the magesetup settings have already been initialized.
42
  *
43
  * @return bool Flag if MageSetup is already initialized
44
  */
57
  return $this->getUrl('adminhtml/magesetup');
58
  }
59
 
60
+ /**
61
+ * Get magesetup installation skip action
62
+ *
63
+ * @return string URL for skip action
64
+ */
65
+ public function getSkipUrl()
66
+ {
67
+ return $this->getUrl('adminhtml/magesetup/skip');
68
+ }
69
+
70
  /**
71
  * ACL validation before html generation
72
  *
app/code/community/FireGento/MageSetup/Block/Bundle/Catalog/Product/Price.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -15,7 +15,7 @@
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.1.0
@@ -24,13 +24,9 @@
24
  * Enhanced block for product price display of bundle products. Contains the normal price.phtml
25
  * rendering and additionally a configured static block.
26
  *
27
- * @category FireGento
28
- * @package FireGento_MageSetup
29
- * @author FireGento Team <team@firegento.com>
30
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
31
- * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
32
- * @version $Id:$
33
- * @since 0.1.0
34
  */
35
  class FireGento_MageSetup_Block_Bundle_Catalog_Product_Price
36
  extends FireGento_MageSetup_Block_Bundle_Catalog_Product_Price_Abstract
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.1.0
24
  * Enhanced block for product price display of bundle products. Contains the normal price.phtml
25
  * rendering and additionally a configured static block.
26
  *
27
+ * @category FireGento
28
+ * @package FireGento_MageSetup
29
+ * @author FireGento Team <team@firegento.com>
 
 
 
 
30
  */
31
  class FireGento_MageSetup_Block_Bundle_Catalog_Product_Price
32
  extends FireGento_MageSetup_Block_Bundle_Catalog_Product_Price_Abstract
app/code/community/FireGento/MageSetup/Block/Bundle/Catalog/Product/Price/Abstract.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -15,7 +15,7 @@
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.1.0
@@ -24,15 +24,12 @@
24
  * Enhanced block for product price display of all products in spite of bundles (got own block!).
25
  * Contains the normal price.phtml rendering and additionally a configured static block.
26
  *
27
- * @category FireGento
28
- * @package FireGento_MageSetup
29
- * @author FireGento Team <team@firegento.com>
30
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
31
- * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
32
- * @version $Id:$
33
- * @since 0.1.0
34
  */
35
 
 
36
  if (Mage::getConfig()->getModuleConfig('Sitewards_B2BProfessional')->is('active', 'true')) {
37
 
38
  abstract class FireGento_MageSetup_Block_Bundle_Catalog_Product_Price_Abstract
@@ -50,3 +47,4 @@ if (Mage::getConfig()->getModuleConfig('Sitewards_B2BProfessional')->is('active'
50
  }
51
 
52
  }
 
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.1.0
24
  * Enhanced block for product price display of all products in spite of bundles (got own block!).
25
  * Contains the normal price.phtml rendering and additionally a configured static block.
26
  *
27
+ * @category FireGento
28
+ * @package FireGento_MageSetup
29
+ * @author FireGento Team <team@firegento.com>
 
 
 
 
30
  */
31
 
32
+ // @codingStandardsIgnoreStart
33
  if (Mage::getConfig()->getModuleConfig('Sitewards_B2BProfessional')->is('active', 'true')) {
34
 
35
  abstract class FireGento_MageSetup_Block_Bundle_Catalog_Product_Price_Abstract
47
  }
48
 
49
  }
50
+ // @codingStandardsIgnoreEnd
app/code/community/FireGento/MageSetup/Block/Catalog/Product/Price.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -15,7 +15,7 @@
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.1.0
@@ -24,13 +24,9 @@
24
  * Enhanced block for product price display of all products in spite of bundles (got own block!).
25
  * Contains the normal price.phtml rendering and additionally a configured static block.
26
  *
27
- * @category FireGento
28
- * @package FireGento_MageSetup
29
- * @author FireGento Team <team@firegento.com>
30
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
31
- * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
32
- * @version $Id:$
33
- * @since 0.1.0
34
  */
35
  class FireGento_MageSetup_Block_Catalog_Product_Price
36
  extends FireGento_MageSetup_Block_Catalog_Product_Price_Abstract
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.1.0
24
  * Enhanced block for product price display of all products in spite of bundles (got own block!).
25
  * Contains the normal price.phtml rendering and additionally a configured static block.
26
  *
27
+ * @category FireGento
28
+ * @package FireGento_MageSetup
29
+ * @author FireGento Team <team@firegento.com>
 
 
 
 
30
  */
31
  class FireGento_MageSetup_Block_Catalog_Product_Price
32
  extends FireGento_MageSetup_Block_Catalog_Product_Price_Abstract
app/code/community/FireGento/MageSetup/Block/Catalog/Product/Price/Abstract.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -15,7 +15,7 @@
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.1.0
@@ -24,15 +24,12 @@
24
  * Enhanced block for product price display of all products in spite of bundles (got own block!).
25
  * Contains the normal price.phtml rendering and additionally a configured static block.
26
  *
27
- * @category FireGento
28
- * @package FireGento_MageSetup
29
- * @author FireGento Team <team@firegento.com>
30
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
31
- * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
32
- * @version $Id:$
33
- * @since 0.1.0
34
  */
35
 
 
36
  if (
37
  Mage::getConfig()->getModuleConfig('Sitewards_B2BProfessional')->is('active', 'true')
38
  && version_compare (Mage::getConfig()->getModuleConfig('Sitewards_B2BProfessional')->version, '2.1.0', '<=' )
@@ -61,3 +58,4 @@ if (
61
  }
62
 
63
  }
 
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.1.0
24
  * Enhanced block for product price display of all products in spite of bundles (got own block!).
25
  * Contains the normal price.phtml rendering and additionally a configured static block.
26
  *
27
+ * @category FireGento
28
+ * @package FireGento_MageSetup
29
+ * @author FireGento Team <team@firegento.com>
 
 
 
 
30
  */
31
 
32
+ // @codingStandardsIgnoreStart
33
  if (
34
  Mage::getConfig()->getModuleConfig('Sitewards_B2BProfessional')->is('active', 'true')
35
  && version_compare (Mage::getConfig()->getModuleConfig('Sitewards_B2BProfessional')->version, '2.1.0', '<=' )
58
  }
59
 
60
  }
61
+ // @codingStandardsIgnoreEnd
app/code/community/FireGento/MageSetup/Block/Checkout/Agreements.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -15,7 +15,7 @@
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.1.0
@@ -23,37 +23,40 @@
23
  /**
24
  * Block to display agreements on checkout.
25
  *
26
- * @category FireGento
27
- * @package FireGento_MageSetup
28
- * @author FireGento Team <team@firegento.com>
29
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
30
- * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
31
- * @version $Id:$
32
- * @since 1.2.2
33
  */
34
  class FireGento_MageSetup_Block_Checkout_Agreements extends Mage_Checkout_Block_Agreements
35
  {
36
  /**
37
  * Filter by "Agreement Type"
38
  *
39
- * @return Mage_Checkout_Model_Resource_Agreement_Collection Agreements
40
  */
41
  public function getAgreements()
42
  {
43
- $agreements = parent::getAgreements();
44
- if ($this->_getCustomerSession()->isLoggedIn()) {
45
- $agreements->addFieldToFilter('agreement_type', array('in' => array(
46
- FireGento_MageSetup_Model_Source_AgreementType::AGREEMENT_TYPE_CHECKOUT,
47
- FireGento_MageSetup_Model_Source_AgreementType::AGREEMENT_TYPE_BOTH,
48
- )));
49
- } else {
50
- $agreements->addFieldToFilter('agreement_type', array('in' => array(
51
- FireGento_MageSetup_Model_Source_AgreementType::AGREEMENT_TYPE_CUSTOMER,
52
- FireGento_MageSetup_Model_Source_AgreementType::AGREEMENT_TYPE_CHECKOUT,
53
- FireGento_MageSetup_Model_Source_AgreementType::AGREEMENT_TYPE_BOTH,
54
- )));
 
 
 
 
 
 
 
55
  }
56
- return $agreements;
57
  }
58
 
59
  /**
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.1.0
23
  /**
24
  * Block to display agreements on checkout.
25
  *
26
+ * @category FireGento
27
+ * @package FireGento_MageSetup
28
+ * @author FireGento Team <team@firegento.com>
 
 
 
 
29
  */
30
  class FireGento_MageSetup_Block_Checkout_Agreements extends Mage_Checkout_Block_Agreements
31
  {
32
  /**
33
  * Filter by "Agreement Type"
34
  *
35
+ * @return Mage_Checkout_Model_Resource_Agreement_Collection Agreements|array
36
  */
37
  public function getAgreements()
38
  {
39
+ if (!$this->hasAgreements()) {
40
+ if (!Mage::getStoreConfigFlag('checkout/options/enable_agreements')) {
41
+ $agreements = array();
42
+ } else {
43
+ $agreements = parent::getAgreements();
44
+ if ($this->_getCustomerSession()->isLoggedIn()) {
45
+ $agreements->addFieldToFilter('agreement_type', array('in' => array(
46
+ FireGento_MageSetup_Model_Source_AgreementType::AGREEMENT_TYPE_CHECKOUT,
47
+ FireGento_MageSetup_Model_Source_AgreementType::AGREEMENT_TYPE_BOTH,
48
+ )));
49
+ } else {
50
+ $agreements->addFieldToFilter('agreement_type', array('in' => array(
51
+ FireGento_MageSetup_Model_Source_AgreementType::AGREEMENT_TYPE_CUSTOMER,
52
+ FireGento_MageSetup_Model_Source_AgreementType::AGREEMENT_TYPE_CHECKOUT,
53
+ FireGento_MageSetup_Model_Source_AgreementType::AGREEMENT_TYPE_BOTH,
54
+ )));
55
+ }
56
+ }
57
+ $this->setAgreements($agreements);
58
  }
59
+ return $this->getData('agreements');
60
  }
61
 
62
  /**
app/code/community/FireGento/MageSetup/Block/Checkout/Information.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -15,7 +15,7 @@
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.1.0
@@ -23,13 +23,9 @@
23
  /**
24
  * Block to enable ip anonymization for german tracking.
25
  *
26
- * @category FireGento
27
- * @package FireGento_MageSetup
28
- * @author FireGento Team <team@firegento.com>
29
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
30
- * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
31
- * @version $Id:$
32
- * @since 0.1.0
33
  */
34
  class FireGento_MageSetup_Block_Checkout_Information extends Mage_Core_Block_Template
35
  {
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.1.0
23
  /**
24
  * Block to enable ip anonymization for german tracking.
25
  *
26
+ * @category FireGento
27
+ * @package FireGento_MageSetup
28
+ * @author FireGento Team <team@firegento.com>
 
 
 
 
29
  */
30
  class FireGento_MageSetup_Block_Checkout_Information extends Mage_Core_Block_Template
31
  {
app/code/community/FireGento/MageSetup/Block/Customer/Account/Agreements.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -15,7 +15,7 @@
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.1.0
@@ -23,13 +23,9 @@
23
  /**
24
  * Block to display agreements on customer registration.
25
  *
26
- * @category FireGento
27
- * @package FireGento_MageSetup
28
- * @author FireGento Team <team@firegento.com>
29
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
30
- * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
31
- * @version $Id:$
32
- * @since 1.2.2
33
  */
34
  class FireGento_MageSetup_Block_Customer_Account_Agreements extends Mage_Checkout_Block_Agreements
35
  {
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.1.0
23
  /**
24
  * Block to display agreements on customer registration.
25
  *
26
+ * @category FireGento
27
+ * @package FireGento_MageSetup
28
+ * @author FireGento Team <team@firegento.com>
 
 
 
 
29
  */
30
  class FireGento_MageSetup_Block_Customer_Account_Agreements extends Mage_Checkout_Block_Agreements
31
  {
app/code/community/FireGento/MageSetup/Block/Ga.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -15,7 +15,7 @@
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.1.0
@@ -23,13 +23,9 @@
23
  /**
24
  * Block to enable ip anonymization for german tracking.
25
  *
26
- * @category FireGento
27
- * @package FireGento_MageSetup
28
- * @author FireGento Team <team@firegento.com>
29
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
30
- * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
31
- * @version $Id:$
32
- * @since 0.1.0
33
  */
34
  class FireGento_MageSetup_Block_Ga extends Mage_GoogleAnalytics_Block_Ga
35
  {
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.1.0
23
  /**
24
  * Block to enable ip anonymization for german tracking.
25
  *
26
+ * @category FireGento
27
+ * @package FireGento_MageSetup
28
+ * @author FireGento Team <team@firegento.com>
 
 
 
 
29
  */
30
  class FireGento_MageSetup_Block_Ga extends Mage_GoogleAnalytics_Block_Ga
31
  {
app/code/community/FireGento/MageSetup/Block/Imprint/Content.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -15,7 +15,7 @@
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.1.0
@@ -23,13 +23,9 @@
23
  /**
24
  * Block to retrieve data from imprint config.
25
  *
26
- * @category FireGento
27
- * @package FireGento_MageSetup
28
- * @author FireGento Team <team@firegento.com>
29
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
30
- * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
31
- * @version $Id:$
32
- * @since 0.1.0
33
  */
34
  class FireGento_MageSetup_Block_Imprint_Content extends Mage_Core_Block_Template
35
  {
@@ -72,7 +68,7 @@ class FireGento_MageSetup_Block_Imprint_Content extends Mage_Core_Block_Template
72
  * Retrieve the setting "website". If parameter checkForProtocol is true,
73
  * check if there is a valid protocol given, otherwise add http:// manually.
74
  *
75
- * @param bool $checkForProtocol Flag if website url should be checked for http(s) protocol
76
  * @return string Website URL
77
  */
78
  public function getWeb($checkForProtocol=false)
@@ -100,4 +96,33 @@ class FireGento_MageSetup_Block_Imprint_Content extends Mage_Core_Block_Template
100
 
101
  return Mage::app()->getLocale()->getCountryTranslation($countryCode);
102
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
103
  }
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.1.0
23
  /**
24
  * Block to retrieve data from imprint config.
25
  *
26
+ * @category FireGento
27
+ * @package FireGento_MageSetup
28
+ * @author FireGento Team <team@firegento.com>
 
 
 
 
29
  */
30
  class FireGento_MageSetup_Block_Imprint_Content extends Mage_Core_Block_Template
31
  {
68
  * Retrieve the setting "website". If parameter checkForProtocol is true,
69
  * check if there is a valid protocol given, otherwise add http:// manually.
70
  *
71
+ * @param bool $checkForProtocol Flag if website url should be checked for http(s) protocol
72
  * @return string Website URL
73
  */
74
  public function getWeb($checkForProtocol=false)
96
 
97
  return Mage::app()->getLocale()->getCountryTranslation($countryCode);
98
  }
99
+
100
+ /**
101
+ * Try to limit spam by generating a javascript email link
102
+ *
103
+ * @return string
104
+ */
105
+ public function getEmail($antispam = false)
106
+ {
107
+ $email = $this->getData('email');
108
+ $parts = explode('@', $email);
109
+
110
+ if (!$antispam) {return $email;}
111
+ if (count($parts) == 0) {return;}
112
+
113
+ $html = '<a href="#" onclick="javascript:toRecipient();">';
114
+ $html .= $parts[0] .'<span style="display:none">nospamplease</span>@<span style="display:none">nospamplease</span>'.$parts[1];
115
+ $html .= '</a>';
116
+ $html .= $this->getEmailJs($parts);
117
+
118
+ return $html;
119
+ }
120
+
121
+ public function getEmailJs($parts)
122
+ {
123
+ $js = <<<JS
124
+ <script>function toRecipient(){var m = '$parts[0]';m += '@';m += '$parts[1]';location.href= "mailto:"+m;}</script>
125
+ JS;
126
+ return $js;
127
+ }
128
  }
app/code/community/FireGento/MageSetup/Block/Imprint/Field.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -15,7 +15,7 @@
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.1.0
@@ -23,13 +23,9 @@
23
  /**
24
  * Block to retrieve data from imprint config field.
25
  *
26
- * @category FireGento
27
- * @package FireGento_MageSetup
28
- * @author FireGento Team <team@firegento.com>
29
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
30
- * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
31
- * @version $Id:$
32
- * @since 0.1.0
33
  */
34
  class FireGento_MageSetup_Block_Imprint_Field extends FireGento_MageSetup_Block_Imprint_Content
35
  {
@@ -40,6 +36,10 @@ class FireGento_MageSetup_Block_Imprint_Field extends FireGento_MageSetup_Block_
40
  */
41
  protected function _toHtml()
42
  {
 
 
 
 
43
  return $this->getData($this->getValue());
44
  }
45
- }
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.1.0
23
  /**
24
  * Block to retrieve data from imprint config field.
25
  *
26
+ * @category FireGento
27
+ * @package FireGento_MageSetup
28
+ * @author FireGento Team <team@firegento.com>
 
 
 
 
29
  */
30
  class FireGento_MageSetup_Block_Imprint_Field extends FireGento_MageSetup_Block_Imprint_Content
31
  {
36
  */
37
  protected function _toHtml()
38
  {
39
+ if ($this->getValue() == 'email') {
40
+ return $this->getEmail(true);
41
+ }
42
+
43
  return $this->getData($this->getValue());
44
  }
45
+ }
app/code/community/FireGento/MageSetup/Helper/Catalog/Product/Configuration.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -15,7 +15,7 @@
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 1.0.5
@@ -23,13 +23,9 @@
23
  /**
24
  * Changed product configuration to add product attributes on checkout
25
  *
26
- * @category FireGento
27
- * @package FireGento_MageSetup
28
- * @author FireGento Team <team@firegento.com>
29
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
30
- * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
31
- * @version $Id:$
32
- * @since 1.0.5
33
  */
34
  class FireGento_MageSetup_Helper_Catalog_Product_Configuration
35
  extends Mage_Catalog_Helper_Product_Configuration
@@ -47,7 +43,6 @@ class FireGento_MageSetup_Helper_Catalog_Product_Configuration
47
  /**
48
  * Merge Attributes
49
  *
50
- * @see parent::getCustomOptions()
51
  * @param Mage_Catalog_Model_Product_Configuration_Item_Interface $item Quote item
52
  * @return array Custom Options
53
  */
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 1.0.5
23
  /**
24
  * Changed product configuration to add product attributes on checkout
25
  *
26
+ * @category FireGento
27
+ * @package FireGento_MageSetup
28
+ * @author FireGento Team <team@firegento.com>
 
 
 
 
29
  */
30
  class FireGento_MageSetup_Helper_Catalog_Product_Configuration
31
  extends Mage_Catalog_Helper_Product_Configuration
43
  /**
44
  * Merge Attributes
45
  *
 
46
  * @param Mage_Catalog_Model_Product_Configuration_Item_Interface $item Quote item
47
  * @return array Custom Options
48
  */
app/code/community/FireGento/MageSetup/Helper/Checkout/Data.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -15,7 +15,7 @@
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.1.0
@@ -23,13 +23,9 @@
23
  /**
24
  * Rewrite to fetch required agreement ids.
25
  *
26
- * @category FireGento
27
- * @package FireGento_MageSetup
28
- * @author FireGento Team <team@firegento.com>
29
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
30
- * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
31
- * @version $Id:$
32
- * @since 0.1.0
33
  */
34
  class FireGento_MageSetup_Helper_Checkout_Data
35
  extends Mage_Checkout_Helper_Data
@@ -37,7 +33,7 @@ class FireGento_MageSetup_Helper_Checkout_Data
37
  /**
38
  * Avoid loss of translation
39
  */
40
- function __construct()
41
  {
42
  $this->_moduleName = 'Mage_Checkout';
43
  }
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.1.0
23
  /**
24
  * Rewrite to fetch required agreement ids.
25
  *
26
+ * @category FireGento
27
+ * @package FireGento_MageSetup
28
+ * @author FireGento Team <team@firegento.com>
 
 
 
 
29
  */
30
  class FireGento_MageSetup_Helper_Checkout_Data
31
  extends Mage_Checkout_Helper_Data
33
  /**
34
  * Avoid loss of translation
35
  */
36
+ public function __construct()
37
  {
38
  $this->_moduleName = 'Mage_Checkout';
39
  }
app/code/community/FireGento/MageSetup/Helper/Data.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -15,7 +15,7 @@
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.1.0
@@ -23,13 +23,9 @@
23
  /**
24
  * Dummy data helper for translation issues.
25
  *
26
- * @category FireGento
27
- * @package FireGento_MageSetup
28
- * @author FireGento Team <team@firegento.com>
29
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
30
- * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
31
- * @version $Id:$
32
- * @since 0.1.0
33
  */
34
  class FireGento_MageSetup_Helper_Data extends Mage_Core_Helper_Abstract
35
  {
@@ -77,7 +73,8 @@ class FireGento_MageSetup_Helper_Data extends Mage_Core_Helper_Abstract
77
  $config = Mage::getConfig()->getNode('global/magesetup/available_countries');
78
  if ($config) {
79
  foreach (array_keys($config->asArray()) as $countryId) {
80
- $availableCountries[$countryId] = Mage::app()->getLocale()->getCountryTranslation(strtoupper($countryId));
 
81
  }
82
  }
83
  asort($availableCountries);
@@ -87,8 +84,8 @@ class FireGento_MageSetup_Helper_Data extends Mage_Core_Helper_Abstract
87
  /**
88
  * Check whether specified country is in EU countries list
89
  *
90
- * @param string $countryCode
91
- * @return bool
92
  */
93
  public function isCountryInEU($countryCode)
94
  {
@@ -98,10 +95,23 @@ class FireGento_MageSetup_Helper_Data extends Mage_Core_Helper_Abstract
98
  /**
99
  * Get countries in the EU
100
  *
101
- * @return array
102
  */
103
  public function getEUCountries()
104
  {
105
  return explode(',', Mage::getStoreConfig(self::XML_PATH_EU_COUNTRIES_LIST));
106
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
107
  }
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.1.0
23
  /**
24
  * Dummy data helper for translation issues.
25
  *
26
+ * @category FireGento
27
+ * @package FireGento_MageSetup
28
+ * @author FireGento Team <team@firegento.com>
 
 
 
 
29
  */
30
  class FireGento_MageSetup_Helper_Data extends Mage_Core_Helper_Abstract
31
  {
73
  $config = Mage::getConfig()->getNode('global/magesetup/available_countries');
74
  if ($config) {
75
  foreach (array_keys($config->asArray()) as $countryId) {
76
+ $countryName = Mage::app()->getLocale()->getCountryTranslation(strtoupper($countryId));
77
+ $availableCountries[$countryId] = $countryName;
78
  }
79
  }
80
  asort($availableCountries);
84
  /**
85
  * Check whether specified country is in EU countries list
86
  *
87
+ * @param string $countryCode Country Code
88
+ * @return bool Flag if country is an EU country
89
  */
90
  public function isCountryInEU($countryCode)
91
  {
95
  /**
96
  * Get countries in the EU
97
  *
98
+ * @return array EU Countries
99
  */
100
  public function getEUCountries()
101
  {
102
  return explode(',', Mage::getStoreConfig(self::XML_PATH_EU_COUNTRIES_LIST));
103
  }
104
+
105
+ /**
106
+ * Set initialization status config flag and refresh config cache.
107
+ *
108
+ * @param bool $isInitialized Flag for initialization
109
+ */
110
+ public function setIsInitialized($isInitialized = true)
111
+ {
112
+ $isInitialized = (bool)$isInitialized ? '1' : '0';
113
+ Mage::getModel('eav/entity_setup', 'core_setup')->setConfigData('magesetup/is_initialized', $isInitialized);
114
+ Mage::app()->getCacheInstance()->cleanType('config');
115
+ Mage::dispatchEvent('adminhtml_cache_refresh_type', array('type' => 'config'));
116
+ }
117
  }
app/code/community/FireGento/MageSetup/Model/Config.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -15,7 +15,7 @@
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.2.0
@@ -23,13 +23,9 @@
23
  /**
24
  * Config class
25
  *
26
- * @category FireGento
27
- * @package FireGento_MageSetup
28
- * @author FireGento Team <team@firegento.com>
29
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
30
- * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
31
- * @version $Id:$
32
- * @since 0.2.0
33
  */
34
  class FireGento_MageSetup_Model_Config extends Varien_Simplexml_Config
35
  {
@@ -39,7 +35,7 @@ class FireGento_MageSetup_Model_Config extends Varien_Simplexml_Config
39
  /**
40
  * @var string
41
  */
42
- protected $_country = 'de';
43
 
44
  /**
45
  * Sets cache ID and cache tags and loads configuration
@@ -66,6 +62,19 @@ class FireGento_MageSetup_Model_Config extends Varien_Simplexml_Config
66
  return $this;
67
  }
68
 
 
 
 
 
 
 
 
 
 
 
 
 
 
69
  /**
70
  * Merge default config with config from additional xml files
71
  *
@@ -111,7 +120,7 @@ class FireGento_MageSetup_Model_Config extends Varien_Simplexml_Config
111
  protected function _addConfigFile($fileName, $mergeConfig)
112
  {
113
  $config = Mage::getConfig();
114
- $configFile = $config->getModuleDir('etc', 'FireGento_MageSetup') . DS . $this->_country . DS . $fileName;
115
 
116
  // If the given file does not exist, use the default file
117
  if (!file_exists($configFile)) {
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.2.0
23
  /**
24
  * Config class
25
  *
26
+ * @category FireGento
27
+ * @package FireGento_MageSetup
28
+ * @author FireGento Team <team@firegento.com>
 
 
 
 
29
  */
30
  class FireGento_MageSetup_Model_Config extends Varien_Simplexml_Config
31
  {
35
  /**
36
  * @var string
37
  */
38
+ protected $_country;
39
 
40
  /**
41
  * Sets cache ID and cache tags and loads configuration
62
  return $this;
63
  }
64
 
65
+ /**
66
+ * Get the current country for the config
67
+ *
68
+ * @return string
69
+ */
70
+ public function getCountry()
71
+ {
72
+ if (empty($this->_country)) {
73
+ $this->_country = strtolower(Mage::getStoreConfig('general/country/default'));
74
+ }
75
+ return $this->_country;
76
+ }
77
+
78
  /**
79
  * Merge default config with config from additional xml files
80
  *
120
  protected function _addConfigFile($fileName, $mergeConfig)
121
  {
122
  $config = Mage::getConfig();
123
+ $configFile = $config->getModuleDir('etc', 'FireGento_MageSetup') . DS . $this->getCountry() . DS . $fileName;
124
 
125
  // If the given file does not exist, use the default file
126
  if (!file_exists($configFile)) {
app/code/community/FireGento/MageSetup/Model/Newsletter/Observer.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -15,7 +15,7 @@
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 1.1.4
@@ -23,13 +23,9 @@
23
  /**
24
  * Observer class
25
  *
26
- * @category FireGento
27
- * @package FireGento_MageSetup
28
- * @author FireGento Team <team@firegento.com>
29
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
30
- * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
31
- * @version $Id:$
32
- * @since 1.1.4
33
  */
34
  class FireGento_MageSetup_Model_Newsletter_Observer
35
  {
@@ -37,7 +33,8 @@ class FireGento_MageSetup_Model_Newsletter_Observer
37
  * Saves the subscriber status change in a custom history
38
  * after a subscriber was saved.
39
  *
40
- * @magentoEvent newsletter_subscriber_save_after
 
41
  * @param Varien_Event_Observer $observer Observer
42
  */
43
  public function saveSubscriberStatusHistory(Varien_Event_Observer $observer)
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 1.1.4
23
  /**
24
  * Observer class
25
  *
26
+ * @category FireGento
27
+ * @package FireGento_MageSetup
28
+ * @author FireGento Team <team@firegento.com>
 
 
 
 
29
  */
30
  class FireGento_MageSetup_Model_Newsletter_Observer
31
  {
33
  * Saves the subscriber status change in a custom history
34
  * after a subscriber was saved.
35
  *
36
+ * Event: <newsletter_subscriber_save_after>
37
+ *
38
  * @param Varien_Event_Observer $observer Observer
39
  */
40
  public function saveSubscriberStatusHistory(Varien_Event_Observer $observer)
app/code/community/FireGento/MageSetup/Model/Newsletter/Subscriber/Status.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -15,7 +15,7 @@
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 1.1.4
@@ -23,13 +23,9 @@
23
  /**
24
  * Subscriber Status Model
25
  *
26
- * @category FireGento
27
- * @package FireGento_MageSetup
28
- * @author FireGento Team <team@firegento.com>
29
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
30
- * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
31
- * @version $Id:$
32
- * @since 1.1.4
33
  */
34
  class FireGento_MageSetup_Model_Newsletter_Subscriber_Status
35
  extends Mage_Core_Model_Abstract
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 1.1.4
23
  /**
24
  * Subscriber Status Model
25
  *
26
+ * @category FireGento
27
+ * @package FireGento_MageSetup
28
+ * @author FireGento Team <team@firegento.com>
 
 
 
 
29
  */
30
  class FireGento_MageSetup_Model_Newsletter_Subscriber_Status
31
  extends Mage_Core_Model_Abstract
app/code/community/FireGento/MageSetup/Model/Observer.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -15,7 +15,7 @@
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.2.0
@@ -23,20 +23,16 @@
23
  /**
24
  * Observer class
25
  *
26
- * @category FireGento
27
- * @package FireGento_MageSetup
28
- * @author FireGento Team <team@firegento.com>
29
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
30
- * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
31
- * @version $Id:$
32
- * @since 0.2.0
33
  */
34
  class FireGento_MageSetup_Model_Observer
35
  {
36
  /**
37
  * Add "Visible on Checkout Review on Front-end" Option to Attribute Settings
38
  *
39
- * @magentoEvent adminhtml_catalog_product_attribute_edit_prepare_form
40
  *
41
  * @param Varien_Event_Observer $observer Observer
42
  * @return FireGento_MageSetup_Model_Observer Observer
@@ -68,7 +64,7 @@ class FireGento_MageSetup_Model_Observer
68
  * Filters all agreements against the Magento template filter. This enables the Magento
69
  * administrator define a cms static block as the content of the checkout agreements..
70
  *
71
- * @magentoEvent core_block_abstract_to_html_before
72
  *
73
  * @param Varien_Event_Observer $observer Observer
74
  * @return FireGento_MageSetup_Model_Observer Observer
@@ -108,8 +104,7 @@ class FireGento_MageSetup_Model_Observer
108
 
109
  /**
110
  * Auto-Generates the meta information of a product.
111
- *
112
- * @magentoEvent catalog_product_save_before
113
  *
114
  * @param Varien_Event_Observer $observer Observer
115
  * @return FireGento_MageSetup_Model_Observer Observer
@@ -218,7 +213,7 @@ class FireGento_MageSetup_Model_Observer
218
  /**
219
  * Processes the category array and generates a string
220
  *
221
- * @param array $categoryTypes Categories
222
  * @return string Keywords
223
  */
224
  protected function _buildKeywords($categoryTypes)
@@ -238,7 +233,7 @@ class FireGento_MageSetup_Model_Observer
238
  /**
239
  * Add "Required" and "Visible on Custom Creation" Option to Checkout Agreements
240
  *
241
- * @magentoEvent adminhtml_block_html_before
242
  *
243
  * @param Varien_Event_Observer $observer Observer
244
  * @return FireGento_MageSetup_Model_Observer Observer
@@ -288,7 +283,7 @@ class FireGento_MageSetup_Model_Observer
288
  /**
289
  * After updating the quantities of cart items, it might be needed to recalculate the shipping tax
290
  *
291
- * @magentoEvent checkout_cart_update_items_after
292
  *
293
  * @param Varien_Event_Observer $observer Observer
294
  */
@@ -328,7 +323,7 @@ class FireGento_MageSetup_Model_Observer
328
  * Check if there are required agreements for the customer registration
329
  * and validate them if applicable.
330
  *
331
- * @magentoEvent controller_action_predispatch_customer_account_createpost
332
  *
333
  * @param Varien_Event_Observer $observer Observer
334
  */
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.2.0
23
  /**
24
  * Observer class
25
  *
26
+ * @category FireGento
27
+ * @package FireGento_MageSetup
28
+ * @author FireGento Team <team@firegento.com>
 
 
 
 
29
  */
30
  class FireGento_MageSetup_Model_Observer
31
  {
32
  /**
33
  * Add "Visible on Checkout Review on Front-end" Option to Attribute Settings
34
  *
35
+ * Event: <adminhtml_catalog_product_attribute_edit_prepare_form>
36
  *
37
  * @param Varien_Event_Observer $observer Observer
38
  * @return FireGento_MageSetup_Model_Observer Observer
64
  * Filters all agreements against the Magento template filter. This enables the Magento
65
  * administrator define a cms static block as the content of the checkout agreements..
66
  *
67
+ * Event: <core_block_abstract_to_html_before>
68
  *
69
  * @param Varien_Event_Observer $observer Observer
70
  * @return FireGento_MageSetup_Model_Observer Observer
104
 
105
  /**
106
  * Auto-Generates the meta information of a product.
107
+ * Event: <catalog_product_save_before>
 
108
  *
109
  * @param Varien_Event_Observer $observer Observer
110
  * @return FireGento_MageSetup_Model_Observer Observer
213
  /**
214
  * Processes the category array and generates a string
215
  *
216
+ * @param array $categoryTypes Categories
217
  * @return string Keywords
218
  */
219
  protected function _buildKeywords($categoryTypes)
233
  /**
234
  * Add "Required" and "Visible on Custom Creation" Option to Checkout Agreements
235
  *
236
+ * Event: <adminhtml_block_html_before>
237
  *
238
  * @param Varien_Event_Observer $observer Observer
239
  * @return FireGento_MageSetup_Model_Observer Observer
283
  /**
284
  * After updating the quantities of cart items, it might be needed to recalculate the shipping tax
285
  *
286
+ * Event: <checkout_cart_update_items_after>
287
  *
288
  * @param Varien_Event_Observer $observer Observer
289
  */
323
  * Check if there are required agreements for the customer registration
324
  * and validate them if applicable.
325
  *
326
+ * Event: <controller_action_predispatch_customer_account_createpost>
327
  *
328
  * @param Varien_Event_Observer $observer Observer
329
  */
app/code/community/FireGento/MageSetup/Model/Resource/Newsletter/Subscriber/Status.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -15,7 +15,7 @@
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 1.1.4
@@ -23,13 +23,9 @@
23
  /**
24
  * Subscriber Status Resource Model
25
  *
26
- * @category FireGento
27
- * @package FireGento_MageSetup
28
- * @author FireGento Team <team@firegento.com>
29
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
30
- * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
31
- * @version $Id:$
32
- * @since 1.1.4
33
  */
34
  class FireGento_MageSetup_Model_Resource_Newsletter_Subscriber_Status
35
  extends Mage_Core_Model_Resource_Db_Abstract
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 1.1.4
23
  /**
24
  * Subscriber Status Resource Model
25
  *
26
+ * @category FireGento
27
+ * @package FireGento_MageSetup
28
+ * @author FireGento Team <team@firegento.com>
 
 
 
 
29
  */
30
  class FireGento_MageSetup_Model_Resource_Newsletter_Subscriber_Status
31
  extends Mage_Core_Model_Resource_Db_Abstract
app/code/community/FireGento/MageSetup/Model/Resource/Newsletter/Subscriber/Status/Collection.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -15,7 +15,7 @@
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 1.1.4
@@ -23,13 +23,9 @@
23
  /**
24
  * Subscriber Status Resource Collection Model
25
  *
26
- * @category FireGento
27
- * @package FireGento_MageSetup
28
- * @author FireGento Team <team@firegento.com>
29
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
30
- * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
31
- * @version $Id:$
32
- * @since 1.1.4
33
  */
34
  class FireGento_MageSetup_Model_Resource_Newsletter_Subscriber_Status_Collection
35
  extends Mage_Core_Model_Resource_Db_Collection_Abstract
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 1.1.4
23
  /**
24
  * Subscriber Status Resource Collection Model
25
  *
26
+ * @category FireGento
27
+ * @package FireGento_MageSetup
28
+ * @author FireGento Team <team@firegento.com>
 
 
 
 
29
  */
30
  class FireGento_MageSetup_Model_Resource_Newsletter_Subscriber_Status_Collection
31
  extends Mage_Core_Model_Resource_Db_Collection_Abstract
app/code/community/FireGento/MageSetup/Model/Setup.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -15,7 +15,7 @@
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.2.0
@@ -23,13 +23,9 @@
23
  /**
24
  * Setup class
25
  *
26
- * @category FireGento
27
- * @package FireGento_MageSetup
28
- * @author FireGento Team <team@firegento.com>
29
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
30
- * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
31
- * @version $Id:$
32
- * @since 1.2.0
33
  */
34
  class FireGento_MageSetup_Model_Setup extends Mage_Core_Model_Abstract
35
  {
@@ -43,12 +39,18 @@ class FireGento_MageSetup_Model_Setup extends Mage_Core_Model_Abstract
43
  */
44
  public function setup($params = array(), $notify=false)
45
  {
 
 
 
 
 
 
 
 
46
  $defaultParams = $this->_getDefaultParams();
47
 
48
  $params = array_merge($defaultParams, $params);
49
 
50
- Mage::register('setup_country', $params['country']);
51
-
52
  if ($params['systemconfig']) {
53
  Mage::getSingleton('magesetup/setup_systemconfig')->setup();
54
 
@@ -125,9 +127,7 @@ class FireGento_MageSetup_Model_Setup extends Mage_Core_Model_Abstract
125
  }
126
 
127
  // Set a config flag to indicate that the setup has been initialized and refresh config cache.
128
- Mage::getModel('eav/entity_setup', 'core_setup')->setConfigData('magesetup/is_initialized', '1');
129
- Mage::app()->getCacheInstance()->cleanType('config');
130
- Mage::dispatchEvent('adminhtml_cache_refresh_type', array('type' => 'config'));
131
 
132
  return $this;
133
  }
@@ -141,12 +141,14 @@ class FireGento_MageSetup_Model_Setup extends Mage_Core_Model_Abstract
141
  {
142
  $productTaxClassTargets = array();
143
  foreach (Mage::getSingleton('magesetup/source_tax_productTaxClass')->getAllOptions() as $option) {
144
- $productTaxClassTargets[$option['value']] = 1;
 
145
  }
146
 
147
  $customerTaxClassTargets = array();
148
  foreach (Mage::getSingleton('magesetup/source_tax_customerTaxClass')->getAllOptions() as $option) {
149
- $customerTaxClassTargets[$option['value']] = 1;
 
150
  }
151
 
152
  return array(
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.2.0
23
  /**
24
  * Setup class
25
  *
26
+ * @category FireGento
27
+ * @package FireGento_MageSetup
28
+ * @author FireGento Team <team@firegento.com>
 
 
 
 
29
  */
30
  class FireGento_MageSetup_Model_Setup extends Mage_Core_Model_Abstract
31
  {
39
  */
40
  public function setup($params = array(), $notify=false)
41
  {
42
+ if (!isset($params['country'])) {
43
+ Mage::throwException(
44
+ $this->_getHelper()->__('MageSetup: Please set up a country in your parameters.')
45
+ );
46
+ }
47
+
48
+ Mage::register('setup_country', $params['country']);
49
+
50
  $defaultParams = $this->_getDefaultParams();
51
 
52
  $params = array_merge($defaultParams, $params);
53
 
 
 
54
  if ($params['systemconfig']) {
55
  Mage::getSingleton('magesetup/setup_systemconfig')->setup();
56
 
127
  }
128
 
129
  // Set a config flag to indicate that the setup has been initialized and refresh config cache.
130
+ $this->_getHelper()->setIsInitialized();
 
 
131
 
132
  return $this;
133
  }
141
  {
142
  $productTaxClassTargets = array();
143
  foreach (Mage::getSingleton('magesetup/source_tax_productTaxClass')->getAllOptions() as $option) {
144
+ $value = Mage::getSingleton('magesetup/source_tax_newProductTaxClass')->getDefaultOption();
145
+ $productTaxClassTargets[$option['value']] = $value;
146
  }
147
 
148
  $customerTaxClassTargets = array();
149
  foreach (Mage::getSingleton('magesetup/source_tax_customerTaxClass')->getAllOptions() as $option) {
150
+ $value = Mage::getSingleton('magesetup/source_tax_newCustomerTaxClass')->getDefaultOption();
151
+ $customerTaxClassTargets[$option['value']] = $value;
152
  }
153
 
154
  return array(
app/code/community/FireGento/MageSetup/Model/Setup/Abstract.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -15,7 +15,7 @@
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.2.0
@@ -23,13 +23,9 @@
23
  /**
24
  * Setup class
25
  *
26
- * @category FireGento
27
- * @package FireGento_MageSetup
28
- * @author FireGento Team <team@firegento.com>
29
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
30
- * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
31
- * @version $Id:$
32
- * @since 0.2.0
33
  */
34
  class FireGento_MageSetup_Model_Setup_Abstract extends Mage_Core_Model_Abstract
35
  {
@@ -65,9 +61,9 @@ class FireGento_MageSetup_Model_Setup_Abstract extends Mage_Core_Model_Abstract
65
  /**
66
  * Saves a system config value for the given config path and the given store id
67
  *
68
- * @param string $configPath Config Path
69
- * @param string $value Value
70
- * @param int|null $storeId Store ID
71
  */
72
  public function setConfigData($configPath, $value, $storeId = null)
73
  {
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.2.0
23
  /**
24
  * Setup class
25
  *
26
+ * @category FireGento
27
+ * @package FireGento_MageSetup
28
+ * @author FireGento Team <team@firegento.com>
 
 
 
 
29
  */
30
  class FireGento_MageSetup_Model_Setup_Abstract extends Mage_Core_Model_Abstract
31
  {
61
  /**
62
  * Saves a system config value for the given config path and the given store id
63
  *
64
+ * @param string $configPath Config Path
65
+ * @param string $value Value
66
+ * @param int|null $storeId Store ID
67
  */
68
  public function setConfigData($configPath, $value, $storeId = null)
69
  {
app/code/community/FireGento/MageSetup/Model/Setup/Agreements.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -15,7 +15,7 @@
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.2.0
@@ -23,13 +23,9 @@
23
  /**
24
  * Setup class for Checkout Agreements
25
  *
26
- * @category FireGento
27
- * @package FireGento_MageSetup
28
- * @author FireGento Team <team@firegento.com>
29
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
30
- * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
31
- * @version $Id:$
32
- * @since 0.5.0
33
  */
34
  class FireGento_MageSetup_Model_Setup_Agreements extends FireGento_MageSetup_Model_Setup_Abstract
35
  {
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.2.0
23
  /**
24
  * Setup class for Checkout Agreements
25
  *
26
+ * @category FireGento
27
+ * @package FireGento_MageSetup
28
+ * @author FireGento Team <team@firegento.com>
 
 
 
 
29
  */
30
  class FireGento_MageSetup_Model_Setup_Agreements extends FireGento_MageSetup_Model_Setup_Abstract
31
  {
app/code/community/FireGento/MageSetup/Model/Setup/Cms.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -15,7 +15,7 @@
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.2.0
@@ -23,13 +23,9 @@
23
  /**
24
  * Setup class for CMS pages and blocks
25
  *
26
- * @category FireGento
27
- * @package FireGento_MageSetup
28
- * @author FireGento Team <team@firegento.com>
29
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
30
- * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
31
- * @version $Id:$
32
- * @since 0.5.0
33
  */
34
  class FireGento_MageSetup_Model_Setup_Cms extends FireGento_MageSetup_Model_Setup_Abstract
35
  {
@@ -161,7 +157,12 @@ class FireGento_MageSetup_Model_Setup_Cms extends FireGento_MageSetup_Model_Setu
161
 
162
  $data['content'] = $templateContent;
163
 
164
- $page = Mage::getModel('cms/page')->setStoreId($storeId)->load($data['identifier']);
 
 
 
 
 
165
  if (is_array($page->getStoreId()) && !in_array(intval($storeId), $page->getStoreId())) {
166
  $page = Mage::getModel('cms/page');
167
  } else {
@@ -169,7 +170,8 @@ class FireGento_MageSetup_Model_Setup_Cms extends FireGento_MageSetup_Model_Setu
169
  }
170
 
171
  if (!(int) $page->getId() || $override) {
172
- $page->setData($data)->save();
 
173
  }
174
 
175
  if (!$storeId) {
@@ -261,8 +263,8 @@ class FireGento_MageSetup_Model_Setup_Cms extends FireGento_MageSetup_Model_Setu
261
  /**
262
  * Update footer_links cms block
263
  *
264
- * @param array $blockData Cms block data
265
- * @param int|null $storeId Store ID
266
  */
267
  protected function _updateFooterLinksBlock($blockData, $storeId = null)
268
  {
@@ -322,4 +324,17 @@ class FireGento_MageSetup_Model_Setup_Cms extends FireGento_MageSetup_Model_Setu
322
  ->addFieldToFilter('identifier', $identifier)
323
  ->addStoreFilter(0)->getFirstItem();
324
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
325
  }
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.2.0
23
  /**
24
  * Setup class for CMS pages and blocks
25
  *
26
+ * @category FireGento
27
+ * @package FireGento_MageSetup
28
+ * @author FireGento Team <team@firegento.com>
 
 
 
 
29
  */
30
  class FireGento_MageSetup_Model_Setup_Cms extends FireGento_MageSetup_Model_Setup_Abstract
31
  {
157
 
158
  $data['content'] = $templateContent;
159
 
160
+ if (is_null($storeId)) {
161
+ $page = $this->_getDefaultPage($data['identifier']);
162
+ } else {
163
+ $page = Mage::getModel('cms/page')->setStoreId($storeId)->load($data['identifier']);
164
+ }
165
+
166
  if (is_array($page->getStoreId()) && !in_array(intval($storeId), $page->getStoreId())) {
167
  $page = Mage::getModel('cms/page');
168
  } else {
170
  }
171
 
172
  if (!(int) $page->getId() || $override) {
173
+ $page->addData($data);
174
+ $page->save();
175
  }
176
 
177
  if (!$storeId) {
263
  /**
264
  * Update footer_links cms block
265
  *
266
+ * @param array $blockData Cms block data
267
+ * @param int|null $storeId Store ID
268
  */
269
  protected function _updateFooterLinksBlock($blockData, $storeId = null)
270
  {
324
  ->addFieldToFilter('identifier', $identifier)
325
  ->addStoreFilter(0)->getFirstItem();
326
  }
327
+
328
+ /**
329
+ * Retrieve the default page for the given identifier
330
+ *
331
+ * @param string $identifier Page Identifier
332
+ * @return Mage_Cms_Model_Page Page Model
333
+ */
334
+ protected function _getDefaultPage($identifier)
335
+ {
336
+ return Mage::getResourceModel('cms/page_collection')
337
+ ->addFieldToFilter('identifier', $identifier)
338
+ ->addStoreFilter(0)->getFirstItem();
339
+ }
340
  }
app/code/community/FireGento/MageSetup/Model/Setup/Email.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -15,7 +15,7 @@
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.2.0
@@ -23,13 +23,9 @@
23
  /**
24
  * Setup class for transaction emails
25
  *
26
- * @category FireGento
27
- * @package FireGento_MageSetup
28
- * @author FireGento Team <team@firegento.com>
29
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
30
- * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
31
- * @version $Id:$
32
- * @since 0.5.0
33
  */
34
  class FireGento_MageSetup_Model_Setup_Email extends FireGento_MageSetup_Model_Setup_Abstract
35
  {
@@ -156,8 +152,9 @@ class FireGento_MageSetup_Model_Setup_Email extends FireGento_MageSetup_Model_Se
156
  protected function _getLocaleEmailPath($locale)
157
  {
158
  if (!isset($this->_localeTemplatePath[$locale])) {
159
- $_localeTemplatePath = Mage::getBaseDir() . DS . 'app' . DS . 'locale' . DS . $locale . DS . 'template' . DS . 'email' . DS;
160
- $this->_localeTemplatePath[$locale] = $_localeTemplatePath;
 
161
  if (!is_dir($this->_localeTemplatePath[$locale])) {
162
  Mage::throwException(
163
  Mage::helper('magesetup')->__(
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.2.0
23
  /**
24
  * Setup class for transaction emails
25
  *
26
+ * @category FireGento
27
+ * @package FireGento_MageSetup
28
+ * @author FireGento Team <team@firegento.com>
 
 
 
 
29
  */
30
  class FireGento_MageSetup_Model_Setup_Email extends FireGento_MageSetup_Model_Setup_Abstract
31
  {
152
  protected function _getLocaleEmailPath($locale)
153
  {
154
  if (!isset($this->_localeTemplatePath[$locale])) {
155
+ $_localeTemplatePath = 'app' . DS . 'locale' . DS . $locale . DS . 'template' . DS . 'email' . DS;
156
+ $this->_localeTemplatePath[$locale] = Mage::getBaseDir() . DS . $_localeTemplatePath;
157
+
158
  if (!is_dir($this->_localeTemplatePath[$locale])) {
159
  Mage::throwException(
160
  Mage::helper('magesetup')->__(
app/code/community/FireGento/MageSetup/Model/Setup/Systemconfig.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -15,7 +15,7 @@
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.2.0
@@ -23,13 +23,9 @@
23
  /**
24
  * Setup class for Tax Settings
25
  *
26
- * @category FireGento
27
- * @package FireGento_MageSetup
28
- * @author FireGento Team <team@firegento.com>
29
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
30
- * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
31
- * @version $Id:$
32
- * @since 0.5.0
33
  */
34
  class FireGento_MageSetup_Model_Setup_Systemconfig extends FireGento_MageSetup_Model_Setup_Abstract
35
  {
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.2.0
23
  /**
24
  * Setup class for Tax Settings
25
  *
26
+ * @category FireGento
27
+ * @package FireGento_MageSetup
28
+ * @author FireGento Team <team@firegento.com>
 
 
 
 
29
  */
30
  class FireGento_MageSetup_Model_Setup_Systemconfig extends FireGento_MageSetup_Model_Setup_Abstract
31
  {
app/code/community/FireGento/MageSetup/Model/Setup/Tax.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -15,7 +15,7 @@
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.2.0
@@ -23,13 +23,9 @@
23
  /**
24
  * Setup class for Tax Settings
25
  *
26
- * @category FireGento
27
- * @package FireGento_MageSetup
28
- * @author FireGento Team <team@firegento.com>
29
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
30
- * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
31
- * @version $Id:$
32
- * @since 0.5.0
33
  */
34
  class FireGento_MageSetup_Model_Setup_Tax extends FireGento_MageSetup_Model_Setup_Abstract
35
  {
@@ -59,15 +55,11 @@ class FireGento_MageSetup_Model_Setup_Tax extends FireGento_MageSetup_Model_Setu
59
  */
60
  public function setup()
61
  {
62
- $canTruncate = true;
63
-
64
- if ($canTruncate) {
65
- $this->_truncateTable('tax/tax_class');
66
- $this->_truncateTable('tax/tax_calculation_rule');
67
- $this->_truncateTable('tax/tax_calculation_rate');
68
- $this->_truncateTable('tax/tax_calculation_rate_title');
69
- $this->_truncateTable('tax/tax_calculation');
70
- }
71
 
72
  // Tax classes
73
  $taxClasses = array();
@@ -162,7 +154,7 @@ class FireGento_MageSetup_Model_Setup_Tax extends FireGento_MageSetup_Model_Setu
162
  protected function _createTaxClass($taxClassData)
163
  {
164
  $this->_insertIntoTable('tax/tax_class', $taxClassData);
165
- return $this->_lastInsertId($this->_getTable('tax/tax_class'));
166
  }
167
 
168
  /**
@@ -202,7 +194,7 @@ class FireGento_MageSetup_Model_Setup_Tax extends FireGento_MageSetup_Model_Setu
202
  }
203
 
204
  // base tax rate db entry
205
- $calculationRateTable = $this->_getTable('tax/tax_calculation_rate');
206
  $this->_insertIntoTable($calculationRateTable, $taxCalcRateData);
207
  $rateId = $this->_lastInsertId($calculationRateTable);
208
 
@@ -309,8 +301,7 @@ class FireGento_MageSetup_Model_Setup_Tax extends FireGento_MageSetup_Model_Setu
309
  * DELETE is used, in order to prevent problems with
310
  * foreign key checks.
311
  *
312
- * @param string $table
313
- * @return void
314
  */
315
  protected function _truncateTable($table)
316
  {
@@ -321,9 +312,8 @@ class FireGento_MageSetup_Model_Setup_Tax extends FireGento_MageSetup_Model_Setu
321
  /**
322
  * Insert a line into a database table
323
  *
324
- * @param string $table
325
- * @param array $data
326
- * @return void
327
  */
328
  protected function _insertIntoTable($table, $data)
329
  {
@@ -333,7 +323,9 @@ class FireGento_MageSetup_Model_Setup_Tax extends FireGento_MageSetup_Model_Setu
333
  }
334
 
335
  /**
336
- * @return Varien_Db_Adapter_Pdo_Mysql
 
 
337
  */
338
  protected function _getConnection()
339
  {
@@ -341,7 +333,9 @@ class FireGento_MageSetup_Model_Setup_Tax extends FireGento_MageSetup_Model_Setu
341
  }
342
 
343
  /**
344
- * @return Mage_Eav_Model_Entity_Setup
 
 
345
  */
346
  protected function _getSetup()
347
  {
@@ -351,8 +345,8 @@ class FireGento_MageSetup_Model_Setup_Tax extends FireGento_MageSetup_Model_Setu
351
  /**
352
  * Get table name from table alias
353
  *
354
- * @param string $tableAlias
355
- * @return string
356
  */
357
  protected function _getTable($tableAlias)
358
  {
@@ -362,8 +356,8 @@ class FireGento_MageSetup_Model_Setup_Tax extends FireGento_MageSetup_Model_Setu
362
  /**
363
  * Get last insert ID
364
  *
365
- * @param string $table table alias
366
- * @return int
367
  */
368
  protected function _lastInsertId($table)
369
  {
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.2.0
23
  /**
24
  * Setup class for Tax Settings
25
  *
26
+ * @category FireGento
27
+ * @package FireGento_MageSetup
28
+ * @author FireGento Team <team@firegento.com>
 
 
 
 
29
  */
30
  class FireGento_MageSetup_Model_Setup_Tax extends FireGento_MageSetup_Model_Setup_Abstract
31
  {
55
  */
56
  public function setup()
57
  {
58
+ $this->_truncateTable('tax/tax_class');
59
+ $this->_truncateTable('tax/tax_calculation_rule');
60
+ $this->_truncateTable('tax/tax_calculation_rate');
61
+ $this->_truncateTable('tax/tax_calculation_rate_title');
62
+ $this->_truncateTable('tax/tax_calculation');
 
 
 
 
63
 
64
  // Tax classes
65
  $taxClasses = array();
154
  protected function _createTaxClass($taxClassData)
155
  {
156
  $this->_insertIntoTable('tax/tax_class', $taxClassData);
157
+ return $this->_lastInsertId('tax/tax_class');
158
  }
159
 
160
  /**
194
  }
195
 
196
  // base tax rate db entry
197
+ $calculationRateTable = 'tax/tax_calculation_rate';
198
  $this->_insertIntoTable($calculationRateTable, $taxCalcRateData);
199
  $rateId = $this->_lastInsertId($calculationRateTable);
200
 
301
  * DELETE is used, in order to prevent problems with
302
  * foreign key checks.
303
  *
304
+ * @param string $table Database to truncate
 
305
  */
306
  protected function _truncateTable($table)
307
  {
312
  /**
313
  * Insert a line into a database table
314
  *
315
+ * @param string $table Table
316
+ * @param array $data Data to insert
 
317
  */
318
  protected function _insertIntoTable($table, $data)
319
  {
323
  }
324
 
325
  /**
326
+ * Retrieve the database adapter
327
+ *
328
+ * @return Varien_Db_Adapter_Pdo_Mysql Database Adapter
329
  */
330
  protected function _getConnection()
331
  {
333
  }
334
 
335
  /**
336
+ * Retrieve the setup class
337
+ *
338
+ * @return Mage_Eav_Model_Entity_Setup Setup Class
339
  */
340
  protected function _getSetup()
341
  {
345
  /**
346
  * Get table name from table alias
347
  *
348
+ * @param string $tableAlias Table Alias
349
+ * @return string Correct Table Name
350
  */
351
  protected function _getTable($tableAlias)
352
  {
356
  /**
357
  * Get last insert ID
358
  *
359
+ * @param string $table Table
360
+ * @return int Last inserted id
361
  */
362
  protected function _lastInsertId($table)
363
  {
app/code/community/FireGento/MageSetup/Model/Source/AgreementType.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -15,7 +15,7 @@
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.1.0
@@ -23,13 +23,9 @@
23
  /**
24
  * Source model for attribute "agreement_type"
25
  *
26
- * @category FireGento
27
- * @package FireGento_MageSetup
28
- * @author FireGento Team <team@firegento.com>
29
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
30
- * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
31
- * @version $Id:$
32
- * @since 1.2.2
33
  */
34
  class FireGento_MageSetup_Model_Source_AgreementType
35
  {
@@ -67,6 +63,8 @@ class FireGento_MageSetup_Model_Source_AgreementType
67
  }
68
 
69
  /**
 
 
70
  * @return array Agreement types as option hash
71
  */
72
  public function getOptionArray()
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.1.0
23
  /**
24
  * Source model for attribute "agreement_type"
25
  *
26
+ * @category FireGento
27
+ * @package FireGento_MageSetup
28
+ * @author FireGento Team <team@firegento.com>
 
 
 
 
29
  */
30
  class FireGento_MageSetup_Model_Source_AgreementType
31
  {
63
  }
64
 
65
  /**
66
+ * Retrieve all agreements as option hash
67
+ *
68
  * @return array Agreement types as option hash
69
  */
70
  public function getOptionArray()
app/code/community/FireGento/MageSetup/Model/Source/Cms/Block.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -15,7 +15,7 @@
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.1.0
@@ -23,13 +23,9 @@
23
  /**
24
  * CMS Source model for configuration dropdown of CMS static blocks
25
  *
26
- * @category FireGento
27
- * @package FireGento_MageSetup
28
- * @author FireGento Team <team@firegento.com>
29
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
30
- * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
31
- * @version $Id:$
32
- * @since 0.1.0
33
  */
34
  class FireGento_MageSetup_Model_Source_Cms_Block
35
  extends Mage_Eav_Model_Entity_Attribute_Source_Abstract
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.1.0
23
  /**
24
  * CMS Source model for configuration dropdown of CMS static blocks
25
  *
26
+ * @category FireGento
27
+ * @package FireGento_MageSetup
28
+ * @author FireGento Team <team@firegento.com>
 
 
 
 
29
  */
30
  class FireGento_MageSetup_Model_Source_Cms_Block
31
  extends Mage_Eav_Model_Entity_Attribute_Source_Abstract
app/code/community/FireGento/MageSetup/Model/Source/Cms/Page.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -15,7 +15,7 @@
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.1.0
@@ -23,13 +23,9 @@
23
  /**
24
  * CMS Source model for configuration dropdown of CMS pages
25
  *
26
- * @category FireGento
27
- * @package FireGento_MageSetup
28
- * @author FireGento Team <team@firegento.com>
29
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
30
- * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
31
- * @version $Id:$
32
- * @since 0.1.0
33
  */
34
  class FireGento_MageSetup_Model_Source_Cms_Page
35
  extends Mage_Eav_Model_Entity_Attribute_Source_Abstract
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.1.0
23
  /**
24
  * CMS Source model for configuration dropdown of CMS pages
25
  *
26
+ * @category FireGento
27
+ * @package FireGento_MageSetup
28
+ * @author FireGento Team <team@firegento.com>
 
 
 
 
29
  */
30
  class FireGento_MageSetup_Model_Source_Cms_Page
31
  extends Mage_Eav_Model_Entity_Attribute_Source_Abstract
app/code/community/FireGento/MageSetup/Model/Source/Tax/CustomerTaxClass.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -15,7 +15,7 @@
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.1.0
@@ -23,13 +23,9 @@
23
  /**
24
  * Tax Source model for existing customer tax classes
25
  *
26
- * @category FireGento
27
- * @package FireGento_MageSetup
28
- * @author FireGento Team <team@firegento.com>
29
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
30
- * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
31
- * @version $Id:$
32
- * @since 2.0.0
33
  */
34
  class FireGento_MageSetup_Model_Source_Tax_CustomerTaxClass extends Mage_Tax_Model_Class_Source_Customer
35
  {
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.1.0
23
  /**
24
  * Tax Source model for existing customer tax classes
25
  *
26
+ * @category FireGento
27
+ * @package FireGento_MageSetup
28
+ * @author FireGento Team <team@firegento.com>
 
 
 
 
29
  */
30
  class FireGento_MageSetup_Model_Source_Tax_CustomerTaxClass extends Mage_Tax_Model_Class_Source_Customer
31
  {
app/code/community/FireGento/MageSetup/Model/Source/Tax/DynamicType.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -15,7 +15,7 @@
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 1.2.0
@@ -23,13 +23,9 @@
23
  /**
24
  * CMS Source model for configuration dropdown of CMS pages
25
  *
26
- * @category FireGento
27
- * @package FireGento_MageSetup
28
- * @author FireGento Team <team@firegento.com>
29
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
30
- * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
31
- * @version $Id:$
32
- * @since 1.2.0
33
  */
34
  class FireGento_MageSetup_Model_Source_Tax_DynamicType
35
  {
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 1.2.0
23
  /**
24
  * CMS Source model for configuration dropdown of CMS pages
25
  *
26
+ * @category FireGento
27
+ * @package FireGento_MageSetup
28
+ * @author FireGento Team <team@firegento.com>
 
 
 
 
29
  */
30
  class FireGento_MageSetup_Model_Source_Tax_DynamicType
31
  {
app/code/community/FireGento/MageSetup/Model/Source/Tax/NewCustomerTaxClass.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -15,7 +15,7 @@
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.1.0
@@ -23,13 +23,9 @@
23
  /**
24
  * Tax Source model for new customer tax classes, possibly not created yet
25
  *
26
- * @category FireGento
27
- * @package FireGento_MageSetup
28
- * @author FireGento Team <team@firegento.com>
29
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
30
- * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
31
- * @version $Id:$
32
- * @since 2.0.0
33
  */
34
  class FireGento_MageSetup_Model_Source_Tax_NewCustomerTaxClass
35
  extends Mage_Eav_Model_Entity_Attribute_Source_Abstract
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.1.0
23
  /**
24
  * Tax Source model for new customer tax classes, possibly not created yet
25
  *
26
+ * @category FireGento
27
+ * @package FireGento_MageSetup
28
+ * @author FireGento Team <team@firegento.com>
 
 
 
 
29
  */
30
  class FireGento_MageSetup_Model_Source_Tax_NewCustomerTaxClass
31
  extends Mage_Eav_Model_Entity_Attribute_Source_Abstract
app/code/community/FireGento/MageSetup/Model/Source/Tax/NewProductTaxClass.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -15,7 +15,7 @@
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.1.0
@@ -23,13 +23,9 @@
23
  /**
24
  * Tax Source model for new product tax classes, possibly not created yet
25
  *
26
- * @category FireGento
27
- * @package FireGento_MageSetup
28
- * @author FireGento Team <team@firegento.com>
29
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
30
- * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
31
- * @version $Id:$
32
- * @since 0.5.0
33
  */
34
  class FireGento_MageSetup_Model_Source_Tax_NewProductTaxClass
35
  extends Mage_Eav_Model_Entity_Attribute_Source_Abstract
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.1.0
23
  /**
24
  * Tax Source model for new product tax classes, possibly not created yet
25
  *
26
+ * @category FireGento
27
+ * @package FireGento_MageSetup
28
+ * @author FireGento Team <team@firegento.com>
 
 
 
 
29
  */
30
  class FireGento_MageSetup_Model_Source_Tax_NewProductTaxClass
31
  extends Mage_Eav_Model_Entity_Attribute_Source_Abstract
app/code/community/FireGento/MageSetup/Model/Source/Tax/ProductTaxClass.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -15,7 +15,7 @@
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.1.0
@@ -23,13 +23,9 @@
23
  /**
24
  * Tax Source model for product tax classes
25
  *
26
- * @category FireGento
27
- * @package FireGento_MageSetup
28
- * @author FireGento Team <team@firegento.com>
29
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
30
- * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
31
- * @version $Id:$
32
- * @since 1.2.0
33
  */
34
  class FireGento_MageSetup_Model_Source_Tax_ProductTaxClass extends Mage_Tax_Model_Class_Source_Product
35
  {
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.1.0
23
  /**
24
  * Tax Source model for product tax classes
25
  *
26
+ * @category FireGento
27
+ * @package FireGento_MageSetup
28
+ * @author FireGento Team <team@firegento.com>
 
 
 
 
29
  */
30
  class FireGento_MageSetup_Model_Source_Tax_ProductTaxClass extends Mage_Tax_Model_Class_Source_Product
31
  {
app/code/community/FireGento/MageSetup/Model/Tax/Config.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -15,7 +15,7 @@
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.1.0
@@ -23,13 +23,9 @@
23
  /**
24
  * Tax config model with new shipping tax class calculation
25
  *
26
- * @category FireGento
27
- * @package FireGento_MageSetup
28
- * @author FireGento Team <team@firegento.com>
29
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
30
- * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
31
- * @version $Id:$
32
- * @since 0.6.2
33
  */
34
  class FireGento_MageSetup_Model_Tax_Config extends Mage_Tax_Model_Config
35
  {
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.1.0
23
  /**
24
  * Tax config model with new shipping tax class calculation
25
  *
26
+ * @category FireGento
27
+ * @package FireGento_MageSetup
28
+ * @author FireGento Team <team@firegento.com>
 
 
 
 
29
  */
30
  class FireGento_MageSetup_Model_Tax_Config extends Mage_Tax_Model_Config
31
  {
app/code/community/FireGento/MageSetup/Test/Config/Main.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -15,7 +15,7 @@
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 2.0.0
@@ -23,13 +23,9 @@
23
  /**
24
  * PHPUnit Test Class
25
  *
26
- * @category FireGento
27
- * @package FireGento_MageSetup
28
- * @author FireGento Team <team@firegento.com>
29
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
30
- * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
31
- * @version $Id:$
32
- * @since 2.0.0
33
  */
34
  class FireGento_MageSetup_Test_Config_Main extends EcomDev_PHPUnit_Test_Case_Config
35
  {
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 2.0.0
23
  /**
24
  * PHPUnit Test Class
25
  *
26
+ * @category FireGento
27
+ * @package FireGento_MageSetup
28
+ * @author FireGento Team <team@firegento.com>
 
 
 
 
29
  */
30
  class FireGento_MageSetup_Test_Config_Main extends EcomDev_PHPUnit_Test_Case_Config
31
  {
app/code/community/FireGento/MageSetup/Test/Model/Source/AgreementType.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -15,7 +15,7 @@
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 2.0.0
@@ -23,13 +23,9 @@
23
  /**
24
  * PHPUnit Test Class
25
  *
26
- * @category FireGento
27
- * @package FireGento_MageSetup
28
- * @author FireGento Team <team@firegento.com>
29
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
30
- * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
31
- * @version $Id:$
32
- * @since 2.0.0
33
  */
34
  class FireGento_MageSetup_Test_Model_Source_AgreementType extends EcomDev_PHPUnit_Test_Case
35
  {
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 2.0.0
23
  /**
24
  * PHPUnit Test Class
25
  *
26
+ * @category FireGento
27
+ * @package FireGento_MageSetup
28
+ * @author FireGento Team <team@firegento.com>
 
 
 
 
29
  */
30
  class FireGento_MageSetup_Test_Model_Source_AgreementType extends EcomDev_PHPUnit_Test_Case
31
  {
app/code/community/FireGento/MageSetup/Test/Model/Source/Tax/DynamicType.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -15,7 +15,7 @@
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 2.0.0
@@ -23,13 +23,9 @@
23
  /**
24
  * PHPUnit Test Class
25
  *
26
- * @category FireGento
27
- * @package FireGento_MageSetup
28
- * @author FireGento Team <team@firegento.com>
29
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
30
- * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
31
- * @version $Id:$
32
- * @since 2.0.0
33
  */
34
  class FireGento_MageSetup_Test_Model_Source_Tax_DynamicType extends EcomDev_PHPUnit_Test_Case
35
  {
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 2.0.0
23
  /**
24
  * PHPUnit Test Class
25
  *
26
+ * @category FireGento
27
+ * @package FireGento_MageSetup
28
+ * @author FireGento Team <team@firegento.com>
 
 
 
 
29
  */
30
  class FireGento_MageSetup_Test_Model_Source_Tax_DynamicType extends EcomDev_PHPUnit_Test_Case
31
  {
app/code/community/FireGento/MageSetup/controllers/Adminhtml/NewsletterController.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -15,7 +15,7 @@
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 1.1.4
@@ -23,13 +23,9 @@
23
  /**
24
  * Newsletter Subscriber Status Adminhtml Controller
25
  *
26
- * @category FireGento
27
- * @package FireGento_MageSetup
28
- * @author FireGento Team <team@firegento.com>
29
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
30
- * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
31
- * @version $Id:$
32
- * @since 1.1.4
33
  */
34
  class FireGento_MageSetup_Adminhtml_NewsletterController extends Mage_Adminhtml_Controller_Action
35
  {
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 1.1.4
23
  /**
24
  * Newsletter Subscriber Status Adminhtml Controller
25
  *
26
+ * @category FireGento
27
+ * @package FireGento_MageSetup
28
+ * @author FireGento Team <team@firegento.com>
 
 
 
 
29
  */
30
  class FireGento_MageSetup_Adminhtml_NewsletterController extends Mage_Adminhtml_Controller_Action
31
  {
app/code/community/FireGento/MageSetup/controllers/FrontendController.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -15,7 +15,7 @@
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.1.0
@@ -23,13 +23,9 @@
23
  /**
24
  * Adminhtml Controller for dislaying a form for some actions
25
  *
26
- * @category FireGento
27
- * @package FireGento_MageSetup
28
- * @author FireGento Team <team@firegento.com>
29
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
30
- * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
31
- * @version $Id:$
32
- * @since 0.4.0
33
  */
34
  class FireGento_MageSetup_FrontendController extends Mage_Core_Controller_Front_Action
35
  {
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.1.0
23
  /**
24
  * Adminhtml Controller for dislaying a form for some actions
25
  *
26
+ * @category FireGento
27
+ * @package FireGento_MageSetup
28
+ * @author FireGento Team <team@firegento.com>
 
 
 
 
29
  */
30
  class FireGento_MageSetup_FrontendController extends Mage_Core_Controller_Front_Action
31
  {
app/code/community/FireGento/MageSetup/controllers/MagesetupController.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -15,7 +15,7 @@
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.1.0
@@ -23,13 +23,9 @@
23
  /**
24
  * Adminhtml Controller for dislaying a form for some actions
25
  *
26
- * @category FireGento
27
- * @package FireGento_MageSetup
28
- * @author FireGento Team <team@firegento.com>
29
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
30
- * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
31
- * @version $Id:$
32
- * @since 0.4.0
33
  */
34
  class FireGento_MageSetup_MagesetupController extends Mage_Adminhtml_Controller_Action
35
  {
@@ -41,9 +37,9 @@ class FireGento_MageSetup_MagesetupController extends Mage_Adminhtml_Controller_
41
  $helper = Mage::helper('magesetup');
42
 
43
  if (!Mage::getStoreConfig('magesetup/is_initialized')) {
44
- Mage::getSingleton('adminhtml/session')->addNotice(
45
- $this->__('If you want to add additional StoreViews (i.e. for multiple languages), please do so before submitting this form.')
46
- );
47
  }
48
 
49
  $this->_title($helper->__('System'))
@@ -78,6 +74,17 @@ class FireGento_MageSetup_MagesetupController extends Mage_Adminhtml_Controller_
78
  $this->_redirect('*/*');
79
  }
80
 
 
 
 
 
 
 
 
 
 
 
 
81
  /**
82
  * Recommended extensions
83
  */
@@ -96,12 +103,14 @@ class FireGento_MageSetup_MagesetupController extends Mage_Adminhtml_Controller_
96
  }
97
 
98
  /**
 
 
99
  * @return array
100
  */
101
  protected function _getParams()
102
  {
103
  $params = $this->getRequest()->getParams();
104
-
105
  if (!isset($params['systemconfig'])) {
106
  $params['systemconfig'] = false;
107
  }
@@ -121,7 +130,7 @@ class FireGento_MageSetup_MagesetupController extends Mage_Adminhtml_Controller_
121
  if (!isset($params['email'])) {
122
  $params['email'] = false;
123
  }
124
-
125
  return $params;
126
  }
127
  }
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.1.0
23
  /**
24
  * Adminhtml Controller for dislaying a form for some actions
25
  *
26
+ * @category FireGento
27
+ * @package FireGento_MageSetup
28
+ * @author FireGento Team <team@firegento.com>
 
 
 
 
29
  */
30
  class FireGento_MageSetup_MagesetupController extends Mage_Adminhtml_Controller_Action
31
  {
37
  $helper = Mage::helper('magesetup');
38
 
39
  if (!Mage::getStoreConfig('magesetup/is_initialized')) {
40
+ $notice = 'If you want to add additional StoreViews (i.e. for multiple languages), ';
41
+ $notice .= 'please do so before submitting this form.';
42
+ Mage::getSingleton('adminhtml/session')->addNotice($this->__($notice));
43
  }
44
 
45
  $this->_title($helper->__('System'))
74
  $this->_redirect('*/*');
75
  }
76
 
77
+ /**
78
+ * Skip setup by setting the config flag accordingly
79
+ */
80
+ public function skipAction()
81
+ {
82
+ /* @var $helper FireGento_MageSetup_Helper_Data */
83
+ $helper = Mage::helper('magesetup');
84
+ $helper->setIsInitialized();
85
+ $this->_redirectReferer();
86
+ }
87
+
88
  /**
89
  * Recommended extensions
90
  */
103
  }
104
 
105
  /**
106
+ * Retrieve the submitted params of the setup form
107
+ *
108
  * @return array
109
  */
110
  protected function _getParams()
111
  {
112
  $params = $this->getRequest()->getParams();
113
+
114
  if (!isset($params['systemconfig'])) {
115
  $params['systemconfig'] = false;
116
  }
130
  if (!isset($params['email'])) {
131
  $params['email'] = false;
132
  }
133
+
134
  return $params;
135
  }
136
  }
app/code/community/FireGento/MageSetup/data/magesetup_setup/data-upgrade-2.0.0-2.0.1.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -15,22 +15,17 @@
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 2.0.1
22
  */
23
-
24
  /**
25
  * Data upgrade script; Adds Italian region support to Magento ecosystem
26
  *
27
- * @category FireGento
28
- * @package FireGento_MageSetup
29
- * @author FireGento Team <team@firegento.com>
30
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
31
- * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
32
- * @version $Id:$
33
- * @since 2.0.1
34
  */
35
 
36
  /* @var $this Mage_Eav_Model_Entity_Setup */
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 2.0.1
22
  */
 
23
  /**
24
  * Data upgrade script; Adds Italian region support to Magento ecosystem
25
  *
26
+ * @category FireGento
27
+ * @package FireGento_MageSetup
28
+ * @author FireGento Team <team@firegento.com>
 
 
 
 
29
  */
30
 
31
  /* @var $this Mage_Eav_Model_Entity_Setup */
app/code/community/FireGento/MageSetup/data/magesetup_setup/data-upgrade-2.0.1-2.0.2.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -15,22 +15,17 @@
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 2.0.1
22
  */
23
-
24
  /**
25
  * Data upgrade script; for migration from GermanSetup to MageSetup
26
  *
27
- * @category FireGento
28
- * @package FireGento_MageSetup
29
- * @author FireGento Team <team@firegento.com>
30
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
31
- * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
32
- * @version $Id:$
33
- * @since 2.0.2
34
  */
35
 
36
  /* @var $this Mage_Eav_Model_Entity_Setup */
@@ -42,4 +37,4 @@ if (Mage::getStoreConfig('germansetup/is_initialized')) {
42
  $this->setConfigData('magesetup/is_initialized', 1);
43
  }
44
 
45
- $installer->endSetup();
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 2.0.1
22
  */
 
23
  /**
24
  * Data upgrade script; for migration from GermanSetup to MageSetup
25
  *
26
+ * @category FireGento
27
+ * @package FireGento_MageSetup
28
+ * @author FireGento Team <team@firegento.com>
 
 
 
 
29
  */
30
 
31
  /* @var $this Mage_Eav_Model_Entity_Setup */
37
  $this->setConfigData('magesetup/is_initialized', 1);
38
  }
39
 
40
+ $installer->endSetup();
app/code/community/FireGento/MageSetup/etc/adminhtml.xml CHANGED
@@ -1,4 +1,23 @@
1
  <?xml version="1.0" encoding="UTF-8"?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  <config>
3
  <menu>
4
  <newsletter>
1
  <?xml version="1.0" encoding="UTF-8"?>
2
+ <!--
3
+ /**
4
+ * This file is part of a FireGento e.V. module.
5
+ *
6
+ * This FireGento e.V. module is free software; you can redistribute it and/or
7
+ * modify it under the terms of the GNU General Public License version 3 as
8
+ * published by the Free Software Foundation.
9
+ *
10
+ * This script is distributed in the hope that it will be useful, but WITHOUT
11
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12
+ * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13
+ *
14
+ * @category FireGento
15
+ * @package FireGento_MageSetup
16
+ * @author FireGento Team <team@firegento.com>
17
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
18
+ * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
19
+ */
20
+ -->
21
  <config>
22
  <menu>
23
  <newsletter>
app/code/community/FireGento/MageSetup/etc/at/email.xml CHANGED
@@ -1,9 +1,9 @@
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
- * This file is part of the FIREGENTO project.
5
  *
6
- * FireGento_MageSetup is free software; you can redistribute it and/or
7
  * modify it under the terms of the GNU General Public License version 3 as
8
  * published by the Free Software Foundation.
9
  *
@@ -11,15 +11,11 @@
11
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13
  *
14
- * PHP version 5
15
- *
16
  * @category FireGento
17
  * @package FireGento_MageSetup
18
  * @author FireGento Team <team@firegento.com>
19
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
20
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
21
- * @version $Id:$
22
- * @since 0.1.0
23
  */
24
  -->
25
  <config>
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
+ * This file is part of a FireGento e.V. module.
5
  *
6
+ * This FireGento e.V. module is free software; you can redistribute it and/or
7
  * modify it under the terms of the GNU General Public License version 3 as
8
  * published by the Free Software Foundation.
9
  *
11
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13
  *
 
 
14
  * @category FireGento
15
  * @package FireGento_MageSetup
16
  * @author FireGento Team <team@firegento.com>
17
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
18
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
 
 
19
  */
20
  -->
21
  <config>
app/code/community/FireGento/MageSetup/etc/at/tax.xml CHANGED
@@ -1,9 +1,9 @@
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
- * This file is part of the FIREGENTO project.
5
  *
6
- * FireGento_MageSetup is free software; you can redistribute it and/or
7
  * modify it under the terms of the GNU General Public License version 3 as
8
  * published by the Free Software Foundation.
9
  *
@@ -11,15 +11,11 @@
11
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13
  *
14
- * PHP version 5
15
- *
16
  * @category FireGento
17
  * @package FireGento_MageSetup
18
  * @author FireGento Team <team@firegento.com>
19
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
20
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
21
- * @version $Id:$
22
- * @since 0.1.0
23
  */
24
  -->
25
  <config>
@@ -89,18 +85,21 @@
89
  <class_id>5</class_id>
90
  <class_name>Endkunden</class_name>
91
  <class_type>CUSTOMER</class_type>
 
92
  </customers_end_users>
93
  <customers_companies>
94
  <execute>1</execute>
95
  <class_id>6</class_id>
96
  <class_name>USt.-pflichtige Unternehmen</class_name>
97
  <class_type>CUSTOMER</class_type>
 
98
  </customers_companies>
99
  <customers_companies_no_vat>
100
  <execute>1</execute>
101
  <class_id>7</class_id>
102
  <class_name>USt.-befreite Unternehmen</class_name>
103
  <class_type>CUSTOMER</class_type>
 
104
  </customers_companies_no_vat>
105
  </default>
106
  </tax_classes>
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
+ * This file is part of a FireGento e.V. module.
5
  *
6
+ * This FireGento e.V. module is free software; you can redistribute it and/or
7
  * modify it under the terms of the GNU General Public License version 3 as
8
  * published by the Free Software Foundation.
9
  *
11
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13
  *
 
 
14
  * @category FireGento
15
  * @package FireGento_MageSetup
16
  * @author FireGento Team <team@firegento.com>
17
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
18
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
 
 
19
  */
20
  -->
21
  <config>
85
  <class_id>5</class_id>
86
  <class_name>Endkunden</class_name>
87
  <class_type>CUSTOMER</class_type>
88
+ <default>1</default>
89
  </customers_end_users>
90
  <customers_companies>
91
  <execute>1</execute>
92
  <class_id>6</class_id>
93
  <class_name>USt.-pflichtige Unternehmen</class_name>
94
  <class_type>CUSTOMER</class_type>
95
+ <default>0</default>
96
  </customers_companies>
97
  <customers_companies_no_vat>
98
  <execute>1</execute>
99
  <class_id>7</class_id>
100
  <class_name>USt.-befreite Unternehmen</class_name>
101
  <class_type>CUSTOMER</class_type>
102
+ <default>0</default>
103
  </customers_companies_no_vat>
104
  </default>
105
  </tax_classes>
app/code/community/FireGento/MageSetup/etc/ch/email.xml CHANGED
@@ -1,9 +1,9 @@
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
- * This file is part of the FIREGENTO project.
5
  *
6
- * FireGento_MageSetup is free software; you can redistribute it and/or
7
  * modify it under the terms of the GNU General Public License version 3 as
8
  * published by the Free Software Foundation.
9
  *
@@ -11,15 +11,11 @@
11
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13
  *
14
- * PHP version 5
15
- *
16
  * @category FireGento
17
  * @package FireGento_MageSetup
18
  * @author FireGento Team <team@firegento.com>
19
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
20
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
21
- * @version $Id:$
22
- * @since 0.1.0
23
  */
24
  -->
25
  <config>
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
+ * This file is part of a FireGento e.V. module.
5
  *
6
+ * This FireGento e.V. module is free software; you can redistribute it and/or
7
  * modify it under the terms of the GNU General Public License version 3 as
8
  * published by the Free Software Foundation.
9
  *
11
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13
  *
 
 
14
  * @category FireGento
15
  * @package FireGento_MageSetup
16
  * @author FireGento Team <team@firegento.com>
17
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
18
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
 
 
19
  */
20
  -->
21
  <config>
app/code/community/FireGento/MageSetup/etc/ch/tax.xml CHANGED
@@ -1,9 +1,9 @@
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
- * This file is part of the FIREGENTO project.
5
  *
6
- * FireGento_MageSetup is free software; you can redistribute it and/or
7
  * modify it under the terms of the GNU General Public License version 3 as
8
  * published by the Free Software Foundation.
9
  *
@@ -11,15 +11,11 @@
11
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13
  *
14
- * PHP version 5
15
- *
16
  * @category FireGento
17
  * @package FireGento_MageSetup
18
  * @author FireGento Team <team@firegento.com>
19
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
20
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
21
- * @version $Id:$
22
- * @since 0.1.0
23
  */
24
  -->
25
  <config>
@@ -90,18 +86,21 @@
90
  <class_id>5</class_id>
91
  <class_name>Endkunden</class_name>
92
  <class_type>CUSTOMER</class_type>
 
93
  </customers_end_users>
94
  <customers_companies>
95
  <execute>1</execute>
96
  <class_id>6</class_id>
97
  <class_name>USt.-pflichtige Unternehmen</class_name>
98
  <class_type>CUSTOMER</class_type>
 
99
  </customers_companies>
100
  <customers_companies_no_vat>
101
  <execute>1</execute>
102
  <class_id>7</class_id>
103
  <class_name>USt.-befreite Unternehmen</class_name>
104
  <class_type>CUSTOMER</class_type>
 
105
  </customers_companies_no_vat>
106
  </default>
107
  </tax_classes>
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
+ * This file is part of a FireGento e.V. module.
5
  *
6
+ * This FireGento e.V. module is free software; you can redistribute it and/or
7
  * modify it under the terms of the GNU General Public License version 3 as
8
  * published by the Free Software Foundation.
9
  *
11
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13
  *
 
 
14
  * @category FireGento
15
  * @package FireGento_MageSetup
16
  * @author FireGento Team <team@firegento.com>
17
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
18
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
 
 
19
  */
20
  -->
21
  <config>
86
  <class_id>5</class_id>
87
  <class_name>Endkunden</class_name>
88
  <class_type>CUSTOMER</class_type>
89
+ <default>1</default>
90
  </customers_end_users>
91
  <customers_companies>
92
  <execute>1</execute>
93
  <class_id>6</class_id>
94
  <class_name>USt.-pflichtige Unternehmen</class_name>
95
  <class_type>CUSTOMER</class_type>
96
+ <default>0</default>
97
  </customers_companies>
98
  <customers_companies_no_vat>
99
  <execute>1</execute>
100
  <class_id>7</class_id>
101
  <class_name>USt.-befreite Unternehmen</class_name>
102
  <class_type>CUSTOMER</class_type>
103
+ <default>0</default>
104
  </customers_companies_no_vat>
105
  </default>
106
  </tax_classes>
app/code/community/FireGento/MageSetup/etc/config.xml CHANGED
@@ -1,9 +1,9 @@
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
- * This file is part of the FIREGENTO project.
5
  *
6
- * FireGento_MageSetup is free software; you can redistribute it and/or
7
  * modify it under the terms of the GNU General Public License version 3 as
8
  * published by the Free Software Foundation.
9
  *
@@ -11,21 +11,17 @@
11
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13
  *
14
- * PHP version 5
15
- *
16
  * @category FireGento
17
  * @package FireGento_MageSetup
18
  * @author FireGento Team <team@firegento.com>
19
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
20
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
21
- * @version $Id:$
22
- * @since 0.1.0
23
  */
24
  -->
25
  <config>
26
  <modules>
27
  <FireGento_MageSetup>
28
- <version>2.0.3</version>
29
  </FireGento_MageSetup>
30
  </modules>
31
  <global>
@@ -109,9 +105,18 @@
109
  <fr />
110
  <gb />
111
  <it />
 
112
  <ru />
113
  </available_countries>
114
  </magesetup>
 
 
 
 
 
 
 
 
115
  </global>
116
  <frontend>
117
  <secure_url>
@@ -373,10 +378,6 @@ Tel: {{var telephone}}
373
  </convert>
374
  </url>
375
 
376
- <magesetup>
377
- <default_country>de</default_country>
378
- </magesetup>
379
-
380
  <general>
381
  <country>
382
  <eu_countries>AT,BE,BG,CY,CZ,DK,EE,FI,FR,DE,GR,HU,HR,IE,IT,LV,LT,LU,MT,NL,PL,PT,RO,SK,SI,ES,SE,GB</eu_countries>
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
+ * This file is part of a FireGento e.V. module.
5
  *
6
+ * This FireGento e.V. module is free software; you can redistribute it and/or
7
  * modify it under the terms of the GNU General Public License version 3 as
8
  * published by the Free Software Foundation.
9
  *
11
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13
  *
 
 
14
  * @category FireGento
15
  * @package FireGento_MageSetup
16
  * @author FireGento Team <team@firegento.com>
17
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
18
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
 
 
19
  */
20
  -->
21
  <config>
22
  <modules>
23
  <FireGento_MageSetup>
24
+ <version>2.1.0</version>
25
  </FireGento_MageSetup>
26
  </modules>
27
  <global>
105
  <fr />
106
  <gb />
107
  <it />
108
+ <nl />
109
  <ru />
110
  </available_countries>
111
  </magesetup>
112
+ <locale>
113
+ <allow>
114
+ <codes>
115
+ <fr_CH />
116
+ <de_CH />
117
+ </codes>
118
+ </allow>
119
+ </locale>
120
  </global>
121
  <frontend>
122
  <secure_url>
378
  </convert>
379
  </url>
380
 
 
 
 
 
381
  <general>
382
  <country>
383
  <eu_countries>AT,BE,BG,CY,CZ,DK,EE,FI,FR,DE,GR,HU,HR,IE,IT,LV,LT,LU,MT,NL,PL,PT,RO,SK,SI,ES,SE,GB</eu_countries>
app/code/community/FireGento/MageSetup/etc/de/email.xml CHANGED
@@ -1,9 +1,9 @@
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
- * This file is part of the FIREGENTO project.
5
  *
6
- * FireGento_MageSetup is free software; you can redistribute it and/or
7
  * modify it under the terms of the GNU General Public License version 3 as
8
  * published by the Free Software Foundation.
9
  *
@@ -11,15 +11,11 @@
11
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13
  *
14
- * PHP version 5
15
- *
16
  * @category FireGento
17
  * @package FireGento_MageSetup
18
  * @author FireGento Team <team@firegento.com>
19
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
20
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
21
- * @version $Id:$
22
- * @since 0.1.0
23
  */
24
  -->
25
  <config>
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
+ * This file is part of a FireGento e.V. module.
5
  *
6
+ * This FireGento e.V. module is free software; you can redistribute it and/or
7
  * modify it under the terms of the GNU General Public License version 3 as
8
  * published by the Free Software Foundation.
9
  *
11
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13
  *
 
 
14
  * @category FireGento
15
  * @package FireGento_MageSetup
16
  * @author FireGento Team <team@firegento.com>
17
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
18
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
 
 
19
  */
20
  -->
21
  <config>
app/code/community/FireGento/MageSetup/etc/de/tax.xml CHANGED
@@ -1,9 +1,9 @@
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
- * This file is part of the FIREGENTO project.
5
  *
6
- * FireGento_MageSetup is free software; you can redistribute it and/or
7
  * modify it under the terms of the GNU General Public License version 3 as
8
  * published by the Free Software Foundation.
9
  *
@@ -11,15 +11,11 @@
11
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13
  *
14
- * PHP version 5
15
- *
16
  * @category FireGento
17
  * @package FireGento_MageSetup
18
  * @author FireGento Team <team@firegento.com>
19
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
20
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
21
- * @version $Id:$
22
- * @since 0.1.0
23
  */
24
  -->
25
  <config>
@@ -89,18 +85,21 @@
89
  <class_id>5</class_id>
90
  <class_name>Endkunden</class_name>
91
  <class_type>CUSTOMER</class_type>
 
92
  </customers_end_users>
93
  <customers_companies>
94
  <execute>1</execute>
95
  <class_id>6</class_id>
96
  <class_name>USt.-pflichtige Unternehmen</class_name>
97
  <class_type>CUSTOMER</class_type>
 
98
  </customers_companies>
99
  <customers_companies_no_vat>
100
  <execute>1</execute>
101
  <class_id>7</class_id>
102
  <class_name>USt.-befreite Unternehmen</class_name>
103
  <class_type>CUSTOMER</class_type>
 
104
  </customers_companies_no_vat>
105
  </default>
106
  </tax_classes>
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
+ * This file is part of a FireGento e.V. module.
5
  *
6
+ * This FireGento e.V. module is free software; you can redistribute it and/or
7
  * modify it under the terms of the GNU General Public License version 3 as
8
  * published by the Free Software Foundation.
9
  *
11
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13
  *
 
 
14
  * @category FireGento
15
  * @package FireGento_MageSetup
16
  * @author FireGento Team <team@firegento.com>
17
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
18
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
 
 
19
  */
20
  -->
21
  <config>
85
  <class_id>5</class_id>
86
  <class_name>Endkunden</class_name>
87
  <class_type>CUSTOMER</class_type>
88
+ <default>1</default>
89
  </customers_end_users>
90
  <customers_companies>
91
  <execute>1</execute>
92
  <class_id>6</class_id>
93
  <class_name>USt.-pflichtige Unternehmen</class_name>
94
  <class_type>CUSTOMER</class_type>
95
+ <default>0</default>
96
  </customers_companies>
97
  <customers_companies_no_vat>
98
  <execute>1</execute>
99
  <class_id>7</class_id>
100
  <class_name>USt.-befreite Unternehmen</class_name>
101
  <class_type>CUSTOMER</class_type>
102
+ <default>1</default>
103
  </customers_companies_no_vat>
104
  </default>
105
  </tax_classes>
app/code/community/FireGento/MageSetup/etc/default/agreement.xml CHANGED
@@ -1,9 +1,9 @@
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
- * This file is part of the FIREGENTO project.
5
  *
6
- * FireGento_MageSetup is free software; you can redistribute it and/or
7
  * modify it under the terms of the GNU General Public License version 3 as
8
  * published by the Free Software Foundation.
9
  *
@@ -11,15 +11,11 @@
11
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13
  *
14
- * PHP version 5
15
- *
16
  * @category FireGento
17
  * @package FireGento_MageSetup
18
  * @author FireGento Team <team@firegento.com>
19
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
20
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
21
- * @version $Id:$
22
- * @since 2.0.0
23
  */
24
  -->
25
  <config>
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
+ * This file is part of a FireGento e.V. module.
5
  *
6
+ * This FireGento e.V. module is free software; you can redistribute it and/or
7
  * modify it under the terms of the GNU General Public License version 3 as
8
  * published by the Free Software Foundation.
9
  *
11
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13
  *
 
 
14
  * @category FireGento
15
  * @package FireGento_MageSetup
16
  * @author FireGento Team <team@firegento.com>
17
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
18
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
 
 
19
  */
20
  -->
21
  <config>
app/code/community/FireGento/MageSetup/etc/default/cms.xml CHANGED
@@ -1,9 +1,9 @@
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
- * This file is part of the FIREGENTO project.
5
  *
6
- * FireGento_MageSetup is free software; you can redistribute it and/or
7
  * modify it under the terms of the GNU General Public License version 3 as
8
  * published by the Free Software Foundation.
9
  *
@@ -11,15 +11,11 @@
11
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13
  *
14
- * PHP version 5
15
- *
16
  * @category FireGento
17
  * @package FireGento_MageSetup
18
  * @author FireGento Team <team@firegento.com>
19
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
20
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
21
- * @version $Id:$
22
- * @since 0.1.0
23
  */
24
  -->
25
  <config>
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
+ * This file is part of a FireGento e.V. module.
5
  *
6
+ * This FireGento e.V. module is free software; you can redistribute it and/or
7
  * modify it under the terms of the GNU General Public License version 3 as
8
  * published by the Free Software Foundation.
9
  *
11
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13
  *
 
 
14
  * @category FireGento
15
  * @package FireGento_MageSetup
16
  * @author FireGento Team <team@firegento.com>
17
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
18
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
 
 
19
  */
20
  -->
21
  <config>
app/code/community/FireGento/MageSetup/etc/default/email.xml CHANGED
@@ -1,9 +1,9 @@
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
- * This file is part of the FIREGENTO project.
5
  *
6
- * FireGento_MageSetup is free software; you can redistribute it and/or
7
  * modify it under the terms of the GNU General Public License version 3 as
8
  * published by the Free Software Foundation.
9
  *
@@ -11,15 +11,11 @@
11
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13
  *
14
- * PHP version 5
15
- *
16
  * @category FireGento
17
  * @package FireGento_MageSetup
18
  * @author FireGento Team <team@firegento.com>
19
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
20
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
21
- * @version $Id:$
22
- * @since 0.1.0
23
  */
24
  -->
25
  <config>
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
+ * This file is part of a FireGento e.V. module.
5
  *
6
+ * This FireGento e.V. module is free software; you can redistribute it and/or
7
  * modify it under the terms of the GNU General Public License version 3 as
8
  * published by the Free Software Foundation.
9
  *
11
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13
  *
 
 
14
  * @category FireGento
15
  * @package FireGento_MageSetup
16
  * @author FireGento Team <team@firegento.com>
17
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
18
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
 
 
19
  */
20
  -->
21
  <config>
app/code/community/FireGento/MageSetup/etc/default/systemconfig.xml CHANGED
@@ -1,9 +1,9 @@
1
  <?xml version="1.0" encoding="UTF-8"?>
2
  <!--
3
  /**
4
- * This file is part of the FIREGENTO project.
5
  *
6
- * FireGento_MageSetup is free software; you can redistribute it and/or
7
  * modify it under the terms of the GNU General Public License version 3 as
8
  * published by the Free Software Foundation.
9
  *
@@ -11,15 +11,11 @@
11
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13
  *
14
- * PHP version 5
15
- *
16
  * @category FireGento
17
  * @package FireGento_MageSetup
18
  * @author FireGento Team <team@firegento.com>
19
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
20
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
21
- * @version $Id:$
22
- * @since 0.1.0
23
  */
24
  -->
25
  <config>
1
  <?xml version="1.0" encoding="UTF-8"?>
2
  <!--
3
  /**
4
+ * This file is part of a FireGento e.V. module.
5
  *
6
+ * This FireGento e.V. module is free software; you can redistribute it and/or
7
  * modify it under the terms of the GNU General Public License version 3 as
8
  * published by the Free Software Foundation.
9
  *
11
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13
  *
 
 
14
  * @category FireGento
15
  * @package FireGento_MageSetup
16
  * @author FireGento Team <team@firegento.com>
17
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
18
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
 
 
19
  */
20
  -->
21
  <config>
app/code/community/FireGento/MageSetup/etc/default/tax.xml CHANGED
@@ -1,9 +1,9 @@
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
- * This file is part of the FIREGENTO project.
5
  *
6
- * FireGento_MageSetup is free software; you can redistribute it and/or
7
  * modify it under the terms of the GNU General Public License version 3 as
8
  * published by the Free Software Foundation.
9
  *
@@ -11,15 +11,11 @@
11
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13
  *
14
- * PHP version 5
15
- *
16
  * @category FireGento
17
  * @package FireGento_MageSetup
18
  * @author FireGento Team <team@firegento.com>
19
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
20
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
21
- * @version $Id:$
22
- * @since 0.1.0
23
  */
24
  -->
25
  <config>
@@ -27,270 +23,128 @@
27
  <magesetup>
28
  <tax_calculation_rules>
29
  <default>
30
- <!-- Customers -->
31
- <products_full_tax>
 
32
  <execute>1</execute>
33
- <tax_calculation_rule_id>3</tax_calculation_rule_id>
34
- <code>End Customers buy Products with full Tax</code>
35
  <priority>1</priority>
36
  <position>0</position>
37
  </products_full_tax>
38
- <products_reduced_tax>
 
 
39
  <execute>1</execute>
40
- <tax_calculation_rule_id>4</tax_calculation_rule_id>
41
- <code>End Customers buy Products with reduced Tax</code>
42
  <priority>2</priority>
43
  <position>0</position>
44
  </products_reduced_tax>
45
-
46
- <!-- Companies -->
47
- <products_full_tax_companies>
48
- <execute>1</execute>
49
- <tax_calculation_rule_id>6</tax_calculation_rule_id>
50
- <code>Taxable Companies buy Products with full Tax</code>
51
- <priority>1</priority>
52
- <position>0</position>
53
- </products_full_tax_companies>
54
- <products_reduced_tax_companies>
55
- <execute>1</execute>
56
- <tax_calculation_rule_id>8</tax_calculation_rule_id>
57
- <code>Taxable Companies buy Products with reduced Tax</code>
58
- <priority>2</priority>
59
- <position>0</position>
60
- </products_reduced_tax_companies>
61
- <products_companies_vat>
62
  <execute>1</execute>
63
- <tax_calculation_rule_id>10</tax_calculation_rule_id>
64
  <code>Non-taxable Companies buy Products with full and reduced Tax</code>
65
- <priority>1</priority>
66
- <position>0</position>
67
- </products_companies_vat>
68
-
69
- <!-- Shipping -->
70
- <shipping_full_tax>
71
- <execute>1</execute>
72
- <tax_calculation_rule_id>5</tax_calculation_rule_id>
73
- <code>Shipping with full Tax</code>
74
- <priority>3</priority>
75
- <position>0</position>
76
- </shipping_full_tax>
77
- <shipping_reduced_tax>
78
- <execute>1</execute>
79
- <tax_calculation_rule_id>7</tax_calculation_rule_id>
80
- <code>Shipping with reduced Tax</code>
81
- <priority>3</priority>
82
  <position>0</position>
83
- </shipping_reduced_tax>
84
-
85
  </default>
86
  </tax_calculation_rules>
87
 
88
  <tax_classes>
89
  <default>
90
- <products_full_tax>
91
  <execute>1</execute>
92
  <class_id>1</class_id>
93
  <class_name>Products with full Tax</class_name>
94
  <class_type>PRODUCT</class_type>
95
  <default>1</default>
96
- </products_full_tax>
97
- <products_reduced_tax>
98
  <execute>1</execute>
99
  <class_id>2</class_id>
100
  <class_name>Products with reduced Tax</class_name>
101
  <class_type>PRODUCT</class_type>
102
  <default>0</default>
103
- </products_reduced_tax>
104
- <customer_customers>
105
  <execute>1</execute>
106
  <class_id>3</class_id>
107
- <class_name>End Customers</class_name>
108
- <class_type>CUSTOMER</class_type>
109
- </customer_customers>
110
- <shipping_full_tax>
111
- <execute>1</execute>
112
- <class_id>4</class_id>
113
  <class_name>Shipping with full Tax</class_name>
114
  <class_type>PRODUCT</class_type>
115
  <default>0</default>
116
- </shipping_full_tax>
117
- <shipping_reduced_tax>
118
  <execute>1</execute>
119
- <class_id>7</class_id>
120
  <class_name>Shipping with reduced Tax</class_name>
121
  <class_type>PRODUCT</class_type>
122
  <default>0</default>
123
- </shipping_reduced_tax>
124
- <customer_companies>
125
  <execute>1</execute>
126
  <class_id>5</class_id>
127
- <class_name>Taxable Companies</class_name>
128
  <class_type>CUSTOMER</class_type>
129
- </customer_companies>
130
- <customer_companies_vat>
 
131
  <execute>1</execute>
132
  <class_id>6</class_id>
 
 
 
 
 
 
 
133
  <class_name>Non-Taxable Companies</class_name>
134
  <class_type>CUSTOMER</class_type>
135
- </customer_companies_vat>
 
136
  </default>
137
  </tax_classes>
138
 
139
- <!-- Sample code for Russian Tax
140
  <tax_calculation_rates>
141
  <default>
142
-
143
- <tax_calculation_rate_RU_full>
144
  <execute>1</execute>
145
- <tax_calculation_rate_id>3</tax_calculation_rate_id>
146
- <tax_country_id>RU</tax_country_id>
147
  <tax_region_id>0</tax_region_id>
148
  <tax_postcode>*</tax_postcode>
149
- <code>RU full</code>
150
  <label>VAT</label>
151
- <rate>18</rate>
152
- </tax_calculation_rate_RU_full>
153
 
154
- <tax_calculation_rate_RU_reduced>
155
  <execute>1</execute>
156
- <tax_calculation_rate_id>4</tax_calculation_rate_id>
157
- <tax_country_id>RU</tax_country_id>
158
  <tax_region_id>0</tax_region_id>
159
  <tax_postcode>*</tax_postcode>
160
- <code>RU reduced</code>
161
  <label>reduced VAT</label>
162
- <rate>10</rate>
163
- </tax_calculation_rate_RU_reduced>
164
 
165
- <tax_calculation_rate_RU_zero>
166
  <execute>1</execute>
167
- <tax_calculation_rate_id>5</tax_calculation_rate_id>
168
- <tax_country_id>RU</tax_country_id>
169
  <tax_region_id>0</tax_region_id>
170
  <tax_postcode>*</tax_postcode>
171
- <code>RU zero</code>
172
  <label>without VAT</label>
173
  <rate>0</rate>
174
- </tax_calculation_rate_RU_zero>
175
-
176
  </default>
177
- </tax_calculation_rates>
178
-
179
- <tax_calculations>
180
- <default>
181
-
182
- <tax_calculation_RU_full_customer>
183
- <execute>1</execute>
184
- <tax_calculation_rate_id>3</tax_calculation_rate_id>
185
- <tax_calculation_rule_id>3</tax_calculation_rule_id>
186
- <customer_tax_class_id>3</customer_tax_class_id>
187
- <product_tax_class_id>1</product_tax_class_id>
188
- </tax_calculation_RU_full_customer>
189
-
190
- <tax_calculation_RU_full_companies>
191
- <execute>1</execute>
192
- <tax_calculation_rate_id>3</tax_calculation_rate_id>
193
- <tax_calculation_rule_id>6</tax_calculation_rule_id>
194
- <customer_tax_class_id>5</customer_tax_class_id>
195
- <product_tax_class_id>1</product_tax_class_id>
196
- </tax_calculation_RU_full_companies>
197
-
198
- <tax_calculation_RU_full_shipping_customer>
199
- <execute>1</execute>
200
- <tax_calculation_rate_id>3</tax_calculation_rate_id>
201
- <tax_calculation_rule_id>5</tax_calculation_rule_id>
202
- <customer_tax_class_id>3</customer_tax_class_id>
203
- <product_tax_class_id>4</product_tax_class_id>
204
- </tax_calculation_RU_full_shipping_customer>
205
-
206
- <tax_calculation_RU_full_shipping_companies>
207
- <execute>1</execute>
208
- <tax_calculation_rate_id>3</tax_calculation_rate_id>
209
- <tax_calculation_rule_id>5</tax_calculation_rule_id>
210
- <customer_tax_class_id>5</customer_tax_class_id>
211
- <product_tax_class_id>4</product_tax_class_id>
212
- </tax_calculation_RU_full_shipping_companies>
213
-
214
- <tax_calculation_RU_reduced_customer>
215
- <execute>1</execute>
216
- <tax_calculation_rate_id>4</tax_calculation_rate_id>
217
- <tax_calculation_rule_id>4</tax_calculation_rule_id>
218
- <customer_tax_class_id>3</customer_tax_class_id>
219
- <product_tax_class_id>2</product_tax_class_id>
220
- </tax_calculation_RU_reduced_customer>
221
 
222
- <tax_calculation_RU_reduced_companies>
223
- <execute>1</execute>
224
- <tax_calculation_rate_id>4</tax_calculation_rate_id>
225
- <tax_calculation_rule_id>8</tax_calculation_rule_id>
226
- <customer_tax_class_id>5</customer_tax_class_id>
227
- <product_tax_class_id>2</product_tax_class_id>
228
- </tax_calculation_RU_reduced_companies>
229
-
230
- <tax_calculation_RU_reduced_shipping_customer>
231
- <execute>1</execute>
232
- <tax_calculation_rate_id>4</tax_calculation_rate_id>
233
- <tax_calculation_rule_id>7</tax_calculation_rule_id>
234
- <customer_tax_class_id>3</customer_tax_class_id>
235
- <product_tax_class_id>7</product_tax_class_id>
236
- </tax_calculation_RU_reduced_shipping_customer>
237
-
238
- <tax_calculation_RU_reduced_shipping_companies>
239
- <execute>1</execute>
240
- <tax_calculation_rate_id>4</tax_calculation_rate_id>
241
- <tax_calculation_rule_id>7</tax_calculation_rule_id>
242
- <customer_tax_class_id>5</customer_tax_class_id>
243
- <product_tax_class_id>7</product_tax_class_id>
244
- </tax_calculation_RU_reduced_shipping_companies>
245
-
246
- <tax_calculation_RU_full_companies_vat>
247
- <execute>1</execute>
248
- <tax_calculation_rate_id>5</tax_calculation_rate_id>
249
- <tax_calculation_rule_id>10</tax_calculation_rule_id>
250
- <customer_tax_class_id>6</customer_tax_class_id>
251
- <product_tax_class_id>1</product_tax_class_id>
252
- </tax_calculation_RU_full_companies_vat>
253
-
254
- <tax_calculation_RU_reduced_companies_vat>
255
- <execute>1</execute>
256
- <tax_calculation_rate_id>5</tax_calculation_rate_id>
257
- <tax_calculation_rule_id>10</tax_calculation_rule_id>
258
- <customer_tax_class_id>6</customer_tax_class_id>
259
- <product_tax_class_id>2</product_tax_class_id>
260
- </tax_calculation_RU_reduced_companies_vat>
261
-
262
- <tax_calculation_RU_full_shipping_companies_vat>
263
- <execute>1</execute>
264
- <tax_calculation_rate_id>5</tax_calculation_rate_id>
265
- <tax_calculation_rule_id>10</tax_calculation_rule_id>
266
- <customer_tax_class_id>6</customer_tax_class_id>
267
- <product_tax_class_id>4</product_tax_class_id>
268
- </tax_calculation_RU_full_shipping_companies_vat>
269
-
270
- <tax_calculation_RU_reduced_shipping_companies_vat>
271
- <execute>1</execute>
272
- <tax_calculation_rate_id>5</tax_calculation_rate_id>
273
- <tax_calculation_rule_id>10</tax_calculation_rule_id>
274
- <customer_tax_class_id>6</customer_tax_class_id>
275
- <product_tax_class_id>7</product_tax_class_id>
276
- </tax_calculation_RU_reduced_shipping_companies_vat>
277
-
278
- </default>
279
- </tax_calculations>
280
- -->
281
 
282
  <tax_config>
283
  <default>
284
- <!--<general__country__default>RU</general__country__default>-->
285
- <tax__classes__shipping_tax_class>4</tax__classes__shipping_tax_class>
286
  <tax__calculation__based_on>billing</tax__calculation__based_on>
287
  <tax__calculation__price_includes_tax>1</tax__calculation__price_includes_tax>
288
  <tax__calculation__shipping_includes_tax>1</tax__calculation__shipping_includes_tax>
289
  <tax__calculation__apply_after_discount>1</tax__calculation__apply_after_discount>
290
  <tax__calculation__discount_tax>1</tax__calculation__discount_tax>
291
- <!--<tax__defaults__country>RU</tax__defaults__country>-->
292
- <!--<tax__defaults__region>79</tax__defaults__region>-->
293
- <tax__defaults__postcode>12345</tax__defaults__postcode>
294
  <tax__display__type>2</tax__display__type>
295
  <tax__display__shipping>2</tax__display__shipping>
296
  <tax__cart_display__subtotal>2</tax__cart_display__subtotal>
@@ -305,10 +159,10 @@
305
  <tax__sales_display__grandtotal>0</tax__sales_display__grandtotal>
306
  <tax__sales_display__full_summary>1</tax__sales_display__full_summary>
307
  <tax__sales_display__zero_tax>1</tax__sales_display__zero_tax>
308
- <!--<shipping__origin__country_id>RU</shipping__origin__country_id>-->
309
- <!--<shipping__origin__region_id>79</shipping__origin__region_id>-->
310
- <shipping__origin__postcode>12345</shipping__origin__postcode>
311
- <shipping__origin__city>Sample City</shipping__origin__city>
312
  </default>
313
  </tax_config>
314
  </magesetup>
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
+ * This file is part of a FireGento e.V. module.
5
  *
6
+ * This FireGento e.V. module is free software; you can redistribute it and/or
7
  * modify it under the terms of the GNU General Public License version 3 as
8
  * published by the Free Software Foundation.
9
  *
11
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13
  *
 
 
14
  * @category FireGento
15
  * @package FireGento_MageSetup
16
  * @author FireGento Team <team@firegento.com>
17
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
18
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
 
 
19
  */
20
  -->
21
  <config>
23
  <magesetup>
24
  <tax_calculation_rules>
25
  <default>
26
+ <products_full_tax tax_rate="tax_calculation_rate_1"
27
+ tax_customer_class="customers_end_users,customers_companies"
28
+ tax_product_class="products_rate_1,shipping_rate_1">
29
  <execute>1</execute>
30
+ <code>Customers buy Products with full Tax</code>
 
31
  <priority>1</priority>
32
  <position>0</position>
33
  </products_full_tax>
34
+ <products_reduced_tax tax_rate="tax_calculation_rate_2"
35
+ tax_customer_class="customers_end_users,customers_companies"
36
+ tax_product_class="products_rate_2,shipping_rate_2">
37
  <execute>1</execute>
38
+ <code>Customers buy Products with reduced Tax</code>
 
39
  <priority>2</priority>
40
  <position>0</position>
41
  </products_reduced_tax>
42
+ <products_no_vat tax_rate="tax_calculation_rate_3"
43
+ tax_customer_class="customers_companies_no_vat"
44
+ tax_product_class="product_rate_1,products_rate_2,shipping_rate_1,shipping_rate_2">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
45
  <execute>1</execute>
 
46
  <code>Non-taxable Companies buy Products with full and reduced Tax</code>
47
+ <priority>2</priority>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
48
  <position>0</position>
49
+ </products_no_vat>
 
50
  </default>
51
  </tax_calculation_rules>
52
 
53
  <tax_classes>
54
  <default>
55
+ <products_rate_1>
56
  <execute>1</execute>
57
  <class_id>1</class_id>
58
  <class_name>Products with full Tax</class_name>
59
  <class_type>PRODUCT</class_type>
60
  <default>1</default>
61
+ </products_rate_1>
62
+ <products_rate_2>
63
  <execute>1</execute>
64
  <class_id>2</class_id>
65
  <class_name>Products with reduced Tax</class_name>
66
  <class_type>PRODUCT</class_type>
67
  <default>0</default>
68
+ </products_rate_2>
69
+ <shipping_rate_1>
70
  <execute>1</execute>
71
  <class_id>3</class_id>
 
 
 
 
 
 
72
  <class_name>Shipping with full Tax</class_name>
73
  <class_type>PRODUCT</class_type>
74
  <default>0</default>
75
+ </shipping_rate_1>
76
+ <shipping_rate_2>
77
  <execute>1</execute>
78
+ <class_id>4</class_id>
79
  <class_name>Shipping with reduced Tax</class_name>
80
  <class_type>PRODUCT</class_type>
81
  <default>0</default>
82
+ </shipping_rate_2>
83
+ <customers_end_users>
84
  <execute>1</execute>
85
  <class_id>5</class_id>
86
+ <class_name>End Customers</class_name>
87
  <class_type>CUSTOMER</class_type>
88
+ <default>1</default>
89
+ </customers_end_users>
90
+ <customers_companies>
91
  <execute>1</execute>
92
  <class_id>6</class_id>
93
+ <class_name>Taxable Companies</class_name>
94
+ <class_type>CUSTOMER</class_type>
95
+ <default>0</default>
96
+ </customers_companies>
97
+ <customers_companies_no_vat>
98
+ <execute>1</execute>
99
+ <class_id>7</class_id>
100
  <class_name>Non-Taxable Companies</class_name>
101
  <class_type>CUSTOMER</class_type>
102
+ <default>0</default>
103
+ </customers_companies_no_vat>
104
  </default>
105
  </tax_classes>
106
 
 
107
  <tax_calculation_rates>
108
  <default>
109
+ <tax_calculation_rate_1>
 
110
  <execute>1</execute>
 
 
111
  <tax_region_id>0</tax_region_id>
112
  <tax_postcode>*</tax_postcode>
 
113
  <label>VAT</label>
114
+ <rate>20</rate>
115
+ </tax_calculation_rate_1>
116
 
117
+ <tax_calculation_rate_2>
118
  <execute>1</execute>
 
 
119
  <tax_region_id>0</tax_region_id>
120
  <tax_postcode>*</tax_postcode>
 
121
  <label>reduced VAT</label>
122
+ <rate>5</rate>
123
+ </tax_calculation_rate_2>
124
 
125
+ <tax_calculation_rate_3>
126
  <execute>1</execute>
 
 
127
  <tax_region_id>0</tax_region_id>
128
  <tax_postcode>*</tax_postcode>
 
129
  <label>without VAT</label>
130
  <rate>0</rate>
131
+ </tax_calculation_rate_3>
 
132
  </default>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
133
 
134
+ </tax_calculation_rates>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
135
 
136
  <tax_config>
137
  <default>
138
+ <general__country__default>UK</general__country__default>
139
+ <tax__classes__shipping_tax_class>3</tax__classes__shipping_tax_class>
140
  <tax__calculation__based_on>billing</tax__calculation__based_on>
141
  <tax__calculation__price_includes_tax>1</tax__calculation__price_includes_tax>
142
  <tax__calculation__shipping_includes_tax>1</tax__calculation__shipping_includes_tax>
143
  <tax__calculation__apply_after_discount>1</tax__calculation__apply_after_discount>
144
  <tax__calculation__discount_tax>1</tax__calculation__discount_tax>
145
+ <tax__defaults__country>UK</tax__defaults__country>
146
+ <tax__defaults__region></tax__defaults__region>
147
+ <tax__defaults__postcode>SW1A 1AA</tax__defaults__postcode>
148
  <tax__display__type>2</tax__display__type>
149
  <tax__display__shipping>2</tax__display__shipping>
150
  <tax__cart_display__subtotal>2</tax__cart_display__subtotal>
159
  <tax__sales_display__grandtotal>0</tax__sales_display__grandtotal>
160
  <tax__sales_display__full_summary>1</tax__sales_display__full_summary>
161
  <tax__sales_display__zero_tax>1</tax__sales_display__zero_tax>
162
+ <shipping__origin__country_id>UK</shipping__origin__country_id>
163
+ <shipping__origin__region_id></shipping__origin__region_id>
164
+ <shipping__origin__postcode>SW1A 1AA</shipping__origin__postcode>
165
+ <shipping__origin__city>London</shipping__origin__city>
166
  </default>
167
  </tax_config>
168
  </magesetup>
app/code/community/FireGento/MageSetup/etc/fr/email.xml CHANGED
@@ -1,9 +1,9 @@
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
- * This file is part of the FIREGENTO project.
5
  *
6
- * FireGento_MageSetup is free software; you can redistribute it and/or
7
  * modify it under the terms of the GNU General Public License version 3 as
8
  * published by the Free Software Foundation.
9
  *
@@ -11,15 +11,11 @@
11
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13
  *
14
- * PHP version 5
15
- *
16
  * @category FireGento
17
  * @package FireGento_MageSetup
18
  * @author FireGento Team <team@firegento.com>
19
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
20
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
21
- * @version $Id:$
22
- * @since 0.1.0
23
  */
24
  -->
25
  <config>
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
+ * This file is part of a FireGento e.V. module.
5
  *
6
+ * This FireGento e.V. module is free software; you can redistribute it and/or
7
  * modify it under the terms of the GNU General Public License version 3 as
8
  * published by the Free Software Foundation.
9
  *
11
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13
  *
 
 
14
  * @category FireGento
15
  * @package FireGento_MageSetup
16
  * @author FireGento Team <team@firegento.com>
17
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
18
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
 
 
19
  */
20
  -->
21
  <config>
app/code/community/FireGento/MageSetup/etc/fr/tax.xml CHANGED
@@ -1,9 +1,9 @@
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
- * This file is part of the FIREGENTO project.
5
  *
6
- * FireGento_MageSetup is free software; you can redistribute it and/or
7
  * modify it under the terms of the GNU General Public License version 3 as
8
  * published by the Free Software Foundation.
9
  *
@@ -11,15 +11,11 @@
11
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13
  *
14
- * PHP version 5
15
- *
16
  * @category FireGento
17
  * @package FireGento_MageSetup
18
  * @author FireGento Team <team@firegento.com>
19
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
20
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
21
- * @version $Id:$
22
- * @since 0.1.0
23
  */
24
  -->
25
  <config>
@@ -35,7 +31,7 @@
35
  <priority>1</priority>
36
  <position>0</position>
37
  </products_rate_1>
38
-
39
  <products_rate_2 tax_rate="tax_calculation_rate_2"
40
  tax_customer_class="customers_end_consumers,customers_companies"
41
  tax_product_class="products_rate_2">
@@ -44,7 +40,7 @@
44
  <priority>1</priority>
45
  <position>0</position>
46
  </products_rate_2>
47
-
48
  <products_rate_3 tax_rate="tax_calculation_rate_3"
49
  tax_customer_class="customers_end_consumers,customers_companies"
50
  tax_product_class="products_rate_3">
@@ -53,7 +49,7 @@
53
  <priority>1</priority>
54
  <position>0</position>
55
  </products_rate_3>
56
-
57
  <products_rate_4 tax_rate="tax_calculation_rate_4"
58
  tax_customer_class="customers_companies_no_vat"
59
  tax_product_class="products_rate_1,products_rate_2,products_rate_3,shipping">
@@ -87,7 +83,7 @@
87
  <class_name>Produits au taux réduit de 5.5%</class_name>
88
  <class_type>PRODUCT</class_type>
89
  <default>0</default>
90
- </products_rate_3>
91
  <shipping>
92
  <execute>1</execute>
93
  <class_id>4</class_id>
@@ -95,24 +91,27 @@
95
  <class_type>PRODUCT</class_type>
96
  <default>0</default>
97
  </shipping>
98
-
99
  <customers_end_consumers>
100
  <execute>1</execute>
101
  <class_id>5</class_id>
102
  <class_name>Clients finaux</class_name>
103
  <class_type>CUSTOMER</class_type>
 
104
  </customers_end_consumers>
105
  <customers_companies>
106
  <execute>1</execute>
107
  <class_id>6</class_id>
108
  <class_name>Entreprises assujetties à la TVA</class_name>
109
  <class_type>CUSTOMER</class_type>
 
110
  </customers_companies>
111
  <customers_companies_no_vat>
112
  <execute>1</execute>
113
  <class_id>7</class_id>
114
  <class_name>Entreprises non-assujetties à la TVA</class_name>
115
  <class_type>CUSTOMER</class_type>
 
116
  </customers_companies_no_vat>
117
  </default>
118
  </tax_classes>
@@ -134,7 +133,7 @@
134
  <label>TVA réduite de 7%</label>
135
  <rate>7</rate>
136
  </tax_calculation_rate_2>
137
-
138
  <tax_calculation_rate_3>
139
  <execute>1</execute>
140
  <tax_region_id>0</tax_region_id>
@@ -142,7 +141,7 @@
142
  <label>TVA réduite de 5.5%</label>
143
  <rate>5.5</rate>
144
  </tax_calculation_rate_3>
145
-
146
  <tax_calculation_rate_4>
147
  <execute>1</execute>
148
  <tax_region_id>0</tax_region_id>
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
+ * This file is part of a FireGento e.V. module.
5
  *
6
+ * This FireGento e.V. module is free software; you can redistribute it and/or
7
  * modify it under the terms of the GNU General Public License version 3 as
8
  * published by the Free Software Foundation.
9
  *
11
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13
  *
 
 
14
  * @category FireGento
15
  * @package FireGento_MageSetup
16
  * @author FireGento Team <team@firegento.com>
17
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
18
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
 
 
19
  */
20
  -->
21
  <config>
31
  <priority>1</priority>
32
  <position>0</position>
33
  </products_rate_1>
34
+
35
  <products_rate_2 tax_rate="tax_calculation_rate_2"
36
  tax_customer_class="customers_end_consumers,customers_companies"
37
  tax_product_class="products_rate_2">
40
  <priority>1</priority>
41
  <position>0</position>
42
  </products_rate_2>
43
+
44
  <products_rate_3 tax_rate="tax_calculation_rate_3"
45
  tax_customer_class="customers_end_consumers,customers_companies"
46
  tax_product_class="products_rate_3">
49
  <priority>1</priority>
50
  <position>0</position>
51
  </products_rate_3>
52
+
53
  <products_rate_4 tax_rate="tax_calculation_rate_4"
54
  tax_customer_class="customers_companies_no_vat"
55
  tax_product_class="products_rate_1,products_rate_2,products_rate_3,shipping">
83
  <class_name>Produits au taux réduit de 5.5%</class_name>
84
  <class_type>PRODUCT</class_type>
85
  <default>0</default>
86
+ </products_rate_3>
87
  <shipping>
88
  <execute>1</execute>
89
  <class_id>4</class_id>
91
  <class_type>PRODUCT</class_type>
92
  <default>0</default>
93
  </shipping>
94
+
95
  <customers_end_consumers>
96
  <execute>1</execute>
97
  <class_id>5</class_id>
98
  <class_name>Clients finaux</class_name>
99
  <class_type>CUSTOMER</class_type>
100
+ <default>1</default>
101
  </customers_end_consumers>
102
  <customers_companies>
103
  <execute>1</execute>
104
  <class_id>6</class_id>
105
  <class_name>Entreprises assujetties à la TVA</class_name>
106
  <class_type>CUSTOMER</class_type>
107
+ <default>0</default>
108
  </customers_companies>
109
  <customers_companies_no_vat>
110
  <execute>1</execute>
111
  <class_id>7</class_id>
112
  <class_name>Entreprises non-assujetties à la TVA</class_name>
113
  <class_type>CUSTOMER</class_type>
114
+ <default>0</default>
115
  </customers_companies_no_vat>
116
  </default>
117
  </tax_classes>
133
  <label>TVA réduite de 7%</label>
134
  <rate>7</rate>
135
  </tax_calculation_rate_2>
136
+
137
  <tax_calculation_rate_3>
138
  <execute>1</execute>
139
  <tax_region_id>0</tax_region_id>
141
  <label>TVA réduite de 5.5%</label>
142
  <rate>5.5</rate>
143
  </tax_calculation_rate_3>
144
+
145
  <tax_calculation_rate_4>
146
  <execute>1</execute>
147
  <tax_region_id>0</tax_region_id>
app/code/community/FireGento/MageSetup/etc/gb/tax.xml CHANGED
@@ -1,9 +1,9 @@
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
- * This file is part of the FIREGENTO project.
5
  *
6
- * FireGento_MageSetup is free software; you can redistribute it and/or
7
  * modify it under the terms of the GNU General Public License version 3 as
8
  * published by the Free Software Foundation.
9
  *
@@ -11,15 +11,11 @@
11
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13
  *
14
- * PHP version 5
15
- *
16
  * @category FireGento
17
  * @package FireGento_MageSetup
18
  * @author FireGento Team <team@firegento.com>
19
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
20
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
21
- * @version $Id:$
22
- * @since 0.1.0
23
  */
24
  -->
25
  <config>
@@ -89,18 +85,21 @@
89
  <class_id>5</class_id>
90
  <class_name>End Customers</class_name>
91
  <class_type>CUSTOMER</class_type>
 
92
  </customers_end_users>
93
  <customers_companies>
94
  <execute>1</execute>
95
  <class_id>6</class_id>
96
  <class_name>Taxable Companies</class_name>
97
  <class_type>CUSTOMER</class_type>
 
98
  </customers_companies>
99
  <customers_companies_no_vat>
100
  <execute>1</execute>
101
  <class_id>7</class_id>
102
  <class_name>Non-Taxable Companies</class_name>
103
  <class_type>CUSTOMER</class_type>
 
104
  </customers_companies_no_vat>
105
  </default>
106
  </tax_classes>
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
+ * This file is part of a FireGento e.V. module.
5
  *
6
+ * This FireGento e.V. module is free software; you can redistribute it and/or
7
  * modify it under the terms of the GNU General Public License version 3 as
8
  * published by the Free Software Foundation.
9
  *
11
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13
  *
 
 
14
  * @category FireGento
15
  * @package FireGento_MageSetup
16
  * @author FireGento Team <team@firegento.com>
17
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
18
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
 
 
19
  */
20
  -->
21
  <config>
85
  <class_id>5</class_id>
86
  <class_name>End Customers</class_name>
87
  <class_type>CUSTOMER</class_type>
88
+ <default>1</default>
89
  </customers_end_users>
90
  <customers_companies>
91
  <execute>1</execute>
92
  <class_id>6</class_id>
93
  <class_name>Taxable Companies</class_name>
94
  <class_type>CUSTOMER</class_type>
95
+ <default>0</default>
96
  </customers_companies>
97
  <customers_companies_no_vat>
98
  <execute>1</execute>
99
  <class_id>7</class_id>
100
  <class_name>Non-Taxable Companies</class_name>
101
  <class_type>CUSTOMER</class_type>
102
+ <default>0</default>
103
  </customers_companies_no_vat>
104
  </default>
105
  </tax_classes>
app/code/community/FireGento/MageSetup/etc/it/email.xml CHANGED
@@ -1,9 +1,9 @@
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
- * This file is part of the FIREGENTO project.
5
  *
6
- * FireGento_MageSetup is free software; you can redistribute it and/or
7
  * modify it under the terms of the GNU General Public License version 3 as
8
  * published by the Free Software Foundation.
9
  *
@@ -11,15 +11,11 @@
11
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13
  *
14
- * PHP version 5
15
- *
16
  * @category FireGento
17
  * @package FireGento_MageSetup
18
  * @author FireGento Team <team@firegento.com>
19
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
20
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
21
- * @version $Id:$
22
- * @since 2.0.1
23
  */
24
  -->
25
  <config>
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
+ * This file is part of a FireGento e.V. module.
5
  *
6
+ * This FireGento e.V. module is free software; you can redistribute it and/or
7
  * modify it under the terms of the GNU General Public License version 3 as
8
  * published by the Free Software Foundation.
9
  *
11
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13
  *
 
 
14
  * @category FireGento
15
  * @package FireGento_MageSetup
16
  * @author FireGento Team <team@firegento.com>
17
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
18
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
 
 
19
  */
20
  -->
21
  <config>
app/code/community/FireGento/MageSetup/etc/it/tax.xml CHANGED
@@ -1,9 +1,9 @@
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
- * This file is part of the FIREGENTO project.
5
  *
6
- * FireGento_MageSetup is free software; you can redistribute it and/or
7
  * modify it under the terms of the GNU General Public License version 3 as
8
  * published by the Free Software Foundation.
9
  *
@@ -11,15 +11,11 @@
11
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13
  *
14
- * PHP version 5
15
- *
16
  * @category FireGento
17
  * @package FireGento_MageSetup
18
  * @author FireGento Team <team@firegento.com>
19
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
20
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
21
- * @version $Id:$
22
- * @since 2.0.1
23
  */
24
  -->
25
  <config>
@@ -96,18 +92,21 @@
96
  <class_id>5</class_id>
97
  <class_name>Clienti privati</class_name>
98
  <class_type>CUSTOMER</class_type>
 
99
  </customers_end_users>
100
  <customers_companies>
101
  <execute>1</execute>
102
  <class_id>6</class_id>
103
  <class_name>Imprese</class_name>
104
  <class_type>CUSTOMER</class_type>
 
105
  </customers_companies>
106
  <customers_companies_no_vat>
107
  <execute>1</execute>
108
  <class_id>7</class_id>
109
  <class_name>Imprese esenti IVA</class_name>
110
  <class_type>CUSTOMER</class_type>
 
111
  </customers_companies_no_vat>
112
  </default>
113
  </tax_classes>
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
+ * This file is part of a FireGento e.V. module.
5
  *
6
+ * This FireGento e.V. module is free software; you can redistribute it and/or
7
  * modify it under the terms of the GNU General Public License version 3 as
8
  * published by the Free Software Foundation.
9
  *
11
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13
  *
 
 
14
  * @category FireGento
15
  * @package FireGento_MageSetup
16
  * @author FireGento Team <team@firegento.com>
17
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
18
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
 
 
19
  */
20
  -->
21
  <config>
92
  <class_id>5</class_id>
93
  <class_name>Clienti privati</class_name>
94
  <class_type>CUSTOMER</class_type>
95
+ <default>1</default>
96
  </customers_end_users>
97
  <customers_companies>
98
  <execute>1</execute>
99
  <class_id>6</class_id>
100
  <class_name>Imprese</class_name>
101
  <class_type>CUSTOMER</class_type>
102
+ <default>0</default>
103
  </customers_companies>
104
  <customers_companies_no_vat>
105
  <execute>1</execute>
106
  <class_id>7</class_id>
107
  <class_name>Imprese esenti IVA</class_name>
108
  <class_type>CUSTOMER</class_type>
109
+ <default>0</default>
110
  </customers_companies_no_vat>
111
  </default>
112
  </tax_classes>
app/code/community/FireGento/MageSetup/etc/nl/tax.xml ADDED
@@ -0,0 +1,167 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <!--
3
+ /**
4
+ * This file is part of a FireGento e.V. module.
5
+ *
6
+ * This FireGento e.V. module is free software; you can redistribute it and/or
7
+ * modify it under the terms of the GNU General Public License version 3 as
8
+ * published by the Free Software Foundation.
9
+ *
10
+ * This script is distributed in the hope that it will be useful, but WITHOUT
11
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12
+ * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13
+ *
14
+ * @category FireGento
15
+ * @package FireGento_MageSetup
16
+ * @author FireGento Team <team@firegento.com>
17
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
18
+ * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
19
+ */
20
+ -->
21
+ <config>
22
+ <default>
23
+ <magesetup>
24
+ <tax_calculation_rules>
25
+ <default>
26
+ <products_full_tax tax_rate="tax_calculation_rate_1"
27
+ tax_customer_class="customers_end_users,customers_companies"
28
+ tax_product_class="products_rate_1,shipping_rate_1">
29
+ <execute>1</execute>
30
+ <code>Customers buy Products with full Tax</code>
31
+ <priority>1</priority>
32
+ <position>0</position>
33
+ </products_full_tax>
34
+ <products_reduced_tax tax_rate="tax_calculation_rate_2"
35
+ tax_customer_class="customers_end_users,customers_companies"
36
+ tax_product_class="products_rate_2,shipping_rate_2">
37
+ <execute>1</execute>
38
+ <code>Customers buy Products with reduced Tax</code>
39
+ <priority>2</priority>
40
+ <position>0</position>
41
+ </products_reduced_tax>
42
+ <products_no_vat tax_rate="tax_calculation_rate_3"
43
+ tax_customer_class="customers_companies_no_vat"
44
+ tax_product_class="product_rate_1,products_rate_2,shipping_rate_1,shipping_rate_2">
45
+ <execute>1</execute>
46
+ <code>Non-taxable Companies buy Products with full and reduced Tax</code>
47
+ <priority>2</priority>
48
+ <position>0</position>
49
+ </products_no_vat>
50
+ </default>
51
+ </tax_calculation_rules>
52
+
53
+ <tax_classes>
54
+ <default>
55
+ <products_rate_1>
56
+ <execute>1</execute>
57
+ <class_id>1</class_id>
58
+ <class_name>Products with full Tax</class_name>
59
+ <class_type>PRODUCT</class_type>
60
+ <default>1</default>
61
+ </products_rate_1>
62
+ <products_rate_2>
63
+ <execute>1</execute>
64
+ <class_id>2</class_id>
65
+ <class_name>Products with reduced Tax</class_name>
66
+ <class_type>PRODUCT</class_type>
67
+ <default>0</default>
68
+ </products_rate_2>
69
+ <shipping_rate_1>
70
+ <execute>1</execute>
71
+ <class_id>3</class_id>
72
+ <class_name>Shipping with full Tax</class_name>
73
+ <class_type>PRODUCT</class_type>
74
+ <default>0</default>
75
+ </shipping_rate_1>
76
+ <shipping_rate_2>
77
+ <execute>1</execute>
78
+ <class_id>4</class_id>
79
+ <class_name>Shipping with reduced Tax</class_name>
80
+ <class_type>PRODUCT</class_type>
81
+ <default>0</default>
82
+ </shipping_rate_2>
83
+ <customers_end_users>
84
+ <execute>1</execute>
85
+ <class_id>5</class_id>
86
+ <class_name>End Customers</class_name>
87
+ <class_type>CUSTOMER</class_type>
88
+ </customers_end_users>
89
+ <customers_companies>
90
+ <execute>1</execute>
91
+ <class_id>6</class_id>
92
+ <class_name>Taxable Companies</class_name>
93
+ <class_type>CUSTOMER</class_type>
94
+ </customers_companies>
95
+ <customers_companies_no_vat>
96
+ <execute>1</execute>
97
+ <class_id>7</class_id>
98
+ <class_name>Non-Taxable Companies</class_name>
99
+ <class_type>CUSTOMER</class_type>
100
+ </customers_companies_no_vat>
101
+ </default>
102
+ </tax_classes>
103
+
104
+ <tax_calculation_rates>
105
+ <default>
106
+ <tax_calculation_rate_1>
107
+ <execute>1</execute>
108
+ <tax_region_id>0</tax_region_id>
109
+ <tax_postcode>*</tax_postcode>
110
+ <label>VAT</label>
111
+ <rate>21</rate>
112
+ </tax_calculation_rate_1>
113
+
114
+ <tax_calculation_rate_2>
115
+ <execute>1</execute>
116
+ <tax_region_id>0</tax_region_id>
117
+ <tax_postcode>*</tax_postcode>
118
+ <label>reduced VAT</label>
119
+ <rate>6</rate>
120
+ </tax_calculation_rate_2>
121
+
122
+ <tax_calculation_rate_3>
123
+ <execute>1</execute>
124
+ <tax_region_id>0</tax_region_id>
125
+ <tax_postcode>*</tax_postcode>
126
+ <label>without VAT</label>
127
+ <rate>0</rate>
128
+ </tax_calculation_rate_3>
129
+ </default>
130
+
131
+ </tax_calculation_rates>
132
+
133
+ <tax_config>
134
+ <default>
135
+ <general__country__default>NL</general__country__default>
136
+ <tax__classes__shipping_tax_class>3</tax__classes__shipping_tax_class>
137
+ <tax__calculation__based_on>billing</tax__calculation__based_on>
138
+ <tax__calculation__price_includes_tax>1</tax__calculation__price_includes_tax>
139
+ <tax__calculation__shipping_includes_tax>1</tax__calculation__shipping_includes_tax>
140
+ <tax__calculation__apply_after_discount>1</tax__calculation__apply_after_discount>
141
+ <tax__calculation__discount_tax>1</tax__calculation__discount_tax>
142
+ <tax__defaults__country>NL</tax__defaults__country>
143
+ <tax__defaults__region></tax__defaults__region>
144
+ <tax__defaults__postcode>1234</tax__defaults__postcode>
145
+ <tax__display__type>2</tax__display__type>
146
+ <tax__display__shipping>2</tax__display__shipping>
147
+ <tax__cart_display__subtotal>2</tax__cart_display__subtotal>
148
+ <tax__cart_display__full_summary>1</tax__cart_display__full_summary>
149
+ <tax__cart_display__shipping>2</tax__cart_display__shipping>
150
+ <tax__cart_display__price>2</tax__cart_display__price>
151
+ <tax__cart_display__zero_tax>1</tax__cart_display__zero_tax>
152
+ <tax__cart_display__grandtotal>0</tax__cart_display__grandtotal>
153
+ <tax__sales_display__price>2</tax__sales_display__price>
154
+ <tax__sales_display__subtotal>2</tax__sales_display__subtotal>
155
+ <tax__sales_display__shipping>2</tax__sales_display__shipping>
156
+ <tax__sales_display__grandtotal>0</tax__sales_display__grandtotal>
157
+ <tax__sales_display__full_summary>1</tax__sales_display__full_summary>
158
+ <tax__sales_display__zero_tax>1</tax__sales_display__zero_tax>
159
+ <shipping__origin__country_id>NL</shipping__origin__country_id>
160
+ <shipping__origin__region_id></shipping__origin__region_id>
161
+ <shipping__origin__postcode>1234</shipping__origin__postcode>
162
+ <shipping__origin__city>Sample City</shipping__origin__city>
163
+ </default>
164
+ </tax_config>
165
+ </magesetup>
166
+ </default>
167
+ </config>
app/code/community/FireGento/MageSetup/etc/ru/cms.xml CHANGED
@@ -1,9 +1,9 @@
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
- * This file is part of the FIREGENTO project.
5
  *
6
- * FireGento_MageSetup is free software; you can redistribute it and/or
7
  * modify it under the terms of the GNU General Public License version 3 as
8
  * published by the Free Software Foundation.
9
  *
@@ -11,15 +11,11 @@
11
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13
  *
14
- * PHP version 5
15
- *
16
  * @category FireGento
17
  * @package FireGento_MageSetup
18
  * @author FireGento Team <team@firegento.com>
19
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
20
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
21
- * @version $Id:$
22
- * @since 0.1.0
23
  */
24
  -->
25
  <config>
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
+ * This file is part of a FireGento e.V. module.
5
  *
6
+ * This FireGento e.V. module is free software; you can redistribute it and/or
7
  * modify it under the terms of the GNU General Public License version 3 as
8
  * published by the Free Software Foundation.
9
  *
11
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13
  *
 
 
14
  * @category FireGento
15
  * @package FireGento_MageSetup
16
  * @author FireGento Team <team@firegento.com>
17
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
18
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
 
 
19
  */
20
  -->
21
  <config>
app/code/community/FireGento/MageSetup/etc/ru/email.xml CHANGED
@@ -1,9 +1,9 @@
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
- * This file is part of the FIREGENTO project.
5
  *
6
- * FireGento_MageSetup is free software; you can redistribute it and/or
7
  * modify it under the terms of the GNU General Public License version 3 as
8
  * published by the Free Software Foundation.
9
  *
@@ -11,15 +11,11 @@
11
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13
  *
14
- * PHP version 5
15
- *
16
  * @category FireGento
17
  * @package FireGento_MageSetup
18
  * @author FireGento Team <team@firegento.com>
19
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
20
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
21
- * @version $Id:$
22
- * @since 0.1.0
23
  */
24
  -->
25
  <config>
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
+ * This file is part of a FireGento e.V. module.
5
  *
6
+ * This FireGento e.V. module is free software; you can redistribute it and/or
7
  * modify it under the terms of the GNU General Public License version 3 as
8
  * published by the Free Software Foundation.
9
  *
11
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13
  *
 
 
14
  * @category FireGento
15
  * @package FireGento_MageSetup
16
  * @author FireGento Team <team@firegento.com>
17
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
18
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
 
 
19
  */
20
  -->
21
  <config>
app/code/community/FireGento/MageSetup/etc/ru/systemconfig.xml CHANGED
@@ -1,9 +1,9 @@
1
  <?xml version="1.0" encoding="UTF-8"?>
2
  <!--
3
  /**
4
- * This file is part of the FIREGENTO project.
5
  *
6
- * FireGento_MageSetup is free software; you can redistribute it and/or
7
  * modify it under the terms of the GNU General Public License version 3 as
8
  * published by the Free Software Foundation.
9
  *
@@ -11,15 +11,11 @@
11
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13
  *
14
- * PHP version 5
15
- *
16
  * @category FireGento
17
  * @package FireGento_MageSetup
18
  * @author FireGento Team <team@firegento.com>
19
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
20
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
21
- * @version $Id:$
22
- * @since 0.1.0
23
  */
24
  -->
25
  <config>
1
  <?xml version="1.0" encoding="UTF-8"?>
2
  <!--
3
  /**
4
+ * This file is part of a FireGento e.V. module.
5
  *
6
+ * This FireGento e.V. module is free software; you can redistribute it and/or
7
  * modify it under the terms of the GNU General Public License version 3 as
8
  * published by the Free Software Foundation.
9
  *
11
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13
  *
 
 
14
  * @category FireGento
15
  * @package FireGento_MageSetup
16
  * @author FireGento Team <team@firegento.com>
17
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
18
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
 
 
19
  */
20
  -->
21
  <config>
app/code/community/FireGento/MageSetup/etc/ru/tax.xml CHANGED
@@ -1,9 +1,9 @@
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
- * This file is part of the FIREGENTO project.
5
  *
6
- * FireGento_MageSetup is free software; you can redistribute it and/or
7
  * modify it under the terms of the GNU General Public License version 3 as
8
  * published by the Free Software Foundation.
9
  *
@@ -11,15 +11,11 @@
11
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13
  *
14
- * PHP version 5
15
- *
16
  * @category FireGento
17
  * @package FireGento_MageSetup
18
  * @author FireGento Team <team@firegento.com>
19
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
20
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
21
- * @version $Id:$
22
- * @since 0.1.0
23
  */
24
  -->
25
  <config>
@@ -89,18 +85,21 @@
89
  <class_id>5</class_id>
90
  <class_name>End Consumers</class_name>
91
  <class_type>CUSTOMER</class_type>
 
92
  </customers_end_consumers>
93
  <customers_companies>
94
  <execute>1</execute>
95
  <class_id>6</class_id>
96
  <class_name>Taxable Companies</class_name>
97
  <class_type>CUSTOMER</class_type>
 
98
  </customers_companies>
99
  <customers_companies_no_vat>
100
  <execute>1</execute>
101
  <class_id>7</class_id>
102
  <class_name>Non-Taxable Companies</class_name>
103
  <class_type>CUSTOMER</class_type>
 
104
  </customers_companies_no_vat>
105
  </default>
106
  </tax_classes>
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
+ * This file is part of a FireGento e.V. module.
5
  *
6
+ * This FireGento e.V. module is free software; you can redistribute it and/or
7
  * modify it under the terms of the GNU General Public License version 3 as
8
  * published by the Free Software Foundation.
9
  *
11
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13
  *
 
 
14
  * @category FireGento
15
  * @package FireGento_MageSetup
16
  * @author FireGento Team <team@firegento.com>
17
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
18
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
 
 
19
  */
20
  -->
21
  <config>
85
  <class_id>5</class_id>
86
  <class_name>End Consumers</class_name>
87
  <class_type>CUSTOMER</class_type>
88
+ <default>1</default>
89
  </customers_end_consumers>
90
  <customers_companies>
91
  <execute>1</execute>
92
  <class_id>6</class_id>
93
  <class_name>Taxable Companies</class_name>
94
  <class_type>CUSTOMER</class_type>
95
+ <default>0</default>
96
  </customers_companies>
97
  <customers_companies_no_vat>
98
  <execute>1</execute>
99
  <class_id>7</class_id>
100
  <class_name>Non-Taxable Companies</class_name>
101
  <class_type>CUSTOMER</class_type>
102
+ <default>0</default>
103
  </customers_companies_no_vat>
104
  </default>
105
  </tax_classes>
app/code/community/FireGento/MageSetup/etc/system.xml CHANGED
@@ -1,9 +1,9 @@
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
- * This file is part of the FIREGENTO project.
5
  *
6
- * FireGento_MageSetup is free software; you can redistribute it and/or
7
  * modify it under the terms of the GNU General Public License version 3 as
8
  * published by the Free Software Foundation.
9
  *
@@ -11,15 +11,11 @@
11
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13
  *
14
- * PHP version 5
15
- *
16
  * @category FireGento
17
  * @package FireGento_MageSetup
18
  * @author FireGento Team <team@firegento.com>
19
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
20
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
21
- * @version $Id:$
22
- * @since 0.1.0
23
  */
24
  -->
25
  <config>
@@ -356,6 +352,14 @@
356
  <show_in_website>1</show_in_website>
357
  <show_in_store>1</show_in_store>
358
  </iban>
 
 
 
 
 
 
 
 
359
  </fields>
360
  </imprint>
361
  </groups>
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
+ * This file is part of a FireGento e.V. module.
5
  *
6
+ * This FireGento e.V. module is free software; you can redistribute it and/or
7
  * modify it under the terms of the GNU General Public License version 3 as
8
  * published by the Free Software Foundation.
9
  *
11
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13
  *
 
 
14
  * @category FireGento
15
  * @package FireGento_MageSetup
16
  * @author FireGento Team <team@firegento.com>
17
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
18
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
 
 
19
  */
20
  -->
21
  <config>
352
  <show_in_website>1</show_in_website>
353
  <show_in_store>1</show_in_store>
354
  </iban>
355
+ <clearing translate="label">
356
+ <label>Clearing</label>
357
+ <frontend_type>text</frontend_type>
358
+ <sort_order>300</sort_order>
359
+ <show_in_default>1</show_in_default>
360
+ <show_in_website>1</show_in_website>
361
+ <show_in_store>1</show_in_store>
362
+ </clearing>
363
  </fields>
364
  </imprint>
365
  </groups>
app/code/community/FireGento/MageSetup/scripts/GenerateCountryTaxXml.php DELETED
@@ -1,24 +0,0 @@
1
- <?php
2
- /**
3
- *
4
- * @author diglin
5
- * @since 07.09.13 16:06
6
- * @category Brillensuppe
7
- * @package Brillensuppe_Import
8
- * @copyright Copyright (c) 2011-2013 Diglin (http://www.diglin.com)
9
- * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
- */
11
-
12
- // Script is thought for French and Italian countries (feel free to improve or adapt for other lands)
13
-
14
- require_once ('../../../../../Mage.php');
15
-
16
- // Need to add HR for Croatia manually - Magento Core Config is not up-to-date
17
- $europeanCountries = Mage::getConfig()->getNode('general/country/eu_countries');
18
-
19
- // Generate tax_calculation_rates
20
-
21
- if ($argc == 0) {
22
- die('Usage is ');
23
- }
24
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/code/community/FireGento/MageSetup/sql/magesetup_setup/mysql4-install-0.5.0.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -15,7 +15,7 @@
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.1.0
@@ -23,13 +23,9 @@
23
  /**
24
  * Setup script; Adds the delivery_time attribute for products
25
  *
26
- * @category FireGento
27
- * @package FireGento_MageSetup
28
- * @author FireGento Team <team@firegento.com>
29
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
30
- * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
31
- * @version $Id:$
32
- * @since 0.1.0
33
  */
34
 
35
  /* @var $installer Mage_Eav_Model_Entity_Setup */
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.1.0
23
  /**
24
  * Setup script; Adds the delivery_time attribute for products
25
  *
26
+ * @category FireGento
27
+ * @package FireGento_MageSetup
28
+ * @author FireGento Team <team@firegento.com>
 
 
 
 
29
  */
30
 
31
  /* @var $installer Mage_Eav_Model_Entity_Setup */
app/code/community/FireGento/MageSetup/sql/magesetup_setup/mysql4-upgrade-1.0.4-1.0.5.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -15,7 +15,7 @@
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 1.0.5
@@ -23,13 +23,9 @@
23
  /**
24
  * Setup script; Adds a new column 'Visible in Checkout' to attributes
25
  *
26
- * @category FireGento
27
- * @package FireGento_MageSetup
28
- * @author FireGento Team <team@firegento.com>
29
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
30
- * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
31
- * @version $Id:$
32
- * @since 1.0.5
33
  */
34
 
35
  /* @var $this Mage_Eav_Model_Entity_Setup */
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 1.0.5
23
  /**
24
  * Setup script; Adds a new column 'Visible in Checkout' to attributes
25
  *
26
+ * @category FireGento
27
+ * @package FireGento_MageSetup
28
+ * @author FireGento Team <team@firegento.com>
 
 
 
 
29
  */
30
 
31
  /* @var $this Mage_Eav_Model_Entity_Setup */
app/code/community/FireGento/MageSetup/sql/magesetup_setup/mysql4-upgrade-1.1.2-1.1.3.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -15,7 +15,7 @@
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 1.0.7
@@ -23,13 +23,9 @@
23
  /**
24
  * Setup script; Adds the is_required field for the checkout agreements
25
  *
26
- * @category FireGento
27
- * @package FireGento_MageSetup
28
- * @author FireGento Team <team@firegento.com>
29
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
30
- * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
31
- * @version $Id:$
32
- * @since 1.0.7
33
  */
34
 
35
  /* @var $this Mage_Eav_Model_Entity_Setup */
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 1.0.7
23
  /**
24
  * Setup script; Adds the is_required field for the checkout agreements
25
  *
26
+ * @category FireGento
27
+ * @package FireGento_MageSetup
28
+ * @author FireGento Team <team@firegento.com>
 
 
 
 
29
  */
30
 
31
  /* @var $this Mage_Eav_Model_Entity_Setup */
app/code/community/FireGento/MageSetup/sql/magesetup_setup/mysql4-upgrade-1.1.3-1.1.4.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -15,7 +15,7 @@
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 1.0.7
@@ -23,13 +23,9 @@
23
  /**
24
  * Setup script; Adds a new table for newsletter subscriber status
25
  *
26
- * @category FireGento
27
- * @package FireGento_MageSetup
28
- * @author FireGento Team <team@firegento.com>
29
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
30
- * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
31
- * @version $Id:$
32
- * @since 1.0.7
33
  */
34
 
35
  /* @var $this Mage_Eav_Model_Entity_Setup */
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 1.0.7
23
  /**
24
  * Setup script; Adds a new table for newsletter subscriber status
25
  *
26
+ * @category FireGento
27
+ * @package FireGento_MageSetup
28
+ * @author FireGento Team <team@firegento.com>
 
 
 
 
29
  */
30
 
31
  /* @var $this Mage_Eav_Model_Entity_Setup */
app/code/community/FireGento/MageSetup/sql/magesetup_setup/mysql4-upgrade-1.1.4-1.2.0.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -15,7 +15,7 @@
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.1.0
@@ -23,13 +23,9 @@
23
  /**
24
  * Setup script; Adds the delivery_time attribute for products
25
  *
26
- * @category FireGento
27
- * @package FireGento_MageSetup
28
- * @author FireGento Team <team@firegento.com>
29
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
30
- * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
31
- * @version $Id:$
32
- * @since 0.1.0
33
  */
34
 
35
  /** @var $installer Mage_Catalog_Model_Resource_Eav_Mysql4_Setup */
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.1.0
23
  /**
24
  * Setup script; Adds the delivery_time attribute for products
25
  *
26
+ * @category FireGento
27
+ * @package FireGento_MageSetup
28
+ * @author FireGento Team <team@firegento.com>
 
 
 
 
29
  */
30
 
31
  /** @var $installer Mage_Catalog_Model_Resource_Eav_Mysql4_Setup */
app/code/community/FireGento/MageSetup/sql/magesetup_setup/mysql4-upgrade-1.2.0-1.2.1.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -15,7 +15,7 @@
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.1.0
@@ -23,13 +23,9 @@
23
  /**
24
  * Setup script; Adds the delivery_time attribute for products
25
  *
26
- * @category FireGento
27
- * @package FireGento_MageSetup
28
- * @author FireGento Team <team@firegento.com>
29
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
30
- * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
31
- * @version $Id:$
32
- * @since 1.2.1
33
  */
34
 
35
  /** @var $installer Mage_Catalog_Model_Resource_Eav_Mysql4_Setup */
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.1.0
23
  /**
24
  * Setup script; Adds the delivery_time attribute for products
25
  *
26
+ * @category FireGento
27
+ * @package FireGento_MageSetup
28
+ * @author FireGento Team <team@firegento.com>
 
 
 
 
29
  */
30
 
31
  /** @var $installer Mage_Catalog_Model_Resource_Eav_Mysql4_Setup */
app/code/community/FireGento/MageSetup/sql/magesetup_setup/mysql4-upgrade-1.2.1-1.2.2.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -15,20 +15,16 @@
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @since 0.1.0
21
  */
22
  /**
23
  * Setup script; Adds the is_required field for the checkout agreements
24
  *
25
- * @category FireGento
26
- * @package FireGento_MageSetup
27
- * @author FireGento Team <team@firegento.com>
28
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
29
- * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
30
- * @version $Id:$
31
- * @since 1.2.2
32
  */
33
 
34
  /** @var $installer Mage_Catalog_Model_Resource_Eav_Mysql4_Setup */
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @since 0.1.0
21
  */
22
  /**
23
  * Setup script; Adds the is_required field for the checkout agreements
24
  *
25
+ * @category FireGento
26
+ * @package FireGento_MageSetup
27
+ * @author FireGento Team <team@firegento.com>
 
 
 
 
28
  */
29
 
30
  /** @var $installer Mage_Catalog_Model_Resource_Eav_Mysql4_Setup */
app/code/community/FireGento/MageSetup/sql/magesetup_setup/mysql4-upgrade-1.2.2-1.2.3.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -15,7 +15,7 @@
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.1.0
@@ -23,13 +23,9 @@
23
  /**
24
  * Setup script; Adds the meta_autogenerate attribute for products
25
  *
26
- * @category FireGento
27
- * @package FireGento_MageSetup
28
- * @author FireGento Team <team@firegento.com>
29
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
30
- * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
31
- * @version $Id:$
32
- * @since 1.2.3
33
  */
34
 
35
  /** @var $installer Mage_Catalog_Model_Resource_Eav_Mysql4_Setup */
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
  * @version $Id:$
21
  * @since 0.1.0
23
  /**
24
  * Setup script; Adds the meta_autogenerate attribute for products
25
  *
26
+ * @category FireGento
27
+ * @package FireGento_MageSetup
28
+ * @author FireGento Team <team@firegento.com>
 
 
 
 
29
  */
30
 
31
  /** @var $installer Mage_Catalog_Model_Resource_Eav_Mysql4_Setup */
app/design/adminhtml/default/default/layout/magesetup.xml CHANGED
@@ -1,9 +1,9 @@
1
  <?xml version="1.0" encoding="UTF-8"?>
2
  <!--
3
  /**
4
- * This file is part of the FIREGENTO project.
5
  *
6
- * FireGento_MageSetup is free software; you can redistribute it and/or
7
  * modify it under the terms of the GNU General Public License version 3 as
8
  * published by the Free Software Foundation.
9
  *
@@ -11,15 +11,11 @@
11
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13
  *
14
- * PHP version 5
15
- *
16
  * @category FireGento
17
  * @package FireGento_MageSetup
18
  * @author FireGento Team <team@firegento.com>
19
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
20
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
21
- * @version $Id:$
22
- * @since 0.1.0
23
  */
24
  -->
25
  <layout version="0.1.0">
1
  <?xml version="1.0" encoding="UTF-8"?>
2
  <!--
3
  /**
4
+ * This file is part of a FireGento e.V. module.
5
  *
6
+ * This FireGento e.V. module is free software; you can redistribute it and/or
7
  * modify it under the terms of the GNU General Public License version 3 as
8
  * published by the Free Software Foundation.
9
  *
11
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13
  *
 
 
14
  * @category FireGento
15
  * @package FireGento_MageSetup
16
  * @author FireGento Team <team@firegento.com>
17
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
18
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
 
 
19
  */
20
  -->
21
  <layout version="0.1.0">
app/design/adminhtml/default/default/template/magesetup/extensions.phtml CHANGED
@@ -1,3 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  <div class="content-header">
2
  <h3><?php echo $this->__('Recommended Extensions') ?></h3>
3
  <p class="form-buttons"></p>
1
+ <?php
2
+ /**
3
+ * This file is part of a FireGento e.V. module.
4
+ *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
+ * modify it under the terms of the GNU General Public License version 3 as
7
+ * published by the Free Software Foundation.
8
+ *
9
+ * This script is distributed in the hope that it will be useful, but WITHOUT
10
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11
+ * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
12
+ *
13
+ * @category FireGento
14
+ * @package FireGento_MageSetup
15
+ * @author FireGento Team <team@firegento.com>
16
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
17
+ * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
18
+ */
19
+ ?>
20
+ <?php
21
+ /**
22
+ * @var $this Mage_Adminhtml_Block_Template
23
+ */
24
+ ?>
25
  <div class="content-header">
26
  <h3><?php echo $this->__('Recommended Extensions') ?></h3>
27
  <p class="form-buttons"></p>
app/design/adminhtml/default/default/template/magesetup/form.phtml CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -10,20 +10,15 @@
10
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
12
  *
13
- * PHP version 5
14
- *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
- * @version $Id:$
21
- * @since 0.4.0
22
  */
23
  ?>
24
  <?php
25
  /**
26
- * @see FireGento_MageSetup_Block_Adminhtml_Magesetup
27
  * @var $this FireGento_MageSetup_Block_Adminhtml_Magesetup
28
  */
29
  ?>
@@ -54,7 +49,7 @@
54
  <td class="value" style="width:160px !important;">
55
  <select name="country" id="select_country" style="width:150px !important;">
56
  <?php foreach ($this->getAvailableCountriesForSetup() as $countryCode => $countryName): ?>
57
- <option value="<?php echo $countryCode ?>"<?php if (Mage::getStoreConfig('magesetup/default_country') == $countryCode): ?> selected="selected"<?php endif ?>><?php echo $countryName ?></option>
58
  <?php endforeach ?>
59
  </select>
60
  </td>
@@ -156,8 +151,8 @@
156
  </table>
157
  </div>
158
  </div>
159
-
160
-
161
  <div class="entry-edit-head">
162
  <h4 class="icon-head head-edit-form fieldset-legend"><?php echo $this->__('CMS Settings') ?></h4>
163
  <div class="form-buttons"></div>
@@ -330,9 +325,9 @@
330
  <?php endforeach ?>
331
  }
332
  }
333
-
334
  updateNewTaxClassSelect($F('select_country'));
335
-
336
  $('select_country').observe('change', function(event) {
337
  updateNewTaxClassSelect($F('select_country'));
338
  });
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
10
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
12
  *
 
 
13
  * @category FireGento
14
  * @package FireGento_MageSetup
15
  * @author FireGento Team <team@firegento.com>
16
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
17
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
 
 
18
  */
19
  ?>
20
  <?php
21
  /**
 
22
  * @var $this FireGento_MageSetup_Block_Adminhtml_Magesetup
23
  */
24
  ?>
49
  <td class="value" style="width:160px !important;">
50
  <select name="country" id="select_country" style="width:150px !important;">
51
  <?php foreach ($this->getAvailableCountriesForSetup() as $countryCode => $countryName): ?>
52
+ <option value="<?php echo $countryCode ?>"<?php if (strtolower(Mage::getStoreConfig('general/country/default')) == $countryCode): ?> selected="selected"<?php endif ?>><?php echo $countryName ?></option>
53
  <?php endforeach ?>
54
  </select>
55
  </td>
151
  </table>
152
  </div>
153
  </div>
154
+
155
+
156
  <div class="entry-edit-head">
157
  <h4 class="icon-head head-edit-form fieldset-legend"><?php echo $this->__('CMS Settings') ?></h4>
158
  <div class="form-buttons"></div>
325
  <?php endforeach ?>
326
  }
327
  }
328
+
329
  updateNewTaxClassSelect($F('select_country'));
330
+
331
  $('select_country').observe('change', function(event) {
332
  updateNewTaxClassSelect($F('select_country'));
333
  });
app/design/adminhtml/default/default/template/magesetup/notifications.phtml CHANGED
@@ -1,7 +1,33 @@
1
- <?php /** @var $this FireGento_MageSetup_Block_Adminhtml_Notifications */ ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  <?php if (!$this->isInitialized()): ?>
3
- <div class="notification-global">
4
- <strong><?php echo $this->helper('magesetup')->__('MageSetup has been installed.') ?></strong>
5
- <?php echo $this->helper('magesetup')->__('Click <a href="%s">here</a> to set up your pages, blocks, emails and tax settings.', $this->getManageUrl()) ?>
6
- </div>
 
 
 
7
  <?php endif ?>
1
+ <?php
2
+ /**
3
+ * This file is part of a FireGento e.V. module.
4
+ *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
+ * modify it under the terms of the GNU General Public License version 3 as
7
+ * published by the Free Software Foundation.
8
+ *
9
+ * This script is distributed in the hope that it will be useful, but WITHOUT
10
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11
+ * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
12
+ *
13
+ * @category FireGento
14
+ * @package FireGento_MageSetup
15
+ * @author FireGento Team <team@firegento.com>
16
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
17
+ * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
18
+ */
19
+ ?>
20
+ <?php
21
+ /**
22
+ * @var $this FireGento_MageSetup_Block_Adminhtml_Notifications
23
+ */
24
+ ?>
25
  <?php if (!$this->isInitialized()): ?>
26
+ <div class="notification-global">
27
+ <span class="f-right">
28
+ <a href="<?php echo $this->getSkipUrl() ?>"><?php echo $this->__('Skip installation') ?></a>
29
+ </span>
30
+ <strong><?php echo $this->helper('magesetup')->__('MageSetup has been installed.') ?></strong>
31
+ <?php echo $this->helper('magesetup')->__('Click <a href="%s">here</a> to set up your pages, blocks, emails and tax settings.', $this->getManageUrl()) ?>
32
+ </div>
33
  <?php endif ?>
app/design/frontend/base/default/layout/magesetup.xml CHANGED
@@ -1,4 +1,23 @@
1
  <?xml version="1.0"?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  <layout version="0.1.0">
3
 
4
  <!--
1
  <?xml version="1.0"?>
2
+ <!--
3
+ /**
4
+ * This file is part of a FireGento e.V. module.
5
+ *
6
+ * This FireGento e.V. module is free software; you can redistribute it and/or
7
+ * modify it under the terms of the GNU General Public License version 3 as
8
+ * published by the Free Software Foundation.
9
+ *
10
+ * This script is distributed in the hope that it will be useful, but WITHOUT
11
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12
+ * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13
+ *
14
+ * @category FireGento
15
+ * @package FireGento_MageSetup
16
+ * @author FireGento Team <team@firegento.com>
17
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
18
+ * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
19
+ */
20
+ -->
21
  <layout version="0.1.0">
22
 
23
  <!--
app/design/frontend/base/default/template/magesetup/checkout/additional.phtml CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -10,22 +10,20 @@
10
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
12
  *
13
- * PHP version 5
14
- *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
- * @version $Id:$
21
- * @since 0.1.0
22
  */
23
  ?>
24
  <?php
25
- /* @var $this FireGento_MageSetup_Block_Checkout_Information */
 
 
26
  ?>
27
  <?php if ($additional = $this->getCheckoutAdditionalInformation()): ?>
28
- <div class="additional-information">
29
- <?php echo $additional ?>
30
- </div>
31
  <?php endif; ?>
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
10
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
12
  *
 
 
13
  * @category FireGento
14
  * @package FireGento_MageSetup
15
  * @author FireGento Team <team@firegento.com>
16
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
17
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
 
 
18
  */
19
  ?>
20
  <?php
21
+ /**
22
+ * @var $this FireGento_MageSetup_Block_Checkout_Information
23
+ */
24
  ?>
25
  <?php if ($additional = $this->getCheckoutAdditionalInformation()): ?>
26
+ <div class="additional-information">
27
+ <?php echo $additional ?>
28
+ </div>
29
  <?php endif; ?>
app/design/frontend/base/default/template/magesetup/checkout/multishipping/agreements.phtml CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -10,28 +10,14 @@
10
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
12
  *
13
- * PHP version 5
14
- *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
- * @version $Id:$
21
- * @since 0.1.0
22
  */
23
- /**
24
- * Checkout Agreements
25
- *
26
- * @category FireGento
27
- * @package FireGento_MageSetup
28
- * @author FireGento Team <team@firegento.com>
29
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
30
- * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
31
- * @version $Id:$
32
- * @since 0.1.0
33
- */
34
-
35
  /**
36
  * @var $this Mage_Checkout_Block_Agreements
37
  */
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
10
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
12
  *
 
 
13
  * @category FireGento
14
  * @package FireGento_MageSetup
15
  * @author FireGento Team <team@firegento.com>
16
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
17
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
 
 
18
  */
19
+ ?>
20
+ <?php
 
 
 
 
 
 
 
 
 
 
21
  /**
22
  * @var $this Mage_Checkout_Block_Agreements
23
  */
app/design/frontend/base/default/template/magesetup/checkout/multishipping/overview.phtml CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -10,18 +10,18 @@
10
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
12
  *
13
- * PHP version 5
14
- *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
- * @version $Id:$
21
- * @since 0.1.0
22
  */
23
  ?>
24
- <?php /** @var $this Mage_Checkout_Block_Multishipping_Overview */ ?>
 
 
 
 
25
  <div class="multiple-checkout">
26
  <div class="page-title">
27
  <h1><?php echo $this->__('Review Order') ?></h1>
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
10
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
12
  *
 
 
13
  * @category FireGento
14
  * @package FireGento_MageSetup
15
  * @author FireGento Team <team@firegento.com>
16
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
17
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
 
 
18
  */
19
  ?>
20
+ <?php
21
+ /**
22
+ * @var $this Mage_Checkout_Block_Multishipping_Overview
23
+ */
24
+ ?>
25
  <div class="multiple-checkout">
26
  <div class="page-title">
27
  <h1><?php echo $this->__('Review Order') ?></h1>
app/design/frontend/base/default/template/magesetup/checkout/onepage/agreements.phtml CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -10,28 +10,14 @@
10
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
12
  *
13
- * PHP version 5
14
- *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
- * @version $Id:$
21
- * @since 0.1.0
22
  */
23
- /**
24
- * Checkout Agreements
25
- *
26
- * @category FireGento
27
- * @package FireGento_MageSetup
28
- * @author FireGento Team <team@firegento.com>
29
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
30
- * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
31
- * @version $Id:$
32
- * @since 1.2.2
33
- */
34
-
35
  /**
36
  * @var $this FireGento_MageSetup_Block_Checkout_Agreements
37
  */
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
10
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
12
  *
 
 
13
  * @category FireGento
14
  * @package FireGento_MageSetup
15
  * @author FireGento Team <team@firegento.com>
16
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
17
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
 
 
18
  */
19
+ ?>
20
+ <?php
 
 
 
 
 
 
 
 
 
 
21
  /**
22
  * @var $this FireGento_MageSetup_Block_Checkout_Agreements
23
  */
app/design/frontend/base/default/template/magesetup/customer/form/tc-confirmation.phtml CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -10,28 +10,14 @@
10
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
12
  *
13
- * PHP version 5
14
- *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
- * @version $Id:$
21
- * @since 0.1.0
22
  */
23
- /**
24
- * Checkout Agreements
25
- *
26
- * @category FireGento
27
- * @package FireGento_MageSetup
28
- * @author FireGento Team <team@firegento.com>
29
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
30
- * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
31
- * @version $Id:$
32
- * @since 0.1.0
33
- */
34
-
35
  /**
36
  * @var $this Mage_Checkout_Block_Agreements
37
  */
@@ -43,13 +29,13 @@ $helper = $this->helper('magesetup');
43
  <?php if (!$this->getAgreements()) return; ?>
44
 
45
  <?php foreach ($this->getAgreements() as $_a): ?>
46
- <li class="control">
47
- <p class="agree">
48
- <?php if( $_a->getIsRequired() ): ?>
49
- <input type="checkbox" id="agreement-<?php echo $_a->getId()?>" name="agreement[<?php echo $_a->getId()?>]" value="1" title="<?php echo $this->htmlEscape( $_a->getCheckboxText() ) ?>" class="checkbox required-entry"/>
50
- <?php endif; ?>
51
- <label <?php if( $_a->getIsRequired() ): ?>for="agreement-<?php echo $_a->getId()?>"<?php endif; ?> style="float:none;"><?php echo $_a->getIsHtml() ? $_a->getCheckboxText() : $this->htmlEscape( $_a->getCheckboxText() ) ?></label>
52
- <a href="<?php echo $helper->getAgreementUrl( $_a ) ?>" onclick="window.open(this.href, '', 'width=600,height=600,left=0,top=0,location=no,status=yes,scrollbars=yes,resizable=yes').focus(); return false;"><?php echo $this->__( '[Show]' ) ?></a>
53
- </p>
54
- </li>
55
  <?php endforeach ?>
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
10
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
12
  *
 
 
13
  * @category FireGento
14
  * @package FireGento_MageSetup
15
  * @author FireGento Team <team@firegento.com>
16
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
17
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
 
 
18
  */
19
+ ?>
20
+ <?php
 
 
 
 
 
 
 
 
 
 
21
  /**
22
  * @var $this Mage_Checkout_Block_Agreements
23
  */
29
  <?php if (!$this->getAgreements()) return; ?>
30
 
31
  <?php foreach ($this->getAgreements() as $_a): ?>
32
+ <li class="control">
33
+ <p class="agree">
34
+ <?php if( $_a->getIsRequired() ): ?>
35
+ <input type="checkbox" id="agreement-<?php echo $_a->getId()?>" name="agreement[<?php echo $_a->getId()?>]" value="1" title="<?php echo $this->htmlEscape( $_a->getCheckboxText() ) ?>" class="checkbox required-entry"/>
36
+ <?php endif; ?>
37
+ <label <?php if( $_a->getIsRequired() ): ?>for="agreement-<?php echo $_a->getId()?>"<?php endif; ?> style="float:none;"><?php echo $_a->getIsHtml() ? $_a->getCheckboxText() : $this->htmlEscape( $_a->getCheckboxText() ) ?></label>
38
+ <a href="<?php echo $helper->getAgreementUrl( $_a ) ?>" onclick="window.open(this.href, '', 'width=600,height=600,left=0,top=0,location=no,status=yes,scrollbars=yes,resizable=yes').focus(); return false;"><?php echo $this->__( '[Show]' ) ?></a>
39
+ </p>
40
+ </li>
41
  <?php endforeach ?>
app/design/frontend/base/default/template/magesetup/delivery_time.phtml CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -10,35 +10,20 @@
10
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
12
  *
13
- * PHP version 5
14
- *
15
- * @category FireGento
16
- * @package FireGento_MageSetup
17
- * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
- * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
- * @version $Id:$
21
- * @since 0.1.0
22
- */
23
- /**
24
- * Template for displaying delivery time
25
- *
26
  * @category FireGento
27
  * @package FireGento_MageSetup
28
  * @author FireGento Team <team@firegento.com>
29
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
30
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
31
- * @version $Id:$
32
- * @since 1.2.0
33
  */
34
-
 
35
  /**
36
  * @var $this Mage_Catalog_Block_Product_View_Abstract
37
  */
38
  ?>
39
-
40
  <?php if ($this->getProduct()->getDeliveryTime()): ?>
41
- <p class="delivery-time">
42
- <?php echo $this->__('Delivery Time') ?>: <?php echo $this->getProduct()->getDeliveryTime() ?>
43
- </p>
44
  <?php endif ?>
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
10
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
12
  *
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  * @category FireGento
14
  * @package FireGento_MageSetup
15
  * @author FireGento Team <team@firegento.com>
16
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
17
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
 
 
18
  */
19
+ ?>
20
+ <?php
21
  /**
22
  * @var $this Mage_Catalog_Block_Product_View_Abstract
23
  */
24
  ?>
 
25
  <?php if ($this->getProduct()->getDeliveryTime()): ?>
26
+ <p class="delivery-time">
27
+ <?php echo $this->__('Delivery Time') ?>: <?php echo $this->getProduct()->getDeliveryTime() ?>
28
+ </p>
29
  <?php endif ?>
app/design/frontend/base/default/template/magesetup/imprint/address.phtml CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -10,20 +10,16 @@
10
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
12
  *
13
- * PHP version 5
14
- *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
- * @version $Id:$
21
- * @since 0.1.0
22
  */
23
  ?>
24
  <?php
25
  /**
26
- * @see FireGento_MageSetup_Block_Imprint_Content
27
  */
28
  ?>
29
  <?php echo $this->getCompanyFirst() ?><br />
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
10
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
12
  *
 
 
13
  * @category FireGento
14
  * @package FireGento_MageSetup
15
  * @author FireGento Team <team@firegento.com>
16
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
17
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
 
 
18
  */
19
  ?>
20
  <?php
21
  /**
22
+ * @var $this FireGento_MageSetup_Block_Imprint_Content
23
  */
24
  ?>
25
  <?php echo $this->getCompanyFirst() ?><br />
app/design/frontend/base/default/template/magesetup/imprint/bank.phtml CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -10,25 +10,21 @@
10
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
12
  *
13
- * PHP version 5
14
- *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
- * @version $Id:$
21
- * @since 0.1.0
22
  */
23
  ?>
24
  <?php
25
  /**
26
- * @see FireGento_MageSetup_Block_Imprint_Content
27
  */
28
  ?>
29
 
30
  <?php if (strlen(trim($this->getBankAccount())) || strlen(trim($this->getSwift()))): ?>
31
- <h3>Bankverbindung</h3>
32
  <?php endif ?>
33
 
34
  <?php if (strlen(trim($this->getBankAccountOwner()))): ?>
@@ -49,3 +45,6 @@
49
  <?php if (strlen(trim($this->getIban()))): ?>
50
  <?php echo $this->__('IBAN') ?>: <?php echo $this->getIban() ?><br />
51
  <?php endif ?>
 
 
 
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
10
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
12
  *
 
 
13
  * @category FireGento
14
  * @package FireGento_MageSetup
15
  * @author FireGento Team <team@firegento.com>
16
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
17
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
 
 
18
  */
19
  ?>
20
  <?php
21
  /**
22
+ * @var $this FireGento_MageSetup_Block_Imprint_Content
23
  */
24
  ?>
25
 
26
  <?php if (strlen(trim($this->getBankAccount())) || strlen(trim($this->getSwift()))): ?>
27
+ <h3><?php echo $this->__('Bank Information'); ?></h3>
28
  <?php endif ?>
29
 
30
  <?php if (strlen(trim($this->getBankAccountOwner()))): ?>
45
  <?php if (strlen(trim($this->getIban()))): ?>
46
  <?php echo $this->__('IBAN') ?>: <?php echo $this->getIban() ?><br />
47
  <?php endif ?>
48
+ <?php if (strlen(trim($this->getClearing()))): ?>
49
+ <?php echo $this->__('Clearing') ?>: <?php echo $this->getClearing() ?><br />
50
+ <?php endif ?>
app/design/frontend/base/default/template/magesetup/imprint/communication.phtml CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -10,15 +10,11 @@
10
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
12
  *
13
- * PHP version 5
14
- *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
- * @version $Id:$
21
- * @since 0.1.0
22
  */
23
  ?>
24
  <?php
@@ -35,4 +31,4 @@
35
  <?php if (strlen(trim($this->getWeb()))): ?>
36
  <?php echo $this->__('Web') ?>: <a href="<?php echo $this->getWeb(true) ?>" title="<?php echo $this->getCompanyFirst() ?>"><?php echo $this->getWeb() ?></a><br />
37
  <?php endif ?>
38
- <?php echo $this->__('E-Mail') ?>: <a href="mailto:<?php echo $this->getEmail() ?>" title="<?php echo $this->getCompanyFirst() ?>"><?php echo $this->getEmail() ?></a>
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
10
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
12
  *
 
 
13
  * @category FireGento
14
  * @package FireGento_MageSetup
15
  * @author FireGento Team <team@firegento.com>
16
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
17
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
 
 
18
  */
19
  ?>
20
  <?php
31
  <?php if (strlen(trim($this->getWeb()))): ?>
32
  <?php echo $this->__('Web') ?>: <a href="<?php echo $this->getWeb(true) ?>" title="<?php echo $this->getCompanyFirst() ?>"><?php echo $this->getWeb() ?></a><br />
33
  <?php endif ?>
34
+ <?php echo $this->__('E-Mail') ?>: <?php echo $this->getEmail(true) ?>
app/design/frontend/base/default/template/magesetup/imprint/email_footer.phtml CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -10,20 +10,16 @@
10
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
12
  *
13
- * PHP version 5
14
- *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
- * @version $Id:$
21
- * @since 0.1.0
22
  */
23
  ?>
24
  <?php
25
  /**
26
- * @see FireGento_MageSetup_Block_Imprint_Content
27
  */
28
  ?>
29
  <p><strong><?php echo $this->getShopName() ?></strong></p>
@@ -47,7 +43,7 @@
47
  <?php if (strlen(trim($this->getWeb()))): ?>
48
  <?php echo $this->__('Web') ?>: <a href="http://<?php echo $this->getWeb() ?>" title="<?php echo $this->getCompanyFirst() ?>"><?php echo $this->getWeb() ?></a><br />
49
  <?php endif ?>
50
- <?php echo $this->__('E-Mail') ?>: <a href="mailto:<?php echo $this->getEmail() ?>" title="<?php echo $this->getCompanyFirst() ?>"><?php echo $this->getEmail() ?></a>
51
  </p>
52
 
53
  <p>
@@ -99,4 +95,7 @@
99
  <?php if (strlen(trim($this->getIban()))): ?>
100
  <?php echo $this->__('IBAN') ?>: <?php echo $this->getIban() ?><br />
101
  <?php endif ?>
 
 
 
102
  </p>
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
10
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
12
  *
 
 
13
  * @category FireGento
14
  * @package FireGento_MageSetup
15
  * @author FireGento Team <team@firegento.com>
16
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
17
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
 
 
18
  */
19
  ?>
20
  <?php
21
  /**
22
+ * @var $this FireGento_MageSetup_Block_Imprint_Content
23
  */
24
  ?>
25
  <p><strong><?php echo $this->getShopName() ?></strong></p>
43
  <?php if (strlen(trim($this->getWeb()))): ?>
44
  <?php echo $this->__('Web') ?>: <a href="http://<?php echo $this->getWeb() ?>" title="<?php echo $this->getCompanyFirst() ?>"><?php echo $this->getWeb() ?></a><br />
45
  <?php endif ?>
46
+ <?php echo $this->__('E-Mail') ?>: <?php echo $this->getEmail(false) ?>
47
  </p>
48
 
49
  <p>
95
  <?php if (strlen(trim($this->getIban()))): ?>
96
  <?php echo $this->__('IBAN') ?>: <?php echo $this->getIban() ?><br />
97
  <?php endif ?>
98
+ <?php if (strlen(trim($this->getClearing()))): ?>
99
+ <?php echo $this->__('Clearing') ?>: <?php echo $this->getClearing() ?><br />
100
+ <?php endif ?>
101
  </p>
app/design/frontend/base/default/template/magesetup/imprint/legal.phtml CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -10,21 +10,16 @@
10
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
12
  *
13
- * PHP version 5
14
- *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
- * @version $Id:$
21
- * @since 0.1.0
22
  */
23
  ?>
24
  <?php
25
  /**
26
  * @var $this FireGento_MageSetup_Block_Imprint_Content
27
- * @see FireGento_MageSetup_Block_Imprint_Content
28
  */
29
  ?>
30
  <?php if (strlen(trim($this->getCeo()))): ?>
@@ -45,9 +40,6 @@
45
  <?php if (strlen(trim($this->getContentResponsablePressLaw()))): ?>
46
  <?php echo $this->__('Responsible in the interests of the press law') ?>: <?php echo $this->getContentResponsablePressLaw() ?><br />
47
  <?php endif ?>
48
- <?php if (strlen(trim($this->getVatId()))): ?>
49
- <?php echo $this->__('VAT-ID') ?>: <?php echo $this->getVatId() ?><br />
50
- <?php endif ?>
51
  <?php if (strlen(trim($this->getCourt()))): ?>
52
  <?php echo $this->__('Register court') ?>: <?php echo $this->getCourt() ?><br />
53
  <?php endif ?>
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
10
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
12
  *
 
 
13
  * @category FireGento
14
  * @package FireGento_MageSetup
15
  * @author FireGento Team <team@firegento.com>
16
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
17
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
 
 
18
  */
19
  ?>
20
  <?php
21
  /**
22
  * @var $this FireGento_MageSetup_Block_Imprint_Content
 
23
  */
24
  ?>
25
  <?php if (strlen(trim($this->getCeo()))): ?>
40
  <?php if (strlen(trim($this->getContentResponsablePressLaw()))): ?>
41
  <?php echo $this->__('Responsible in the interests of the press law') ?>: <?php echo $this->getContentResponsablePressLaw() ?><br />
42
  <?php endif ?>
 
 
 
43
  <?php if (strlen(trim($this->getCourt()))): ?>
44
  <?php echo $this->__('Register court') ?>: <?php echo $this->getCourt() ?><br />
45
  <?php endif ?>
app/design/frontend/base/default/template/magesetup/imprint/tax.phtml CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -10,20 +10,16 @@
10
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
12
  *
13
- * PHP version 5
14
- *
15
  * @category FireGento
16
  * @package FireGento_MageSetup
17
  * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
- * @version $Id:$
21
- * @since 0.1.0
22
  */
23
  ?>
24
  <?php
25
  /**
26
- * @see FireGento_MageSetup_Block_Imprint_Content
27
  */
28
  ?>
29
  <?php if (strlen(trim($this->getFinancialOffice()))): ?>
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
10
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
12
  *
 
 
13
  * @category FireGento
14
  * @package FireGento_MageSetup
15
  * @author FireGento Team <team@firegento.com>
16
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
17
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
 
 
18
  */
19
  ?>
20
  <?php
21
  /**
22
+ * @var $this FireGento_MageSetup_Block_Imprint_Content
23
  */
24
  ?>
25
  <?php if (strlen(trim($this->getFinancialOffice()))): ?>
app/design/frontend/base/default/template/magesetup/price_info.phtml CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -10,33 +10,18 @@
10
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
12
  *
13
- * PHP version 5
14
- *
15
- * @category FireGento
16
- * @package FireGento_MageSetup
17
- * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
- * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
- * @version $Id:$
21
- * @since 0.1.0
22
- */
23
- /**
24
- * Template for tax display and shipping cost link
25
- *
26
  * @category FireGento
27
  * @package FireGento_MageSetup
28
  * @author FireGento Team <team@firegento.com>
29
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
30
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
31
- * @version $Id:$
32
- * @since 0.1.0
33
  */
34
-
 
35
  /**
36
  * @var $this FireGento_MageSetup_Block_Catalog_Product_Price
37
  */
38
  ?>
39
-
40
  <?php $shippingCostUrl = Mage::helper( 'magesetup' )->getShippingCostUrl() ?>
41
  <?php if( !empty( $shippingCostUrl ) && $this->getIsShowShippingLink() ): ?>
42
  <?php if( $this->getIsIncludingTax() == Mage_Tax_Model_Config::DISPLAY_TYPE_EXCLUDING_TAX ): ?>
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
10
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
12
  *
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  * @category FireGento
14
  * @package FireGento_MageSetup
15
  * @author FireGento Team <team@firegento.com>
16
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
17
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
 
 
18
  */
19
+ ?>
20
+ <?php
21
  /**
22
  * @var $this FireGento_MageSetup_Block_Catalog_Product_Price
23
  */
24
  ?>
 
25
  <?php $shippingCostUrl = Mage::helper( 'magesetup' )->getShippingCostUrl() ?>
26
  <?php if( !empty( $shippingCostUrl ) && $this->getIsShowShippingLink() ): ?>
27
  <?php if( $this->getIsIncludingTax() == Mage_Tax_Model_Config::DISPLAY_TYPE_EXCLUDING_TAX ): ?>
app/design/frontend/base/default/template/magesetup/shipping.phtml CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * This file is part of the FIREGENTO project.
4
  *
5
- * FireGento_MageSetup is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
@@ -10,37 +10,22 @@
10
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
12
  *
13
- * PHP version 5
14
- *
15
- * @category FireGento
16
- * @package FireGento_MageSetup
17
- * @author FireGento Team <team@firegento.com>
18
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
19
- * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
20
- * @version $Id:$
21
- * @since 0.1.0
22
- */
23
- /**
24
- * Template for shipping cost link
25
- *
26
  * @category FireGento
27
  * @package FireGento_MageSetup
28
  * @author FireGento Team <team@firegento.com>
29
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
30
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
31
- * @version $Id:$
32
- * @since 1.2.0
33
  */
34
-
 
35
  /**
36
  * @var $this Mage_Checkout_Block_Cart_Shipping
37
  */
38
  ?>
39
-
40
  <?php $shippingCostUrl = Mage::helper( 'magesetup' )->getShippingCostUrl() ?>
41
  <?php if( !empty( $shippingCostUrl )): ?>
42
- <div class="shipping">
43
- <h2><?php echo $this->__('Shipping Costs') ?></h2>
44
- <p><a href="<?php echo $shippingCostUrl ?>"><?php echo $this->__('Here you find information regarding the shipping costs.') ?></a></p>
45
- </div>
46
  <?php endif ?>
1
  <?php
2
  /**
3
+ * This file is part of a FireGento e.V. module.
4
  *
5
+ * This FireGento e.V. module is free software; you can redistribute it and/or
6
  * modify it under the terms of the GNU General Public License version 3 as
7
  * published by the Free Software Foundation.
8
  *
10
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
12
  *
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  * @category FireGento
14
  * @package FireGento_MageSetup
15
  * @author FireGento Team <team@firegento.com>
16
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
17
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
 
 
18
  */
19
+ ?>
20
+ <?php
21
  /**
22
  * @var $this Mage_Checkout_Block_Cart_Shipping
23
  */
24
  ?>
 
25
  <?php $shippingCostUrl = Mage::helper( 'magesetup' )->getShippingCostUrl() ?>
26
  <?php if( !empty( $shippingCostUrl )): ?>
27
+ <div class="shipping">
28
+ <h2><?php echo $this->__('Shipping Costs') ?></h2>
29
+ <p><a href="<?php echo $shippingCostUrl ?>"><?php echo $this->__('Here you find information regarding the shipping costs.') ?></a></p>
30
+ </div>
31
  <?php endif ?>
app/etc/modules/FireGento_MageSetup.xml CHANGED
@@ -1,9 +1,9 @@
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
- * This file is part of the FIREGENTO project.
5
  *
6
- * FireGento_MageSetup is free software; you can redistribute it and/or
7
  * modify it under the terms of the GNU General Public License version 3 as
8
  * published by the Free Software Foundation.
9
  *
@@ -11,15 +11,11 @@
11
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13
  *
14
- * PHP version 5
15
- *
16
  * @category FireGento
17
  * @package FireGento_MageSetup
18
  * @author FireGento Team <team@firegento.com>
19
- * @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
20
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
21
- * @version $Id:$
22
- * @since 0.1.0
23
  */
24
  -->
25
  <config>
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
+ * This file is part of a FireGento e.V. module.
5
  *
6
+ * This FireGento e.V. module is free software; you can redistribute it and/or
7
  * modify it under the terms of the GNU General Public License version 3 as
8
  * published by the Free Software Foundation.
9
  *
11
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13
  *
 
 
14
  * @category FireGento
15
  * @package FireGento_MageSetup
16
  * @author FireGento Team <team@firegento.com>
17
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
18
  * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
 
 
19
  */
20
  -->
21
  <config>
app/locale/de_AT/FireGento_MageSetup.csv CHANGED
@@ -1,3 +1,4 @@
1
  "VAT-ID","UID"
2
  "Register number","Firmenbuchnummer"
3
- "SWIFT","BIC/SWIFT"
 
1
  "VAT-ID","UID"
2
  "Register number","Firmenbuchnummer"
3
+ "SWIFT","BIC/SWIFT"
4
+ "Bank Information","Bankverbindung"
app/locale/de_CH/template/magesetup/agreement/business_terms.html ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ <!--@name AGB @-->
2
+ <!--@checkbox_text Ich habe die Allgemeinen Geschäftsbedingungen gelesen und stimme diesen ausdrücklich zu. @-->
3
+ {{block type="cms/block" block_id="business_terms"}}
app/locale/de_CH/template/magesetup/agreement/revocation.html ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ <!--@name Widerrufsbelehrung @-->
2
+ <!--@checkbox_text Ich habe die Widerrufsbelehrung gelesen. @-->
3
+ {{block type="cms/block" block_id="revocation"}}
app/locale/de_CH/template/magesetup/block/business_terms.html ADDED
@@ -0,0 +1,2 @@
 
 
1
+ <!--@title AGB @-->
2
+ <h2><i>Fügen Sie hier Ihre Allgemeinen Geschäftsbedingungen ein.</i></h2>
app/locale/de_CH/template/magesetup/block/revocation.html ADDED
@@ -0,0 +1,2 @@
 
 
1
+ <!--@title Widerrufsbelehrung @-->
2
+ <h2><i>Fügen Sie hier Ihre vollständige Widerrufsbelehrung ein.</i></h2>
app/locale/de_CH/template/magesetup/page/404.html ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <!--@title Seite nicht gefunden @-->
2
+ <!--@identifier no-route @-->
3
+ <!--@root_template one_column @-->
4
+ <h2>404 - Seite nicht gefunden</h2>
5
+ <p>Leider konnte die angeforderte Seite nicht gefunden werden, scheinbar wurde eine nicht korrekte URL eingegeben. So ist der 404 Fehler entstanden. Bitte nutzen Sie unsere <a href="{{store url="catalogsearch/advanced"}}">Suche</a> oder wechseln Sie zu unserer <a href="{{store url=""}}">Startseite</a> um in unserem umfangreichen Sortiment zu stöbern.</p>
6
+ <ul>
7
+ <li><a href="{{store url='catalogsearch/advanced'}}">Suche</a></li>
8
+ <li><a href="{{store url=''}}">Startseite</a></li>
9
+ </ul>
app/locale/de_CH/template/magesetup/page/business_terms.html ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ <!--@title AGB @-->
2
+ <!--@identifier agb @-->
3
+ <!--@root_template one_column @-->
4
+ {{block type="cms/block" block_id="business_terms"}}
app/locale/de_CH/template/magesetup/page/imprint.html ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!--@title Impressum @-->
2
+ <!--@identifier impressum @-->
3
+ <!--@root_template one_column @-->
4
+ <h1>DISCLAIMER</h1>
5
+
6
+ <p>Die hier bereitgestellten Mustertexte sind ausdrücklich als
7
+ <strong>MUSTER</strong> zu verstehen und müssen in jedem Fall durch
8
+ eigene rechtssichere Texte unter CMS -> Statische Blöcke ersetzt
9
+ werden. Weder FireGento e.V. noch Trusted Shops tragen für die
10
+ Richtigkeit und Vollständigkeit dieser Texte eine Verantwortung.</p>
11
+
12
+ <h2>Impressum (Muster)</h2>
13
+
14
+ <h3>{{block type="magesetup/imprint_field" value="shop_name"}}</h3>
15
+
16
+ <p>{{block type="magesetup/imprint_content" template="magesetup/imprint/address.phtml"}}</p>
17
+
18
+ <p>{{block type="magesetup/imprint_content" template="magesetup/imprint/communication.phtml"}}</p>
19
+
20
+ <p>{{block type="magesetup/imprint_content" template="magesetup/imprint/legal.phtml"}}</p>
21
+
22
+ <p>{{block type="magesetup/imprint_content" template="magesetup/imprint/tax.phtml"}}</p>
23
+
24
+ <p>{{block type="magesetup/imprint_content" template="magesetup/imprint/bank.phtml"}}</p>
25
+
26
+ <p>{{block type="magesetup/imprint_field" value="business_rules"}}</p>
27
+
28
+ <p>Sie erreichen unseren Kundendienst für Fragen Reklamationen und Beanstandungen unter Telefon: {{block type="magesetup/imprint_field" value="telephone"}} sowie per Email unter {{block type="magesetup/imprint_field" value="email"}}. Für Anfragen können Sie auch das Kontaktformular auf unserer Internetseite nutzen.</p>
29
+
30
+ <h3>Disclaimer (Muster)</h3>
31
+
32
+ <p>Bei direkten oder indirekten Verweisen auf fremde Webseiten ("Hyperlinks"), die außerhalb des Verantwortungsbereiches des Autors liegen, würde eine Haftungsverpflichtung ausschließlich in dem Fall in Kraft treten, in dem der Autor von den Inhalten Kenntnis hat und es ihm technisch möglich und zumutbar wäre, die Nutzung im Falle rechtswidriger Inhalte zu verhindern. Der Autor erklärt hiermit ausdrücklich, dass zum Zeitpunkt der Linksetzung keine illegalen Inhalte auf den zu verlinkenden Seiten erkennbar waren. Auf die aktuelle und zukünftige Gestaltung, die Inhalte oder die Urheberschaft der verlinkten/verknüpften Seiten hat der Autor keinerlei Einfluss. Deshalb distanziert er sich hiermit ausdrücklich von allen Inhalten aller verlinkten /verknüpften Seiten, die nach der Linksetzung verändert wurden. Diese Feststellung gilt für alle innerhalb des eigenen Internetangebotes gesetzten Links und Verweise sowie für Fremdeinträge in vom Autor eingerichteten Gästebüchern, Diskussionsforen, Linkverzeichnissen, Mailinglisten und in allen anderen Formen von Datenbanken, auf deren Inhalt externe Schreibzugriffe möglich sind. Für illegale, fehlerhafte oder unvollständige Inhalte und insbesondere für Schäden, die aus der Nutzung oder Nichtnutzung solcherart dargebotener Informationen entstehen, haftet allein der Anbieter der Seite, auf welche verwiesen wurde, nicht derjenige, der über Links auf die jeweilige Veröffentlichung lediglich verweist.</p>
33
+
34
+ <h3>Urheber- und Kennzeichenrecht</h3>
35
+
36
+ <p>Der Autor ist bestrebt, in allen Publikationen die Urheberrechte der verwendeten Bilder, Grafiken, Tondokumente, Videosequenzen und Texte zu beachten, von ihm selbst erstellte Bilder, Grafiken, Tondokumente, Videosequenzen und Texte zu nutzen oder auf lizenzfreie Grafiken, Tondokumente, Videosequenzen und Texte zurückzugreifen. Alle innerhalb des Internetangebotes genannten und ggf. durch Dritte geschützten Marken- und Warenzeichen unterliegen uneingeschränkt den Bestimmungen des jeweils gültigen Kennzeichenrechts und den Besitzrechten der jeweiligen eingetragenen Eigentümer. Allein aufgrund der bloßen Nennung ist nicht der Schluss zu ziehen, dass Markenzeichen nicht durch Rechte Dritter geschützt sind! Das Copyright für veröffentlichte, vom Autor selbst erstellte Objekte bleibt allein beim Autor der Seiten. Eine Vervielfältigung oder Verwendung solcher Grafiken, Tondokumente, Videosequenzen und Texte in anderen elektronischen oder gedruckten Publikationen ist ohne ausdrückliche Zustimmung des Autors nicht gestattet.</p>
37
+
app/locale/de_CH/template/magesetup/page/order.html ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!--@title Bestellvorgang @-->
2
+ <!--@identifier order @-->
3
+ <!--@root_template one_column @-->
4
+ <h1>DISCLAIMER</h1>
5
+
6
+ <p>Die hier bereitgestellten Mustertexte sind ausdrücklich als
7
+ <strong>MUSTER</strong> zu verstehen und müssen in jedem Fall durch
8
+ eigene rechtssichere Texte unter CMS -> Statische Blöcke ersetzt
9
+ werden. Weder FireGento e.V. noch Trusted Shops tragen für die
10
+ Richtigkeit und Vollständigkeit dieser Texte eine Verantwortung.</p>
11
+
12
+ <h2>Bestellvorgang, einfach und bequem bestellen</h2>
13
+
14
+ <h3>Wie kann ich bei {{block type="magesetup/imprint_field" value="shop_name"}} bestellen?</h3>
15
+
16
+ <h4>1. Warenkorb</h4>
17
+
18
+ <p>Wählen Sie die Produkte aus, die Sie bestellen möchten, indem Sie den "In den Warenkorb" Button anklicken. Dadurch wird Ihre Auswahl in den Warenkorb gelegt. Sie können diese Auswahl bis zum Absenden Ihrer Bestellung jederzeit ändern, in dem Sie die Anzahl der Produkte ändern, durch Anklicken des Kästchens "Entfernen" die Auswahl löschen oder den Bestellvorgang abbrechen. Durch Anklicken des Buttons "Kasse" gelangen Sie zum nächsten Bestellschritt.</p>
19
+
20
+ <h4>2. Kasse</h4>
21
+
22
+ <p>Melden Sie sich bitte mit Ihrer eMail Adresse und Ihrem Passwort an falls Sie bereits ein Kundenkonto besitzen, ansonsten registrieren Sie sich bitte als neuer Kunde. Ihre Daten werden unter Beachtung der datenschutzrechtlichen Bestimmungen erhoben, verarbeitet und genutzt (<a href="{{store url="datenschutz"}}">Datenschutzhinweis</a>). Eine anderweitige Verwendung oder Weitergabe an Dritte erfolgt nicht. Sind Sie bereits angemeldet, können Sie nun die Versandart auswählen. Durch klicken des Buttons "Weiter" gelangen Sie zum nächsten Bestellschritt.</p>
23
+
24
+ <h4>3. Rechnungsadresse prüfen / Zahlungsweise auswählen</h4>
25
+
26
+ <p>Überprüfen Sie nun Ihre Rechnungsadresse und geben Sie Ihre gewünschte <a href="{{store url="zahlung"}}">Zahlungsweise</a> an. Durch Klicken des Buttons "Weiter" gelangen Sie zum nächsten Bestellschritt. </p>
27
+
28
+ <h4>4. Versandadresse prüfen / Versandart auswählen</h4>
29
+
30
+ <p>Überprüfen Sie nun Ihre Versandadresse und geben Sie Ihre gewünschte <a href="{{store url="lieferung"}}">Versandart</a> an. Durch Klicken des Buttons "Weiter" gelangen Sie zum nächsten Bestellschritt.</p>
31
+
32
+ <h4>5. Bestellvorgang abschließen / AGB und Widerrufsbelehrung</h4>
33
+
34
+ <p>Sie erhalten eine Übersicht Ihrer Bestellung: die ausgewählten Produkte, die Versand- und Rechnungsadresse und Ihre Kontaktdaten. Überprüfen Sie, ob alle Angaben stimmen und lesen sich bitte die <a href="{{store url="agb"}}">Allgemeinen Geschäftsbedingungen</a> und die <a href="{{store url="widerruf"}}">Widerrufsbelehrung</a> aufmerksam durch. Sie können mit der Bestellung nur fortfahren, wenn Sie den AGB und der Widerrufsbelehrung zustimmen (Häkchen setzen). Mit dem Anklicken des Buttons "Jetzt kaufen" übersenden Sie Ihre Bestellung an uns. Hiermit geben Sie ein rechtsverbindliches Angebot ab.</p>
35
+
36
+ <h4>Widerrufsrecht für Verbraucher</h4>
37
+
38
+ <p>Alle Informationen zum <a href="{{store url="agb#widerruf"}}">Widerrufsrecht</a></p>
app/locale/de_CH/template/magesetup/page/payment.html ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!--@title Zahlungsarten @-->
2
+ <!--@identifier zahlungsarten @-->
3
+ <!--@root_template one_column @-->
4
+ <h1>DISCLAIMER</h1>
5
+
6
+ <p>Die hier bereitgestellten Mustertexte sind ausdrücklich als
7
+ <strong>MUSTER</strong> zu verstehen und müssen in jedem Fall durch
8
+ eigene rechtssichere Texte unter CMS -> Statische Blöcke ersetzt
9
+ werden. Weder der FireGento e.V. noch Trusted Shops tragen für die
10
+ Richtigkeit und Vollständigkeit dieser Texte eine Verantwortung.</p>
11
+
12
+ <h2>Zahlungsarten</h2>
13
+
14
+ <p>Wir bieten Ihnen folgende Zahlungsarten an. Suchen Sie sich einfach die für Sie optimale Zahlart aus. Die Versandkosten sind teilweise abhängig von der gewählten Zahlungsart.</p>
15
+
16
+ <h3>Vorkasse</h3>
17
+
18
+ <p>Bitte überweisen Sie den Gesamtbetrag Ihrer Bestellung auf unser Konto.</p>
19
+
20
+ <h3>Rechnung</h3>
21
+
22
+ <p>Nur für Schulen, Behörden und im Handelsregister eingetragene Unternehmen nach Prüfung.</p>
23
+
24
+ <h3>Nachnahme</h3>
25
+
26
+ <p>Bitte halten Sie den Rechnungsbetrag bereit; der Zusteller kassiert bei Lieferung in bar (keine Schecks). Bei Nachnahme fallen zusätzlich 2,-- EUR Nachnahmegebühren an, die direkt an den Paketzusteller zu entrichten sind.</p>
27
+
28
+ <h3>Lastschrift</h3>
29
+
30
+ <p>Wir ziehen den Rechnungsbetrag Ihrer Bestellung von Ihrem hinterlegten Bankkonto nach der getätigten Bestellung ein.</p>
app/locale/de_CH/template/magesetup/page/privacy.html ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ <!--@title Datenschutz @-->
2
+ <!--@identifier datenschutz @-->
3
+ <!--@root_template one_column @-->
4
+ <h2><i>Fügen Sie hier Ihre Datenschutzerklärung ein.</i></h2>
app/locale/de_CH/template/magesetup/page/revocation.html ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ <!--@title Widerrufsbelehrung @-->
2
+ <!--@identifier widerrufsbelehrung @-->
3
+ <!--@root_template one_column @-->
4
+ {{block type="cms/block" block_id="revocation"}}
app/locale/de_CH/template/magesetup/page/shipping.html ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ <!--@title Lieferung @-->
2
+ <!--@identifier lieferung @-->
3
+ <!--@root_template one_column @-->
4
+ <h2><i>Fügen Sie hier Ihre Versandkostenaufstellung und weitere Einzelheiten zur Lieferung ein.</i></h2>
app/locale/de_DE/FireGento_MageSetup.csv CHANGED
@@ -17,6 +17,7 @@
17
  "Shipping Weight %s","Versandgewicht %s"
18
 
19
  "If you want to add additional StoreViews (i.e. for multiple languages), please do so before submitting this form.","Wenn Sie (z.B. für mehrere Sprachen) zusätzliche StoreViews anlegen möchten, tun Sie dies bitte, bevor Sie dieses Formular ausfüllen."
 
20
  "MageSetup has been installed.","MageSetup wurde installiert."
21
  "Click <a href=""%s"">here</a> to set up your pages, blocks, emails and tax settings.","Klicken Sie <a href=""%s"">hier</a>, um CMS-Seiten, Blöcke, E-Mails und Steuer-Einstellungen zu initialisieren."
22
  "Please choose the requested setups:","Bitte wählen Sie die gewünschten Setups:"
@@ -64,6 +65,7 @@
64
  "Fax","Fax"
65
  "Financial office","Finanzamt"
66
  "IBAN","IBAN"
 
67
  "Register court","Registergericht"
68
  "Register number","HRB-Nummer"
69
  "SWIFT","SWIFT"
@@ -148,4 +150,5 @@
148
  "Bank Payment","Vorkasse"
149
  "Invoice Payment","Rechnung"
150
  "Extension Key","Extension Key"
151
- "MagentoConnect","MagentoConnect"
 
17
  "Shipping Weight %s","Versandgewicht %s"
18
 
19
  "If you want to add additional StoreViews (i.e. for multiple languages), please do so before submitting this form.","Wenn Sie (z.B. für mehrere Sprachen) zusätzliche StoreViews anlegen möchten, tun Sie dies bitte, bevor Sie dieses Formular ausfüllen."
20
+ "Skip installation","Installation überspringen"
21
  "MageSetup has been installed.","MageSetup wurde installiert."
22
  "Click <a href=""%s"">here</a> to set up your pages, blocks, emails and tax settings.","Klicken Sie <a href=""%s"">hier</a>, um CMS-Seiten, Blöcke, E-Mails und Steuer-Einstellungen zu initialisieren."
23
  "Please choose the requested setups:","Bitte wählen Sie die gewünschten Setups:"
65
  "Fax","Fax"
66
  "Financial office","Finanzamt"
67
  "IBAN","IBAN"
68
+ "Clearing","Clearing"
69
  "Register court","Registergericht"
70
  "Register number","HRB-Nummer"
71
  "SWIFT","SWIFT"
150
  "Bank Payment","Vorkasse"
151
  "Invoice Payment","Rechnung"
152
  "Extension Key","Extension Key"
153
+ "MagentoConnect","MagentoConnect"
154
+ "Bank Information","Bankverbindung"
app/locale/de_DE/template/magesetup/page/imprint.html CHANGED
@@ -25,7 +25,7 @@ Richtigkeit und Vollständigkeit dieser Texte eine Verantwortung.</p>
25
 
26
  <p>{{block type="magesetup/imprint_field" value="business_rules"}}</p>
27
 
28
- <p>Sie erreichen unseren Kundendienst für Fragen Reklamationen und Beanstandungen unter Telefon: {{block type="magesetup/imprint_field" value="telephone"}} sowie per Email unter <a href="mailto:{{block type="magesetup/imprint_field" value="email"}}">{{block type="magesetup/imprint_field" value="email"}}</a>. Für Anfragen können Sie auch das Kontaktformular auf unserer Internetseite nutzen.</p>
29
 
30
  <h3>Disclaimer (Muster)</h3>
31
 
25
 
26
  <p>{{block type="magesetup/imprint_field" value="business_rules"}}</p>
27
 
28
+ <p>Sie erreichen unseren Kundendienst für Fragen Reklamationen und Beanstandungen unter Telefon: {{block type="magesetup/imprint_field" value="telephone"}} sowie per Email unter {{block type="magesetup/imprint_field" value="email"}}. Für Anfragen können Sie auch das Kontaktformular auf unserer Internetseite nutzen.</p>
29
 
30
  <h3>Disclaimer (Muster)</h3>
31
 
app/locale/en_US/FireGento_MageSetup.csv CHANGED
@@ -17,6 +17,7 @@
17
  "Shipping Weight %s","Shipping Weight %s"
18
 
19
  "If you want to add additional StoreViews (i.e. for multiple languages), please do so before submitting this form.","If you want to add additional StoreViews (i.e. for multiple languages), please do so before submitting this form."
 
20
  "MageSetup has been installed.","MageSetup has been installed."
21
  "Click <a href=""%s"">here</a> to set up your pages, blocks, emails and tax settings.","Click <a href=""%s"">here</a> to set up your pages, blocks, emails and tax settings."
22
  "Please choose the requested setups:","Please choose the requested setups:"
@@ -64,6 +65,7 @@
64
  "Fax","Fax"
65
  "Financial office","Financial office"
66
  "IBAN","IBAN"
 
67
  "Register court","Register court"
68
  "Register number","Register number"
69
  "SWIFT","SWIFT"
@@ -148,4 +150,5 @@
148
  "Bank Payment","Bank Payment"
149
  "Invoice Payment","Invoice Payment"
150
  "Extension Key","Extension Key"
151
- "MagentoConnect","MagentoConnect"
 
17
  "Shipping Weight %s","Shipping Weight %s"
18
 
19
  "If you want to add additional StoreViews (i.e. for multiple languages), please do so before submitting this form.","If you want to add additional StoreViews (i.e. for multiple languages), please do so before submitting this form."
20
+ "Skip installation","Skip installation"
21
  "MageSetup has been installed.","MageSetup has been installed."
22
  "Click <a href=""%s"">here</a> to set up your pages, blocks, emails and tax settings.","Click <a href=""%s"">here</a> to set up your pages, blocks, emails and tax settings."
23
  "Please choose the requested setups:","Please choose the requested setups:"
65
  "Fax","Fax"
66
  "Financial office","Financial office"
67
  "IBAN","IBAN"
68
+ "Clearing","Clearing"
69
  "Register court","Register court"
70
  "Register number","Register number"
71
  "SWIFT","SWIFT"
150
  "Bank Payment","Bank Payment"
151
  "Invoice Payment","Invoice Payment"
152
  "Extension Key","Extension Key"
153
+ "MagentoConnect","MagentoConnect"
154
+ "Bank Information","Bank Information"
app/locale/en_US/template/magesetup/page/imprint.html CHANGED
@@ -3,15 +3,7 @@
3
  <!--@root_template one_column @-->
4
  <h2><i>Please insert your imprint here.</i></h2>
5
 
6
- <h1>DISCLAIMER</h1>
7
-
8
- <p>Die hier bereitgestellten Mustertexte sind ausdrücklich als
9
- <strong>MUSTER</strong> zu verstehen und müssen in jedem Fall durch
10
- eigene rechtssichere Texte unter CMS -> Statische Blöcke ersetzt
11
- werden. Weder FireGento e.V. noch Trusted Shops tragen für die
12
- Richtigkeit und Vollständigkeit dieser Texte eine Verantwortung.</p>
13
-
14
- <h2>Impressum (Muster)</h2>
15
 
16
  <h3>{{block type="magesetup/imprint_field" value="shop_name"}}</h3>
17
 
@@ -27,13 +19,4 @@ Richtigkeit und Vollständigkeit dieser Texte eine Verantwortung.</p>
27
 
28
  <p>{{block type="magesetup/imprint_field" value="business_rules"}}</p>
29
 
30
- <p>Sie erreichen unseren Kundendienst für Fragen Reklamationen und Beanstandungen unter Telefon: {{block type="magesetup/imprint_field" value="telephone"}} sowie per Email unter <a href="mailto:{{block type="magesetup/imprint_field" value="email"}}">{{block type="magesetup/imprint_field" value="email"}}</a>. Für Anfragen können Sie auch das Kontaktformular auf unserer Internetseite nutzen.</p>
31
-
32
- <h3>Disclaimer (Muster)</h3>
33
-
34
- <p>Bei direkten oder indirekten Verweisen auf fremde Webseiten ("Hyperlinks"), die außerhalb des Verantwortungsbereiches des Autors liegen, würde eine Haftungsverpflichtung ausschließlich in dem Fall in Kraft treten, in dem der Autor von den Inhalten Kenntnis hat und es ihm technisch möglich und zumutbar wäre, die Nutzung im Falle rechtswidriger Inhalte zu verhindern. Der Autor erklärt hiermit ausdrücklich, dass zum Zeitpunkt der Linksetzung keine illegalen Inhalte auf den zu verlinkenden Seiten erkennbar waren. Auf die aktuelle und zukünftige Gestaltung, die Inhalte oder die Urheberschaft der verlinkten/verknüpften Seiten hat der Autor keinerlei Einfluss. Deshalb distanziert er sich hiermit ausdrücklich von allen Inhalten aller verlinkten /verknüpften Seiten, die nach der Linksetzung verändert wurden. Diese Feststellung gilt für alle innerhalb des eigenen Internetangebotes gesetzten Links und Verweise sowie für Fremdeinträge in vom Autor eingerichteten Gästebüchern, Diskussionsforen, Linkverzeichnissen, Mailinglisten und in allen anderen Formen von Datenbanken, auf deren Inhalt externe Schreibzugriffe möglich sind. Für illegale, fehlerhafte oder unvollständige Inhalte und insbesondere für Schäden, die aus der Nutzung oder Nichtnutzung solcherart dargebotener Informationen entstehen, haftet allein der Anbieter der Seite, auf welche verwiesen wurde, nicht derjenige, der über Links auf die jeweilige Veröffentlichung lediglich verweist.</p>
35
-
36
- <h3>Urheber- und Kennzeichenrecht</h3>
37
-
38
- <p>Der Autor ist bestrebt, in allen Publikationen die Urheberrechte der verwendeten Bilder, Grafiken, Tondokumente, Videosequenzen und Texte zu beachten, von ihm selbst erstellte Bilder, Grafiken, Tondokumente, Videosequenzen und Texte zu nutzen oder auf lizenzfreie Grafiken, Tondokumente, Videosequenzen und Texte zurückzugreifen. Alle innerhalb des Internetangebotes genannten und ggf. durch Dritte geschützten Marken- und Warenzeichen unterliegen uneingeschränkt den Bestimmungen des jeweils gültigen Kennzeichenrechts und den Besitzrechten der jeweiligen eingetragenen Eigentümer. Allein aufgrund der bloßen Nennung ist nicht der Schluss zu ziehen, dass Markenzeichen nicht durch Rechte Dritter geschützt sind! Das Copyright für veröffentlichte, vom Autor selbst erstellte Objekte bleibt allein beim Autor der Seiten. Eine Vervielfältigung oder Verwendung solcher Grafiken, Tondokumente, Videosequenzen und Texte in anderen elektronischen oder gedruckten Publikationen ist ohne ausdrückliche Zustimmung des Autors nicht gestattet.</p>
39
-
3
  <!--@root_template one_column @-->
4
  <h2><i>Please insert your imprint here.</i></h2>
5
 
6
+ <h2>Imprint (Sample)</h2>
 
 
 
 
 
 
 
 
7
 
8
  <h3>{{block type="magesetup/imprint_field" value="shop_name"}}</h3>
9
 
19
 
20
  <p>{{block type="magesetup/imprint_field" value="business_rules"}}</p>
21
 
22
+ <p>Call us at {{block type="magesetup/imprint_field" value="telephone"}} or write an email to {{block type="magesetup/imprint_field" value="email"}}.</p>
 
 
 
 
 
 
 
 
 
app/locale/en_US/template/magesetup/page/order.html CHANGED
@@ -2,39 +2,3 @@
2
  <!--@identifier order @-->
3
  <!--@root_template one_column @-->
4
  <h2><i>Please insert details about your order process here.</i></h2>
5
-
6
- <h1>DISCLAIMER</h1>
7
-
8
- <p>Die hier bereitgestellten Mustertexte sind ausdrücklich als
9
- <strong>MUSTER</strong> zu verstehen und müssen in jedem Fall durch
10
- eigene rechtssichere Texte unter CMS -> Statische Blöcke ersetzt
11
- werden. Weder FireGento e.V. noch Trusted Shops tragen für die
12
- Richtigkeit und Vollständigkeit dieser Texte eine Verantwortung.</p>
13
-
14
- <h2>Bestellvorgang, einfach und bequem bestellen</h2>
15
-
16
- <h3>Wie kann ich bei {{block type="magesetup/imprint_field" value="shop_name"}} bestellen?</h3>
17
-
18
- <h4>1. Warenkorb</h4>
19
-
20
- <p>Wählen Sie die Produkte aus, die Sie bestellen möchten, indem Sie den "In den Warenkorb" Button anklicken. Dadurch wird Ihre Auswahl in den Warenkorb gelegt. Sie können diese Auswahl bis zum Absenden Ihrer Bestellung jederzeit ändern, in dem Sie die Anzahl der Produkte ändern, durch Anklicken des Kästchens "Entfernen" die Auswahl löschen oder den Bestellvorgang abbrechen. Durch Anklicken des Buttons "Kasse" gelangen Sie zum nächsten Bestellschritt.</p>
21
-
22
- <h4>2. Kasse</h4>
23
-
24
- <p>Melden Sie sich bitte mit Ihrer eMail Adresse und Ihrem Passwort an falls Sie bereits ein Kundenkonto besitzen, ansonsten registrieren Sie sich bitte als neuer Kunde. Ihre Daten werden unter Beachtung der datenschutzrechtlichen Bestimmungen erhoben, verarbeitet und genutzt (<a href="{{store url="datenschutz"}}">Datenschutzhinweis</a>). Eine anderweitige Verwendung oder Weitergabe an Dritte erfolgt nicht. Sind Sie bereits angemeldet, können Sie nun die Versandart auswählen. Durch klicken des Buttons "Weiter" gelangen Sie zum nächsten Bestellschritt.</p>
25
-
26
- <h4>3. Rechnungsadresse prüfen / Zahlungsweise auswählen</h4>
27
-
28
- <p>Überprüfen Sie nun Ihre Rechnungsadresse und geben Sie Ihre gewünschte <a href="{{store url="zahlung"}}">Zahlungsweise</a> an. Durch Klicken des Buttons "Weiter" gelangen Sie zum nächsten Bestellschritt. </p>
29
-
30
- <h4>4. Versandadresse prüfen / Versandart auswählen</h4>
31
-
32
- <p>Überprüfen Sie nun Ihre Versandadresse und geben Sie Ihre gewünschte <a href="{{store url="lieferung"}}">Versandart</a> an. Durch Klicken des Buttons "Weiter" gelangen Sie zum nächsten Bestellschritt.</p>
33
-
34
- <h4>5. Bestellvorgang abschließen / AGB und Datenschutz</h4>
35
-
36
- <p>Sie erhalten eine Übersicht Ihrer Bestellung: die ausgewählten Produkte, die Versand- und Rechnungsadresse und Ihre Kontaktdaten. Überprüfen Sie, ob alle Angaben stimmen und lesen sich bitte die <a href="{{store url="agb"}}">Allgemeinen Geschäftsbedingungen</a> und die <a href="{{store url="widerruf"}}">Widerrufsbelehrung</a> aufmerksam durch. Sie können mit der Bestellung nur fortfahren, wenn Sie den AGB und der Widerrufsbelehrung zustimmen (Häkchen setzen). Mit dem Anklicken des Buttons "Jetzt kaufen" übersenden Sie Ihre Bestellung an uns. Hiermit geben Sie ein rechtsverbindliches Angebot ab.</p>
37
-
38
- <h4>Widerrufsrecht für Verbraucher</h4>
39
-
40
- <p>Alle Informationen zum <a href="{{store url="agb#widerruf"}}">Widerrufsrecht</a></p>
2
  <!--@identifier order @-->
3
  <!--@root_template one_column @-->
4
  <h2><i>Please insert details about your order process here.</i></h2>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/locale/en_US/template/magesetup/page/payment.html CHANGED
@@ -2,31 +2,3 @@
2
  <!--@identifier payment @-->
3
  <!--@root_template one_column @-->
4
  <h2><i>Please insert your payment methods and further details here.</i></h2>
5
-
6
- <h1>DISCLAIMER</h1>
7
-
8
- <p>Die hier bereitgestellten Mustertexte sind ausdrücklich als
9
- <strong>MUSTER</strong> zu verstehen und müssen in jedem Fall durch
10
- eigene rechtssichere Texte unter CMS -> Statische Blöcke ersetzt
11
- werden. Weder der FireGento e.V. noch Trusted Shops tragen für die
12
- Richtigkeit und Vollständigkeit dieser Texte eine Verantwortung.</p>
13
-
14
- <h2>Zahlungsarten</h2>
15
-
16
- <p>Wir bieten Ihnen folgende Zahlungsarten an. Suchen Sie sich einfach die für Sie optimale Zahlart aus. Die Versandkosten sind teilweise abhängig von der gewählten Zahlungsart.</p>
17
-
18
- <h3>Vorkasse</h3>
19
-
20
- <p>Bitte überweisen Sie den Gesamtbetrag Ihrer Bestellung auf unser Konto.</p>
21
-
22
- <h3>Rechnung</h3>
23
-
24
- <p>Nur für Schulen, Behörden und im Handelsregister eingetragene Unternehmen nach Prüfung.</p>
25
-
26
- <h3>Nachnahme</h3>
27
-
28
- <p>Bitte halten Sie den Rechnungsbetrag bereit; der Zusteller kassiert bei Lieferung in bar (keine Schecks). Bei Nachnahme fallen zusätzlich 2,-- EUR Nachnahmegebühren an, die direkt an den Paketzusteller zu entrichten sind.</p>
29
-
30
- <h3>Lastschrift</h3>
31
-
32
- <p>Wir ziehen den Rechnungsbetrag Ihrer Bestellung von Ihrem hinterlegten Bankkonto nach der getätigten Bestellung ein.</p>
2
  <!--@identifier payment @-->
3
  <!--@root_template one_column @-->
4
  <h2><i>Please insert your payment methods and further details here.</i></h2>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/locale/fr_CH/template/magesetup/agreement/business_terms.html ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ <!--@name CGV @-->
2
+ <!--@checkbox_text J'ai lu et j'approuve les conditions générales de ventes. @-->
3
+ {{block type="cms/block" block_id="business_terms"}}
app/locale/fr_CH/template/magesetup/agreement/revocation.html ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ <!--@name Conditions de retour @-->
2
+ <!--@checkbox_text J'ai lu les conditions de retour. @-->
3
+ {{block type="cms/block" block_id="revocation"}}
app/locale/fr_CH/template/magesetup/block/business_terms.html ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
1
+ <!--@title CGV @-->
2
+ <h2><i>Remplissez ici vos conditions générales de vente.</i></h2>
3
+
4
+ <a name="retractation"></a>
5
+ <h3>Conditions de retractions</h3>
6
+ <p>Veuillez remplir ici vos conditions de rétractations</p>
app/locale/fr_CH/template/magesetup/block/revocation.html ADDED
@@ -0,0 +1,2 @@
 
 
1
+ <!--@title Conditions de retour @-->
2
+ <h2><i>Remplissez ici vos conditions de retour.</i></h2>
app/locale/fr_CH/template/magesetup/page/404.html ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <!--@title Page non trouvée @-->
2
+ <!--@identifier no-route @-->
3
+ <!--@root_template one_column @-->
4
+ <h2>404 - Page non trouvée</h2>
5
+ <p>Malheureusement, la page auquelle vous souhaitez accéder n'a pu être trouvée, cela pourrait être dû à une adresse URL non correctement remplie. C'est ainsi qu'est apparu cette erreur 404. Veuillez utiliser s'il vous plaît notre <a href="{{store url="catalogsearch/advanced"}}">moteur de recherche</a> ou bien visitez notre <a href="{{store url=""}}">page d'accueil</a> pour découvrir nos assortiments.</p>
6
+ <ul>
7
+ <li><a href="{{store url='catalogsearch/advanced'}}">Moteur de recherche</a></li>
8
+ <li><a href="{{store url=''}}">Page d'accueil</a></li>
9
+ </ul>
app/locale/fr_CH/template/magesetup/page/business_terms.html ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ <!--@title CGV @-->
2
+ <!--@identifier cgv @-->
3
+ <!--@root_template one_column @-->
4
+ {{block type="cms/block" block_id="business_terms"}}
app/locale/fr_CH/template/magesetup/page/imprint.html ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!--@title Mentions légales @-->
2
+ <!--@identifier mentions-legales @-->
3
+ <!--@root_template one_column @-->
4
+ <h1>DISCLAIMER</h1>
5
+ <p>
6
+ Le texte placé ci-dessous est seulement un <strong>MODELE</strong> vous permettant de vous aider à créer
7
+ cette page. Vous devez dans tous les cas modifier ce texte sous CMS > Block statique.
8
+ En aucun cas, l'association Firegento et Trusted Shop porte la responsabilité de ce texte.
9
+ </p>
10
+
11
+ <h2>Mentions légales (Patron)</h2>
12
+
13
+ <h3>{{block type="magesetup/imprint_field" value="shop_name"}}</h3>
14
+
15
+ <p>{{block type="magesetup/imprint_content" template="magesetup/imprint/address.phtml"}}</p>
16
+
17
+ <p>{{block type="magesetup/imprint_content" template="magesetup/imprint/communication.phtml"}}</p>
18
+
19
+ <p>{{block type="magesetup/imprint_content" template="magesetup/imprint/legal.phtml"}}</p>
20
+
21
+ <p>{{block type="magesetup/imprint_content" template="magesetup/imprint/tax.phtml"}}</p>
22
+
23
+ <p>{{block type="magesetup/imprint_content" template="magesetup/imprint/bank.phtml"}}</p>
24
+
25
+ <p>{{block type="magesetup/imprint_field" value="business_rules"}}</p>
26
+
27
+ <p>
28
+ Vous pouvez contacter nottre service clientèle pour toutes questions ou réclamations auprès du numéro de téléphone suivant: {{block type="magesetup/imprint_field" value="telephone"}} ou bien par email {{block type="magesetup/imprint_field" value="email"}} ou encore notre formulaire de contact situé sur notre site internet.
29
+ </p>
30
+
31
+ <h3>Droits d'auteur et des marques</h3>
32
+ <p>
33
+ Nous, la société, sommes soucieux de prendre en compte dans toutes les publications les droits d'auteur des graphiques utilisés, des documents sonores, des séquences vidéo et textes, d'utiliser ses propres graphiques, documents sonores, séquences vidéo et textes ou d'utiliser des graphiques sans licence, des documents sonores, des séquences vidéo et des textes.<br>
34
+ Tous les éléments de notre site protégées par des tiers relèvent des dispositions de la loi applicable sur les marques et les droits de propriété des propriétaires enregistrés respectifs.<br>
35
+ La simple mention ne signifie pas que les marques ne sont pas protégées par des droits des tiers! Le droit d'auteur pour tout matériel créé par l'auteur reste avec la propriété de l'auteur.<br>
36
+ Toute reproduction ou utilisation de tels graphiques, documents sonores, séquences vidéo et textes dans d'autres publications électroniques ou imprimées est interdite sans l'autorisation expresse de l'auteur
37
+ </p>
app/locale/fr_CH/template/magesetup/page/order.html ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!--@title Commande @-->
2
+ <!--@identifier commande @-->
3
+ <!--@root_template one_column @-->
4
+ <h1>DISCLAIMER</h1>
5
+ <p>
6
+ Le texte placé ci-dessous est seulement un <strong>MODELE</strong> vous permettant de vous aider à créer
7
+ cette page. Vous devez dans tous les cas modifier ce texte sous CMS > Block statique.
8
+ En aucun cas, l'association Firegento et Trusted Shop porte la responsabilité de ce texte.
9
+ </p>
10
+
11
+ <h2>Commandez confortablement et simplement</h2>
12
+
13
+ <h3>Comment puis-je commander chez {{block type="magesetup/imprint_field" value="shop_name"}}?</h3>
14
+
15
+ <h4>1. Panier d'achat</h4>
16
+
17
+ <p>Choisissez un article que vous souhaitez acheter, puis cliquez sur le bouton "Ajouter au panier d'achat". Ainsi sera déposé votre article dans le panier d'achat. Vous pouvez modifier votre panier d'achat à tout moment et avant de confirmer votre commande. Si vous souhaitez modifier le nombre d'article dans le panier, cliquez dans le champ "Quantité" du produit concerné puis validez votre modification grâce au bouton "Actualiser". Vous pouvez également supprimer l'article de votre choix en cliquant sur le bouton "Supprimer" du produit voulu.<br>
18
+ Une fois que les choix faits dans votre panier d'achat vous convient, vous pouvez continuer le processus de commande et nous fournir les informations de livraison et de paiement en cliquant sur "Commander".</p>
19
+
20
+ <h4>2. Commander</h4>
21
+ <p>Enregistrez-vous s'il vous plait avec votre adresse email et votre mot de passe dans le cas où vous possédez déjà un compte dans notre boutique. A défaut, veuillez s'il vous plaît vous enregistrer en tant que nouveau client. Vos données sont collectées conformément à la réglementation de protection des données, traités et utilisés selon (<a href="{{store url="politique-de-confidentialite"}}">Politique de confidentialité</a>). Êtes-vous déjà inscrit, vous pouvez sélectionner la méthode d'expédition. En cliquant sur le bouton "Suivant" pour passer à l'ordre de la prochaine étape.
22
+ </p>
23
+
24
+ <h4>3. Vérification de l'adresse de facturation / Choix du mode de paiement</h4>
25
+
26
+ <p>Veuillez vérifier votre adresse de facturation et choisissez <a href="{{store url="paiement"}}">votre mode de paiement</a>. Puis cliquez sur "Suivant" pour poursuivre la prochaine étape.</p>
27
+
28
+ <h4>4. Vérification de l'adresse de livraison / Choix du mode de livraison</h4>
29
+
30
+ <p>Veuillez vérifier votre adresse de facturation et choisissez <a href="{{store url="livraison"}}">votre mode de livraison</a>. Puis cliquez sur "Suivant" pour poursuivre la prochaine étape.</p>
31
+
32
+ <h4>5. Remplissage du processus de commande / CGV et politique de retour de marchandise</h4>
33
+
34
+ <p>Vous trouverez un sommaire de votre commande: les produits choisis, le mode et l'adresse de livraison ainsi que vos coordonnées personnelles. Vérifiez si toutes les informations fournies sont correctes puis lisez les <a href="{{store url="cgv"}}">conditions générales de vente</a> et les <a href="{{store url="retour"}}">conditions de retour</a>. Vous pouvez confirmer votre commande seulement si vous avez acceptez les CGV et les conditions de retour (cochez la case correspondante). En cliquant sur le bouton "Commander", vous confirmerez l'envoi de votre commande vers nos services.</p>
35
+
36
+ <h4>Droit de rétractation</h4>
37
+
38
+ <p>Toutes les informations sur les <a href="{{store url="cgv#retractation"}}">droits de rétractation</a></p>.
app/locale/fr_CH/template/magesetup/page/payment.html ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!--@title Modes de paiement @-->
2
+ <!--@identifier paiement @-->
3
+ <!--@root_template one_column @-->
4
+ <h1>DISCLAIMER</h1>
5
+ <p>
6
+ Le texte placé ci-dessous est seulement un <strong>MODELE</strong> vous permettant de vous aider à créer
7
+ cette page. Vous devez dans tous les cas modifier ce texte sous CMS > Block statique.
8
+ En aucun cas, l'association Firegento et Trusted Shop porte la responsabilité de ce texte.
9
+ </p>
10
+
11
+ <h2>Modes de paiement</h2>
12
+ <p>Nous vous offrons les moyens de paiement suivant. Choisissez celui qui vosu convient le mieux. Les frais d'envoi peuvent être dépendant du mode de paiement choisi.</p>
13
+
14
+ <h3>Virement</h3>
15
+ <p>Veuillez s'il vous plaît effectuer le versement du montant total de votre commande auprès de notre compte bancaire.</p>
16
+
17
+ <h3>Facture</h3>
18
+ <p>Seulement pour les écoles, les administrations et registre du commerce après vérification.</p>
19
+
20
+ <h3>Contre-remboursement</h3>
21
+ <p>Veuillez garder votre facture avec vous; Le livreur n'acceptera à la livraison que de l'argent liquide (pas de chèque). Lors d'un contre-remboursement, des frais de l'ordre de 2 Euros s'ajoutent. Veuillez les régler directement au livreur.</p>
22
+
23
+ <h3>Direct Débit direct</h3>
24
+ <p>Aussitôt que le paiement est confirmé, nous définissons votre commande comme "Payé"</p>
app/locale/fr_CH/template/magesetup/page/privacy.html ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!--@title Politique de confidentialité @-->
2
+ <!--@identifier politique-de-confidentialite @-->
3
+ <!--@root_template one_column @-->
4
+ <h2><i>Remplissez ici votre politique de confidentialé.</i></h2>
5
+ <p>
6
+ Le texte placé ci-dessous est seulement un <strong>MODELE</strong> vous permettant de vous aider à créer
7
+ cette page. Vous devez dans tous les cas modifier ce texte sous CMS > Block statique.
8
+ En aucun cas, l'association Firegento et Trusted Shop porte la responsabilité de ce texte.
9
+ </p>
10
+
11
+ <p>
12
+ (Veuillez indiquer l’identité du responsable du traitement)
13
+ « Les informations recueillies font l’objet d’un traitement informatique destiné à …
14
+ </p>
15
+ <p>
16
+ (Veuillez préciser la finalité)
17
+ Les destinataires des données sont :………………………
18
+ (précisez)
19
+ </p>
20
+ <p>
21
+ Conformément à la loi « informatique et libertés » du 6 janvier 1978 modifiée en 2004, vous bénéficiez d’un droit d’accès et de rectification aux informations qui vous concernent, que vous pouvez exercer en vous adressant à ……………………………………
22
+ (Veuillez préciser le service et l’adresse)
23
+ </p>
24
+ <p>Vous pouvez également, pour des motifs légitimes, vous opposer au traitement des données vous concernant.</p>
app/locale/fr_CH/template/magesetup/page/revocation.html ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ <!--@title Conditions de retour @-->
2
+ <!--@identifier retour @-->
3
+ <!--@root_template one_column @-->
4
+ {{block type="cms/block" block_id="revocation"}}
app/locale/fr_CH/template/magesetup/page/shipping.html ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ <!--@title Livraison @-->
2
+ <!--@identifier livraison @-->
3
+ <!--@root_template one_column @-->
4
+ <h2><i>Remplissez ici vos conditions de livraison (prix, mode de livraison, etc) et d'éventuelles informations complémentaires concernant les livraisons.</i></h2>
app/locale/fr_FR/FireGento_MageSetup.csv CHANGED
@@ -16,6 +16,7 @@
16
  "Shipping Weight %s","Poids de la livraison %s"
17
 
18
  "If you want to add additional StoreViews (i.e. for multiple languages), please do so before submitting this form.","Si vous osuhaitez ajouter des vues de magasin (e.g. site multilingue), faites le avant de soumettre ce formaulaire"
 
19
  "MageSetup has been installed.","MageSetup a été installé."
20
  "Click <a href=""%s"">here</a> to set up your pages, blocks, emails and tax settings.","Cliquez <a href=""%s"">ici</a>, pour mettre en place vos pages, blocks, emails et réglages de taxe."
21
  "Please choose the requested setups:","Veuillez choisir les réglages suivants:"
@@ -61,6 +62,7 @@
61
  "Fax","Fax"
62
  "Financial office","Bureau des finances"
63
  "IBAN","IBAN"
 
64
  "Register court","Tribunal de commerce"
65
  "Register number","Numéro du tribunal de commerce"
66
  "SWIFT","SWIFT"
@@ -140,4 +142,5 @@
140
  "Bank Payment","Virement"
141
  "Invoice Payment","Facture"
142
  "Extension Key","Extension Key"
143
- "MagentoConnect","MagentoConnect"
 
16
  "Shipping Weight %s","Poids de la livraison %s"
17
 
18
  "If you want to add additional StoreViews (i.e. for multiple languages), please do so before submitting this form.","Si vous osuhaitez ajouter des vues de magasin (e.g. site multilingue), faites le avant de soumettre ce formaulaire"
19
+ "Skip installation","Skip installation"
20
  "MageSetup has been installed.","MageSetup a été installé."
21
  "Click <a href=""%s"">here</a> to set up your pages, blocks, emails and tax settings.","Cliquez <a href=""%s"">ici</a>, pour mettre en place vos pages, blocks, emails et réglages de taxe."
22
  "Please choose the requested setups:","Veuillez choisir les réglages suivants:"
62
  "Fax","Fax"
63
  "Financial office","Bureau des finances"
64
  "IBAN","IBAN"
65
+ "Clearing","Clearing"
66
  "Register court","Tribunal de commerce"
67
  "Register number","Numéro du tribunal de commerce"
68
  "SWIFT","SWIFT"
142
  "Bank Payment","Virement"
143
  "Invoice Payment","Facture"
144
  "Extension Key","Extension Key"
145
+ "MagentoConnect","MagentoConnect"
146
+ "Bank Information","Information bancaire"
app/locale/fr_FR/template/magesetup/page/imprint.html CHANGED
@@ -25,7 +25,7 @@
25
  <p>{{block type="magesetup/imprint_field" value="business_rules"}}</p>
26
 
27
  <p>
28
- Vous pouvez contacter nottre service clientèle pour toutes questions ou réclamations auprès du numéro de téléphone suivant: {{block type="magesetup/imprint_field" value="telephone"}} ou bien par email <a href="mailto:{{block type="magesetup/imprint_field" value="email"}}">{{block type="magesetup/imprint_field" value="email"}}</a> ou encore notre formulaire de contact situé sur notre site internet.
29
  </p>
30
 
31
  <h3>Droits d'auteur et des marques</h3>
25
  <p>{{block type="magesetup/imprint_field" value="business_rules"}}</p>
26
 
27
  <p>
28
+ Vous pouvez contacter nottre service clientèle pour toutes questions ou réclamations auprès du numéro de téléphone suivant: {{block type="magesetup/imprint_field" value="telephone"}} ou bien par email {{block type="magesetup/imprint_field" value="email"}} ou encore notre formulaire de contact situé sur notre site internet.
29
  </p>
30
 
31
  <h3>Droits d'auteur et des marques</h3>
app/locale/it_IT/FireGento_MageSetup.csv CHANGED
@@ -16,6 +16,7 @@
16
  "Shipping Weight %s","Peso spedizione %s"
17
 
18
  "If you want to add additional StoreViews (i.e. for multiple languages), please do so before submitting this form.","Se necessario, aggiungere ulteriori vetrine dello shop (ad es. per diverse lingue) prima di utilizzare questo form"
 
19
  "MageSetup has been installed.","MageSetup installato correttamente"
20
  "Click <a href=""%s"">here</a> to set up your pages, blocks, emails and tax settings.","Clicca <a href=""%s"">qui</a> per impostare pagine CMS, blocchi, e-mail e configurazione delle tasse."
21
  "Please choose the requested setups:","Seleziona i setup da eseguire:"
@@ -61,6 +62,7 @@ CEO,Amministratore
61
  "Fax","Fax"
62
  "Financial office","Ufficio tributario"
63
  "IBAN","IBAN"
 
64
  "Register court","Registro delle imprese"
65
  "Register number","HRB-Nummer"
66
  "SWIFT","SWIFT"
@@ -144,4 +146,5 @@ Nowhere,Mai
144
  "Bank Payment","Pagamento anticipato"
145
  "Invoice Payment","Pagamento su Fattura"
146
  "Extension Key","Codice modulo"
147
- "MagentoConnect","MagentoConnect"
 
16
  "Shipping Weight %s","Peso spedizione %s"
17
 
18
  "If you want to add additional StoreViews (i.e. for multiple languages), please do so before submitting this form.","Se necessario, aggiungere ulteriori vetrine dello shop (ad es. per diverse lingue) prima di utilizzare questo form"
19
+ "Skip installation","Skip installation"
20
  "MageSetup has been installed.","MageSetup installato correttamente"
21
  "Click <a href=""%s"">here</a> to set up your pages, blocks, emails and tax settings.","Clicca <a href=""%s"">qui</a> per impostare pagine CMS, blocchi, e-mail e configurazione delle tasse."
22
  "Please choose the requested setups:","Seleziona i setup da eseguire:"
62
  "Fax","Fax"
63
  "Financial office","Ufficio tributario"
64
  "IBAN","IBAN"
65
+ "Clearing","Clearing"
66
  "Register court","Registro delle imprese"
67
  "Register number","HRB-Nummer"
68
  "SWIFT","SWIFT"
146
  "Bank Payment","Pagamento anticipato"
147
  "Invoice Payment","Pagamento su Fattura"
148
  "Extension Key","Codice modulo"
149
+ "MagentoConnect","MagentoConnect"
150
+ "Bank Information","Bank Information"
app/locale/it_IT/template/magesetup/page/imprint.html CHANGED
@@ -25,7 +25,7 @@ contenute in questa pagina.</p>
25
 
26
  <p>{{block type="magesetup/imprint_field" value="business_rules"}}</p>
27
 
28
- <p>Potete contattare il nostro Servizio Clienti per informazioni e reclami telefonicamente al numero {{block type="magesetup/imprint_field" value="telephone"}} o tramite e-mail all'indirizzo <a href="mailto:{{block type="magesetup/imprint_field" value="email"}}">{{block type="magesetup/imprint_field" value="email"}}</a>. Per qualsiasi informazione è inoltre possibile usare il form sulla nostra pagina Contatti.</p>
29
 
30
  <h3>Responsabilità per i link (Esempio)</h3>
31
 
25
 
26
  <p>{{block type="magesetup/imprint_field" value="business_rules"}}</p>
27
 
28
+ <p>Potete contattare il nostro Servizio Clienti per informazioni e reclami telefonicamente al numero {{block type="magesetup/imprint_field" value="telephone"}} o tramite e-mail all'indirizzo {{block type="magesetup/imprint_field" value="email"}}. Per qualsiasi informazione è inoltre possibile usare il form sulla nostra pagina Contatti.</p>
29
 
30
  <h3>Responsabilità per i link (Esempio)</h3>
31
 
app/locale/ru_RU/FireGento_MageSetup.csv CHANGED
@@ -16,6 +16,7 @@
16
  "Shipping Weight %s","Вес посылки %s"
17
 
18
  "If you want to add additional StoreViews (i.e. for multiple languages), please do so before submitting this form.","Если вы хотите добавить дополнительные представления магазинов (для других языков), пожалуйста, сделайте это до сохранения этой формы."
 
19
  "MageSetup has been installed.","MageSetup установлен."
20
  "Click <a href=""%s"">here</a> to set up your pages, blocks, emails and tax settings.","Нажмите <a href=""%s"">сюда</a> для настройки ваших страниц, блоков, писем и налоговых правил."
21
  "Please choose the requested setups:","Пожалуйста, выберите необходимые установки:"
@@ -56,6 +57,7 @@
56
  "E-Mail","E-Mail"
57
  "Fax","Факс"
58
  "IBAN","IBAN"
 
59
  "SWIFT","SWIFT"
60
  "BIC/SWIFT","BIC/SWIFT"
61
  "Tax number","Tax number"
@@ -129,3 +131,4 @@
129
  "Invoice Payment","Invoice Payment"
130
  "Extension Key","Ключ модуля"
131
  "MagentoConnect","MagentoConnect"
 
16
  "Shipping Weight %s","Вес посылки %s"
17
 
18
  "If you want to add additional StoreViews (i.e. for multiple languages), please do so before submitting this form.","Если вы хотите добавить дополнительные представления магазинов (для других языков), пожалуйста, сделайте это до сохранения этой формы."
19
+ "Skip installation","Skip installation"
20
  "MageSetup has been installed.","MageSetup установлен."
21
  "Click <a href=""%s"">here</a> to set up your pages, blocks, emails and tax settings.","Нажмите <a href=""%s"">сюда</a> для настройки ваших страниц, блоков, писем и налоговых правил."
22
  "Please choose the requested setups:","Пожалуйста, выберите необходимые установки:"
57
  "E-Mail","E-Mail"
58
  "Fax","Факс"
59
  "IBAN","IBAN"
60
+ "Clearing","Clearing"
61
  "SWIFT","SWIFT"
62
  "BIC/SWIFT","BIC/SWIFT"
63
  "Tax number","Tax number"
131
  "Invoice Payment","Invoice Payment"
132
  "Extension Key","Ключ модуля"
133
  "MagentoConnect","MagentoConnect"
134
+ "Bank Information","Bank Information"
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>FireGento_MageSetup</name>
4
- <version>2.0.3</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.gnu.org/licenses/gpl-3.0.html">GPL-3.0</license>
7
  <channel>community</channel>
@@ -10,9 +10,9 @@
10
  <description>&lt;p&gt;Central features of MageSetup are:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;Setting of important configuration settings&lt;/li&gt;&lt;li&gt;Predefined tax settings and tax classes for shipping from several countries to worldwide destinations&lt;/li&gt;&lt;li&gt;Assign new tax classes to all products (configurable)&lt;/li&gt;&lt;li&gt;Creation of email templates based on the local language pack. Legal texts can be added to some templates automatically.&lt;/li&gt;&lt;li&gt;Creation and Activation of Checkout Agreements. Agreements can be shown at customer registration instead of or additional to the checkout. They can be required or not.&lt;/li&gt;&lt;li&gt;Creation of default CMS pages like imprint, terms and conditions, privacy, shipping, payment methods.&lt;/li&gt;&lt;li&gt;Create email templates, cms pages and blocks as well as checkout agreements for store views with a different language as well&lt;/li&gt;&lt;li&gt;Possibility to add tax and/or shipping info to all prices&lt;/li&gt;&lt;li&gt;Automatical generation of meta data to products&lt;/li&gt;&lt;li&gt;Saving of every status change of newsletter subscriptions&lt;/li&gt;&lt;li&gt;Presets are configurable via xml files for every country seperately&lt;/li&gt;&lt;li&gt;Many more, see the &lt;a href="https://github.com/firegento/firegento-magesetup/blob/development/docs/features/features.markdown"&gt;full list of features&lt;/a&gt; including several screenshots.&lt;/li&gt;&lt;/ul&gt;</description>
11
  <notes></notes>
12
  <authors><author><name>Team FireGento</name><user>team</user><email>team@firegento.com</email></author></authors>
13
- <date>2013-12-09</date>
14
- <time>20:29:27</time>
15
- <contents><target name="magecommunity"><dir name="FireGento"><dir name="MageSetup"><dir name="Block"><dir name="Adminhtml"><file name="Magesetup.php" hash="40af519e21b0d173ca5199a31fc9cf80"/><dir name="Newsletter"><dir name="Subscriber"><dir name="Status"><file name="Grid.php" hash="e6c08d3145c0f2e014f1cc97b24e6292"/></dir><file name="Status.php" hash="42feba327813bf27b0f278289d319459"/></dir></dir><file name="Notifications.php" hash="07513970ac9419f0a90ddadc4832bfff"/></dir><dir name="Bundle"><dir name="Catalog"><dir name="Product"><dir name="Price"><file name="Abstract.php" hash="4c23f3ac457cd5399a86e029223c7046"/></dir><file name="Price.php" hash="b1f4887fb5d7d1c9339fa22a535433bf"/></dir></dir></dir><dir name="Catalog"><dir name="Product"><dir name="Price"><file name="Abstract.php" hash="b94eea40c036a0fbf74eaf9db4d2c732"/></dir><file name="Price.php" hash="d9c3dd83dbcce2ff697cd341d28c55bc"/></dir></dir><dir name="Checkout"><file name="Agreements.php" hash="b4a51dc9229f554324c90e451c902e90"/><file name="Information.php" hash="a0163bde832e562afa44153022944841"/></dir><dir name="Customer"><dir name="Account"><file name="Agreements.php" hash="adf8866dadf490657a2a3ced1ea74206"/></dir></dir><file name="Ga.php" hash="ca957a2fec30e76de72ce1c469d35971"/><dir name="Imprint"><file name="Content.php" hash="685565fc14304575d2906cbb2f40d38b"/><file name="Field.php" hash="cf715e97bd460ac8918104ecf709044a"/></dir></dir><dir name="Helper"><dir name="Catalog"><dir name="Product"><file name="Configuration.php" hash="837662be5981d02993820936dd439ffd"/></dir></dir><dir name="Checkout"><file name="Data.php" hash="1e59f6a38378de31a5d6db5ef4859ff6"/></dir><file name="Data.php" hash="90317b90a4e63869ac223fc18259fbad"/></dir><dir name="Model"><file name="Config.php" hash="13628db92612e3ce03b042d89d1b5dba"/><dir name="Newsletter"><file name="Observer.php" hash="548b8b0791920f50cf7d6b3b91228a02"/><dir name="Subscriber"><file name="Status.php" hash="ebe0082369659bf7304773b66fa62d39"/></dir></dir><file name="Observer.php" hash="54fc958460e1f1ed98a5535afe3911a5"/><dir name="Resource"><dir name="Newsletter"><dir name="Subscriber"><dir name="Status"><file name="Collection.php" hash="40b9805febfb3ec8ce51d83a1a052479"/></dir><file name="Status.php" hash="8d426abd13902d43bf90f720ea454b1b"/></dir></dir></dir><dir name="Setup"><file name="Abstract.php" hash="6d0a8abf7e482b0fb4cef97a2b2a9579"/><file name="Agreements.php" hash="1d3a3fd8a7ec59c2bfda3737e18a9b9a"/><file name="Cms.php" hash="be3d01ed1e38c43aa78910d204527d55"/><file name="Email.php" hash="81faa89767c0d2f650cda02d74fa7870"/><file name="Systemconfig.php" hash="5b3e56e0b4fae685651b848dd23016a0"/><file name="Tax.php" hash="cc5cb2e013c622c905cebbf3e47093df"/></dir><file name="Setup.php" hash="12f7accb3acbc80050302392a9e3cfc1"/><dir name="Source"><file name="AgreementType.php" hash="ca2c5fd52ab145ee124a794f62baaaab"/><dir name="Cms"><file name="Block.php" hash="0901426bf01330373f0ef838c2c812c2"/><file name="Page.php" hash="8de254c2b8b0ad36a732bd6b4e274da4"/></dir><dir name="Tax"><file name="CustomerTaxClass.php" hash="64c096c3915e46976e770eb1e289f175"/><file name="DynamicType.php" hash="f69d37d7595f8ce6bc3919f2fa3616c3"/><file name="NewCustomerTaxClass.php" hash="399426226b484bbfa4bb41104f9fdd8f"/><file name="NewProductTaxClass.php" hash="6bc2b76bc9da97292b2dace735452200"/><file name="ProductTaxClass.php" hash="2978517a32c2ce50d9e6dd6a649d633f"/></dir></dir><dir name="Tax"><file name="Config.php" hash="05c637e6dceb8debed3b92107c3ebf6e"/></dir></dir><dir name="Test"><dir name="Config"><dir name="Main"><dir name="expectations"><file name="testModuleConfig.yaml" hash="fe9f80af6f11096abd54d4b8ee0969a2"/></dir></dir><file name="Main.php" hash="ec10931ba70dedb9df0ba540fbd1c445"/></dir><dir name="Model"><dir name="Source"><dir name="AgreementType"><dir name="expectations"><file name="testGetOptionArray.yaml" hash="2c9de8f042c422e9da57eae98a6e6d0f"/><file name="testToOptionArray.yaml" hash="30a7c238cc60b24ef6d8c5768e4490b1"/></dir></dir><file name="AgreementType.php" hash="da31bc356207ef2ea06ac904c4a2f570"/><dir name="Tax"><dir name="DynamicType"><dir name="expectations"><file name="testToOptionArray.yaml" hash="e62597bccca0517120bb012a67995008"/></dir></dir><file name="DynamicType.php" hash="69e0702fad1a82aed6cedf7c506616bd"/></dir></dir></dir><dir name="features"><file name="product_list.feature" hash="b64eb37aa130127af5ff91f02212adf3"/><file name="product_view.feature" hash="705c4b6679d22042a378c1d37ef08590"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="NewsletterController.php" hash="b237fff0bfbaafe13a4274027b8b38a6"/></dir><file name="FrontendController.php" hash="5cdb34dc324b21266d7e72c9a8f4acf9"/><file name="MagesetupController.php" hash="411416e2aac32f62b3ab6e2a7de6afa9"/></dir><dir name="data"><dir name="magesetup_setup"><file name="data-upgrade-2.0.0-2.0.1.php" hash="b47e11f4aa1ca03b2ea9f68a46b8444c"/><file name="data-upgrade-2.0.1-2.0.2.php" hash="75b6a29840e215cb06540c0e7d40b631"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="cdfedba52afaf3da06659121664edacf"/><dir name="at"><file name="email.xml" hash="c99729df5e11d129cd549af39f81c005"/><file name="tax.xml" hash="595bcbbd3a26b6b9cfc49fda603726ea"/></dir><dir name="ch"><file name="email.xml" hash="c99729df5e11d129cd549af39f81c005"/><file name="tax.xml" hash="8411f8088fe7c0c0e37c212c73b645b8"/></dir><file name="config.xml" hash="ac85faf575b25ff39fc5be9833e9d95c"/><dir name="de"><file name="email.xml" hash="7284f4c146d1faf55dcaa8f05cc60276"/><file name="tax.xml" hash="99c04abbf5e2d355c1daf0b2b4cfbf28"/></dir><dir name="default"><file name="agreement.xml" hash="9a3d31d49154e087693dbb06ec512836"/><file name="cms.xml" hash="f5946193d16deb256f1ad50ab15908da"/><file name="email.xml" hash="6131ec61ce7ffefb1d68ff5c2493a1ff"/><file name="systemconfig.xml" hash="4c071e7e0ae4adad34c4dbd5ee41e19a"/><file name="tax.xml" hash="88618a59c488c05e6fc563abc3817ea4"/></dir><dir name="fr"><file name="email.xml" hash="62d24374c6c5c99f79250f47c463e0f5"/><file name="tax.xml" hash="7bc5e5e99f642f51d7290912e8e3cf45"/></dir><dir name="gb"><file name="tax.xml" hash="cc98f01554bdfc55dc119e672af0a41a"/></dir><dir name="it"><file name="email.xml" hash="ed9d36a38cd56abc271c30b8529ab6e2"/><file name="tax.xml" hash="4eee778c7da2403910dda77ccf1b8cc9"/></dir><dir name="ru"><file name="cms.xml" hash="5116035261e126675094e6c9e5c267d2"/><file name="email.xml" hash="413c6ed61612a7c03e844171c482dc4a"/><file name="systemconfig.xml" hash="15a8de3f7e3075e6aedbb6b6c00b703e"/><file name="tax.xml" hash="232e219268d2234ee5b8cd7a3b547418"/></dir><file name="system.xml" hash="6d407999066c58becbc55842a325abe5"/></dir><dir name="scripts"><file name="GenerateCountryTaxXml.php" hash="fb7b98813562026e80a66a260ab1d35e"/></dir><dir name="sql"><dir name="magesetup_setup"><file name="mysql4-install-0.5.0.php" hash="e921aacbc82e83617fd2fcb1cac294b4"/><file name="mysql4-upgrade-1.0.4-1.0.5.php" hash="586555480698f868afd62cf43702c309"/><file name="mysql4-upgrade-1.1.2-1.1.3.php" hash="2bb22f8dfdbda3dd0e901ec2033bf88c"/><file name="mysql4-upgrade-1.1.3-1.1.4.php" hash="75d1de77de207d07c45988a8612fa814"/><file name="mysql4-upgrade-1.1.4-1.2.0.php" hash="a540fd19a5e7b42bcd5843be9ec9f0b1"/><file name="mysql4-upgrade-1.2.0-1.2.1.php" hash="cdbf0799dcdbde6ca56d043223c851c5"/><file name="mysql4-upgrade-1.2.1-1.2.2.php" hash="9f954426ba24270c3c9ff9621a701558"/><file name="mysql4-upgrade-1.2.2-1.2.3.php" hash="80a1fb9ba236a6f7abe76f94dc2a12c1"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="FireGento_MageSetup.xml" hash="d1d1b0d38503835f93a3273f9a0ce34d"/></dir></target><target name="magelocale"><dir name="de_AT"><file name="FireGento_MageSetup.csv" hash="9e32878959eb66bb1a2affeddff4c573"/></dir><dir name="de_DE"><file name="FireGento_MageSetup.csv" hash="ed625923b36f1388e1067617e039493a"/><dir name="template"><dir name="magesetup"><dir name="agreement"><file name="business_terms.html" hash="08d8bee54c2fb03eddb0adc23d7e274e"/><file name="revocation.html" hash="05677b80fda54565da0cacedaea4f365"/></dir><dir name="block"><file name="business_terms.html" hash="0f96986590d2a64fd7a2b55e43b7f965"/><file name="revocation.html" hash="0ec2bdedc783b47db6ac538f0e7d7d1b"/></dir><dir name="page"><file name="404.html" hash="be269dd09e9e4290cf44a3a2413bc434"/><file name="business_terms.html" hash="51449b5899f3ba597707bfcfdc90bc76"/><file name="imprint.html" hash="d5cc95d55d7b6341ec234007e80c8a4b"/><file name="order.html" hash="d074e7420356a9048f14273f331570e5"/><file name="payment.html" hash="eb09162116067fbcba1ba84c0fb57639"/><file name="privacy.html" hash="a8445b5f751b668e5ff1ac2e9621b0d4"/><file name="revocation.html" hash="6ac5f8d9ba0f55fb8490e213746f424b"/><file name="shipping.html" hash="9f1eccc97f3202833b97d5c46cb431cd"/></dir></dir></dir></dir><dir name="en_US"><file name="FireGento_MageSetup.csv" hash="f0f27a3e55336040fdbb909cdf2dd96c"/><dir name="template"><dir name="magesetup"><dir name="agreement"><file name="business_terms.html" hash="ef0782b634c45ad53a0b153e4262be31"/><file name="revocation.html" hash="96c3fc8498277ffc7db1c20940e10b22"/></dir><dir name="block"><file name="business_terms.html" hash="d3c29b8986a1280d74e253ef876f8517"/><file name="revocation.html" hash="02ecf946094aaf3d6d359e10c6eb9a15"/></dir><dir name="page"><file name="404.html" hash="ef24222de59d479e006a9854aadd1ab9"/><file name="business_terms.html" hash="5e8a3c758bd5c172cc94eec5872392dd"/><file name="imprint.html" hash="5b5156757cc811f54fd8bb969385143d"/><file name="order.html" hash="13c494c7e71fdd574f58d0f4c2341538"/><file name="payment.html" hash="d5f2f9c460b780f1b7033bf61e8493c0"/><file name="privacy.html" hash="2c9fde1acd5675293284d01ae95109ab"/><file name="revocation.html" hash="9429eabfa9900c84df6d0e8f842b151d"/><file name="shipping.html" hash="f62421a73c1852867f95b10eddf09562"/></dir></dir></dir></dir><dir name="ru_RU"><file name="FireGento_MageSetup.csv" hash="686afa3e878b887b4ec39645484af4f0"/><dir name="template"><dir name="magesetup"><dir name="agreement"><file name="business_terms.html" hash="6324cb1d34261c3fc7da453d67b2593a"/><file name="revocation.html" hash="972a311efd9d9a2f81db699601259c61"/></dir><dir name="block"><file name="business_terms.html" hash="f91b5b1fff5c7433cd3193558884925b"/><file name="revocation.html" hash="723c5a812543e38a231ab349c095dd60"/></dir><dir name="page"><file name="404.html" hash="adc9a947957a70181b05e8f0c88fda52"/><file name="business_terms.html" hash="e527de3d77e98664a307d723e9aa804e"/><file name="order.html" hash="86ee34198060a1dcb40fc9577e83f259"/><file name="payment.html" hash="0b613cf5e24e9c0f7b6fa375c94bda14"/><file name="privacy.html" hash="0085ca06f30eb9b42e3a8caaedcd8d8e"/><file name="revocation.html" hash="0ba1d3e52f2a2ebe200d85de52c152bd"/><file name="shipping.html" hash="94ae3eb57647d0390d485a18a8a7b401"/></dir></dir></dir></dir><dir name="fr_FR"><file name="FireGento_MageSetup.csv" hash="399cb4ece911265fd830c750b49cb7b6"/><dir name="template"><dir name="magesetup"><dir name="agreement"><file name="business_terms.html" hash="06c85aba03fb36477dfc5ed1c0507279"/><file name="revocation.html" hash="a7496f45c125c3967a199dff58bc8ab7"/></dir><dir name="block"><file name="business_terms.html" hash="ad3203fd83cc6f2889e7f9bd6b140416"/><file name="revocation.html" hash="eb7c5d635b68174740983389c5bd1a8e"/></dir><dir name="page"><file name="404.html" hash="3f817bbe5b25886372749e91330b12d3"/><file name="business_terms.html" hash="7b212cf0ae4f65efb1ccaa3a9b45c26b"/><file name="imprint.html" hash="24331f1136322d2fcd5bc7200ce0fab3"/><file name="order.html" hash="9ace1c990d3960fa3e3a8ddab6a2210f"/><file name="payment.html" hash="72db5b37c9733d050b6760407570105a"/><file name="privacy.html" hash="39342651392d29868d52039d9b860c89"/><file name="revocation.html" hash="76657b8808e2e401e7d7e08b199a0b3c"/><file name="shipping.html" hash="b191377982a1d83230ba88950b1d2a05"/></dir></dir></dir></dir><dir name="it_IT"><file name="FireGento_MageSetup.csv" hash="7dee2db5cd36ee47cc3ea3eb07e86a75"/><dir name="template"><dir name="magesetup"><dir name="agreement"><file name="business_terms.html" hash="85021eb464bdf7b978c679e88bb0c7e1"/><file name="revocation.html" hash="95064e9a9d4dd388e556974d8bc97135"/></dir><dir name="block"><file name="business_terms.html" hash="def7695e209d28ab27a456aba89ad677"/><file name="revocation.html" hash="7cdfce1c57b093c006800716ee6becce"/></dir><dir name="page"><file name="404.html" hash="8d48a098b3b2f72c0e5ee5ec35d2ad22"/><file name="business_terms.html" hash="bafb85bd7f2fef3a056c353539a9aa4f"/><file name="imprint.html" hash="edd18ef545ca0d7bb493080d9f5b3c45"/><file name="order.html" hash="2f5406460c3b33eb2ebbd1bec089c8d8"/><file name="payment.html" hash="94bf4e522c78f55a982eef1d4c719712"/><file name="privacy.html" hash="72d877b7d3402493160bd153ae0fc797"/><file name="revocation.html" hash="ff8e3ecb6b1dbd4f0b203b1f311380d2"/><file name="shipping.html" hash="104b43f4c169f9a3e6f682c50ba77b22"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="magesetup.xml" hash="fd82dae39afdbf66cd3083a6dcad0f2b"/></dir><dir name="template"><dir name="magesetup"><file name="extensions.phtml" hash="1c06953ee90c77028281d474cafe9d1a"/><file name="form.phtml" hash="064cc58ecd39a850eb43ca95a11d04b7"/><file name="notifications.phtml" hash="3fa83ff056dc684ad436c4ac4989541b"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="magesetup.xml" hash="1b86b208537a11fc025986323ed366ac"/></dir><dir name="template"><dir name="magesetup"><dir name="checkout"><file name="additional.phtml" hash="72ae4d0da1461cdb8b17e458e92d7bda"/><dir name="multishipping"><file name="agreements.phtml" hash="6694f497f620ffc01f2a2f84802a5ce2"/><file name="overview.phtml" hash="b13628b8c24ed22ea01b409c37f231ea"/></dir><dir name="onepage"><file name="agreements.phtml" hash="a8aa9145a7930930bac524ec2eaab7e9"/></dir></dir><dir name="customer"><dir name="form"><file name="tc-confirmation.phtml" hash="41ee746ca4fca5e357cf072c163fbe26"/></dir></dir><file name="delivery_time.phtml" hash="88a370bd03d26d1661abe4143ed596b0"/><dir name="imprint"><file name="address.phtml" hash="73085209c17ac1b59cce53255e1072b6"/><file name="bank.phtml" hash="369c397c529383bb82755d93489dcd6f"/><file name="communication.phtml" hash="595ef964b371e3ffade648e426a59cc9"/><file name="email_footer.phtml" hash="21a5c888bd0c4b1702d9bf78cd8054c1"/><file name="legal.phtml" hash="aee3232a0a1ba051193017da15f29672"/><file name="tax.phtml" hash="a67861355296387e4787d8eff81e15f7"/></dir><file name="price_info.phtml" hash="3097c99a38e63403f0e7f5a35d245d8d"/><file name="shipping.phtml" hash="3a22d0c339380fec2cd0af388af69266"/></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><dir name="magesetup"><file name="checkout.css" hash="46bb70ddb4f918117b56c5c0ba5c2ef1"/></dir></dir></dir></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.3.0</min><max>7.9.9</max></php></required></dependencies>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>FireGento_MageSetup</name>
4
+ <version>2.1.0</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.gnu.org/licenses/gpl-3.0.html">GPL-3.0</license>
7
  <channel>community</channel>
10
  <description>&lt;p&gt;Central features of MageSetup are:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;Setting of important configuration settings&lt;/li&gt;&lt;li&gt;Predefined tax settings and tax classes for shipping from several countries to worldwide destinations&lt;/li&gt;&lt;li&gt;Assign new tax classes to all products (configurable)&lt;/li&gt;&lt;li&gt;Creation of email templates based on the local language pack. Legal texts can be added to some templates automatically.&lt;/li&gt;&lt;li&gt;Creation and Activation of Checkout Agreements. Agreements can be shown at customer registration instead of or additional to the checkout. They can be required or not.&lt;/li&gt;&lt;li&gt;Creation of default CMS pages like imprint, terms and conditions, privacy, shipping, payment methods.&lt;/li&gt;&lt;li&gt;Create email templates, cms pages and blocks as well as checkout agreements for store views with a different language as well&lt;/li&gt;&lt;li&gt;Possibility to add tax and/or shipping info to all prices&lt;/li&gt;&lt;li&gt;Automatical generation of meta data to products&lt;/li&gt;&lt;li&gt;Saving of every status change of newsletter subscriptions&lt;/li&gt;&lt;li&gt;Presets are configurable via xml files for every country seperately&lt;/li&gt;&lt;li&gt;Many more, see the &lt;a href="https://github.com/firegento/firegento-magesetup/blob/development/docs/features/features.markdown"&gt;full list of features&lt;/a&gt; including several screenshots.&lt;/li&gt;&lt;/ul&gt;</description>
11
  <notes></notes>
12
  <authors><author><name>Team FireGento</name><user>team</user><email>team@firegento.com</email></author></authors>
13
+ <date>2013-12-14</date>
14
+ <time>21:02:47</time>
15
+ <contents><target name="magecommunity"><dir name="FireGento"><dir name="MageSetup"><dir name="Block"><dir name="Adminhtml"><file name="Magesetup.php" hash="c5d17511889aff2964c142d9a7e411c5"/><dir name="Newsletter"><dir name="Subscriber"><dir name="Status"><file name="Grid.php" hash="6c1343d5bf7b1e9f8f81f947890f4c68"/></dir><file name="Status.php" hash="bdec64f6640b37779a952f2336f882d5"/></dir></dir><file name="Notifications.php" hash="37e23e2fc846c5b3a08ed7a32e6242eb"/></dir><dir name="Bundle"><dir name="Catalog"><dir name="Product"><dir name="Price"><file name="Abstract.php" hash="51ec15ede629fb9a0e701a4233096ade"/></dir><file name="Price.php" hash="f04dede6acee295bc46ecc0d7f454cf6"/></dir></dir></dir><dir name="Catalog"><dir name="Product"><dir name="Price"><file name="Abstract.php" hash="2edc817c8fb2e110ffe58f20c52f83bf"/></dir><file name="Price.php" hash="164b47917dc5d17e03253a9994305036"/></dir></dir><dir name="Checkout"><file name="Agreements.php" hash="c10dd7f0c03cd4fcf031d654913ae9f9"/><file name="Information.php" hash="6aca66846c7a4f3ee3be57a147b9052f"/></dir><dir name="Customer"><dir name="Account"><file name="Agreements.php" hash="7d64c23ed2ba6d69c94b3aeced08d732"/></dir></dir><file name="Ga.php" hash="4fd2610ae56548f401395d03d3786248"/><dir name="Imprint"><file name="Content.php" hash="6ca7e1de3411e2d01d86f7870d4c7a8b"/><file name="Field.php" hash="d0a4f8c2dd95c431988bf3a118276d99"/></dir></dir><dir name="Helper"><dir name="Catalog"><dir name="Product"><file name="Configuration.php" hash="2b640af38ba8635efae1e074eac8429c"/></dir></dir><dir name="Checkout"><file name="Data.php" hash="df1e925faa51a16cf2e1c4afe81b05b1"/></dir><file name="Data.php" hash="24cdba7daa4376d29db9bfa55698f21b"/></dir><dir name="Model"><file name="Config.php" hash="e6e1efbc1c3a36a4f8bce98c672797d7"/><dir name="Newsletter"><file name="Observer.php" hash="2b0baec0913d0bab19828762b55240ac"/><dir name="Subscriber"><file name="Status.php" hash="8de5d36199b228a4aadf78e9d29f0606"/></dir></dir><file name="Observer.php" hash="1cfbd8f5c6601a0c58f357eaf9dbd53b"/><dir name="Resource"><dir name="Newsletter"><dir name="Subscriber"><dir name="Status"><file name="Collection.php" hash="e8ed7ef5a85397b612074bb095fb2798"/></dir><file name="Status.php" hash="e003bab0d4abc1b225d379ee8515724f"/></dir></dir></dir><dir name="Setup"><file name="Abstract.php" hash="fedbb1a5f7ff38b053dff629fb5e8eb3"/><file name="Agreements.php" hash="3479b3c1055687f3e0eb7b98f475ea4c"/><file name="Cms.php" hash="3b177a6b39a9a5dcd0bf8d336939d41b"/><file name="Email.php" hash="bf8e88977a0669dd36f2a662e05a8692"/><file name="Systemconfig.php" hash="fe623f2db0e456e79836f12d06ce5aa7"/><file name="Tax.php" hash="0a3d2291f3e426cf07195a696931467e"/></dir><file name="Setup.php" hash="93714f326a019c1046539623ecb5050c"/><dir name="Source"><file name="AgreementType.php" hash="a294d17f996abf748f32fb427f793554"/><dir name="Cms"><file name="Block.php" hash="b4b1eaee398d4c471a4d61d081f50ede"/><file name="Page.php" hash="6fa5fddba7c16df085c9b31ee33c9ab9"/></dir><dir name="Tax"><file name="CustomerTaxClass.php" hash="c14f649cfa4ef5bfc326c4ab4c1959c4"/><file name="DynamicType.php" hash="6e73d42733c2f56b81cb89ee90fe6067"/><file name="NewCustomerTaxClass.php" hash="688cfb15325809b964a97922898c1906"/><file name="NewProductTaxClass.php" hash="b57d171531d4f293fa24e37927e0c62c"/><file name="ProductTaxClass.php" hash="71209338b07c5963a008a0c4be38d974"/></dir></dir><dir name="Tax"><file name="Config.php" hash="ab8bf2e6969510f0bbfbe31a51eb3dbd"/></dir></dir><dir name="Test"><dir name="Config"><dir name="Main"><dir name="expectations"><file name="testModuleConfig.yaml" hash="fe9f80af6f11096abd54d4b8ee0969a2"/></dir></dir><file name="Main.php" hash="e205467f5371b5c292e3d4b2a0cceb8d"/></dir><dir name="Model"><dir name="Source"><dir name="AgreementType"><dir name="expectations"><file name="testGetOptionArray.yaml" hash="2c9de8f042c422e9da57eae98a6e6d0f"/><file name="testToOptionArray.yaml" hash="30a7c238cc60b24ef6d8c5768e4490b1"/></dir></dir><file name="AgreementType.php" hash="c3a39ba08aac670e169a1ac671981b0f"/><dir name="Tax"><dir name="DynamicType"><dir name="expectations"><file name="testToOptionArray.yaml" hash="e62597bccca0517120bb012a67995008"/></dir></dir><file name="DynamicType.php" hash="4e296520a07507c98dac7d4d3d8f9de8"/></dir></dir></dir><dir name="features"><file name="product_list.feature" hash="b64eb37aa130127af5ff91f02212adf3"/><file name="product_view.feature" hash="705c4b6679d22042a378c1d37ef08590"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="NewsletterController.php" hash="0b18c2d317fa65f05e6d9965b6f5c6ab"/></dir><file name="FrontendController.php" hash="c813c68ab471b437bd56bb8f71b8b469"/><file name="MagesetupController.php" hash="661b105bb6d8756120c4f02091c9ea25"/></dir><dir name="data"><dir name="magesetup_setup"><file name="data-upgrade-2.0.0-2.0.1.php" hash="746f6499217174bf50974e92ef679490"/><file name="data-upgrade-2.0.1-2.0.2.php" hash="ea3c26c5a92dd28d433318cc347185e3"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="bf0eb2bd6a013d68c900d7f5bf2aa35b"/><dir name="at"><file name="email.xml" hash="33155590334e56b7020e8dbf83dbed56"/><file name="tax.xml" hash="ed665f0fe4cca5baa2d9be0ef1c41ff3"/></dir><dir name="ch"><file name="email.xml" hash="33155590334e56b7020e8dbf83dbed56"/><file name="tax.xml" hash="a4c0bcd1d3091d16a63ff318645a4415"/></dir><file name="config.xml" hash="e2c15fdaf400c8c95774defea439d40b"/><dir name="de"><file name="email.xml" hash="ecfcc38b5bbbb7faf0b3a53833507c8d"/><file name="tax.xml" hash="75a5068cab22e73f0d9ccc3ade75fd37"/></dir><dir name="default"><file name="agreement.xml" hash="51a8538a6ef7e757cfab9349e51514f7"/><file name="cms.xml" hash="aea1eaf493a26917edb32a3513f24dc3"/><file name="email.xml" hash="2f184544a556ccd2bf8d71e6a9806138"/><file name="systemconfig.xml" hash="21b80ce10bfe673c1952e5661def9c45"/><file name="tax.xml" hash="f459cc9b0aafc3109f133c54d8fed084"/></dir><dir name="fr"><file name="email.xml" hash="ce3e979f5e119073f71b47c4046f5d5f"/><file name="tax.xml" hash="f3d2482b60419666f4053bdb81dd3428"/></dir><dir name="gb"><file name="tax.xml" hash="f459cc9b0aafc3109f133c54d8fed084"/></dir><dir name="it"><file name="email.xml" hash="8b0545e0c98bb57ba630c7e2efe8f84a"/><file name="tax.xml" hash="f0916bd5dc0592d30200688ec8a95390"/></dir><dir name="nl"><file name="tax.xml" hash="a24fd1ae6346968878a25c4b1640f9f7"/></dir><dir name="ru"><file name="cms.xml" hash="06c1bd4c8c1c25da4e635e1b8a85143f"/><file name="email.xml" hash="34911101ab8a0dbe01814360ae952a6b"/><file name="systemconfig.xml" hash="f5ea7cf75cb125f1ae77adcf96cb2d43"/><file name="tax.xml" hash="f6776296c3ca8310b22f45225160b145"/></dir><file name="system.xml" hash="05b2ed15567983205e81dde33c476892"/></dir><dir name="sql"><dir name="magesetup_setup"><file name="mysql4-install-0.5.0.php" hash="94c61c448c2806703c8c3302a1bd5bd4"/><file name="mysql4-upgrade-1.0.4-1.0.5.php" hash="185360a3e129c9d507b9bc23696ac95f"/><file name="mysql4-upgrade-1.1.2-1.1.3.php" hash="d0c88bfabfda03c6b6fffff4a594da4f"/><file name="mysql4-upgrade-1.1.3-1.1.4.php" hash="615395b2509665e2928b3d9577983623"/><file name="mysql4-upgrade-1.1.4-1.2.0.php" hash="420e0bde8f4179521937aaae47a35b85"/><file name="mysql4-upgrade-1.2.0-1.2.1.php" hash="b601478b45fed57fb148327e80adb6f1"/><file name="mysql4-upgrade-1.2.1-1.2.2.php" hash="6147aac8c9a3ded712e3d0f16161e96b"/><file name="mysql4-upgrade-1.2.2-1.2.3.php" hash="be666ae64d6e1e6ce60e47fa483e2a9a"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="FireGento_MageSetup.xml" hash="44fa3504628d001a7374189138d84c72"/></dir></target><target name="magelocale"><dir name="de_AT"><file name="FireGento_MageSetup.csv" hash="1426249fbc630b1911fd87d85d03867a"/></dir><dir name="de_CH"><dir name="template"><dir name="magesetup"><dir name="agreement"><file name="business_terms.html" hash="08d8bee54c2fb03eddb0adc23d7e274e"/><file name="revocation.html" hash="05677b80fda54565da0cacedaea4f365"/></dir><dir name="block"><file name="business_terms.html" hash="0f96986590d2a64fd7a2b55e43b7f965"/><file name="revocation.html" hash="0ec2bdedc783b47db6ac538f0e7d7d1b"/></dir><dir name="page"><file name="404.html" hash="be269dd09e9e4290cf44a3a2413bc434"/><file name="business_terms.html" hash="51449b5899f3ba597707bfcfdc90bc76"/><file name="imprint.html" hash="a7ba9cf1f91dd6bd9667999f80d6b63f"/><file name="order.html" hash="d074e7420356a9048f14273f331570e5"/><file name="payment.html" hash="eb09162116067fbcba1ba84c0fb57639"/><file name="privacy.html" hash="a8445b5f751b668e5ff1ac2e9621b0d4"/><file name="revocation.html" hash="6ac5f8d9ba0f55fb8490e213746f424b"/><file name="shipping.html" hash="9f1eccc97f3202833b97d5c46cb431cd"/></dir></dir></dir></dir><dir name="de_DE"><file name="FireGento_MageSetup.csv" hash="91e1a5a0e20ffcf79cb6ee462be4399d"/><dir name="template"><dir name="magesetup"><dir name="agreement"><file name="business_terms.html" hash="08d8bee54c2fb03eddb0adc23d7e274e"/><file name="revocation.html" hash="05677b80fda54565da0cacedaea4f365"/></dir><dir name="block"><file name="business_terms.html" hash="0f96986590d2a64fd7a2b55e43b7f965"/><file name="revocation.html" hash="0ec2bdedc783b47db6ac538f0e7d7d1b"/></dir><dir name="page"><file name="404.html" hash="be269dd09e9e4290cf44a3a2413bc434"/><file name="business_terms.html" hash="51449b5899f3ba597707bfcfdc90bc76"/><file name="imprint.html" hash="a7ba9cf1f91dd6bd9667999f80d6b63f"/><file name="order.html" hash="d074e7420356a9048f14273f331570e5"/><file name="payment.html" hash="eb09162116067fbcba1ba84c0fb57639"/><file name="privacy.html" hash="a8445b5f751b668e5ff1ac2e9621b0d4"/><file name="revocation.html" hash="6ac5f8d9ba0f55fb8490e213746f424b"/><file name="shipping.html" hash="9f1eccc97f3202833b97d5c46cb431cd"/></dir></dir></dir></dir><dir name="en_US"><file name="FireGento_MageSetup.csv" hash="9da5b5e63852554eb725876f5c283a76"/><dir name="template"><dir name="magesetup"><dir name="agreement"><file name="business_terms.html" hash="ef0782b634c45ad53a0b153e4262be31"/><file name="revocation.html" hash="96c3fc8498277ffc7db1c20940e10b22"/></dir><dir name="block"><file name="business_terms.html" hash="d3c29b8986a1280d74e253ef876f8517"/><file name="revocation.html" hash="02ecf946094aaf3d6d359e10c6eb9a15"/></dir><dir name="page"><file name="404.html" hash="ef24222de59d479e006a9854aadd1ab9"/><file name="business_terms.html" hash="5e8a3c758bd5c172cc94eec5872392dd"/><file name="imprint.html" hash="dcff5e560a9b251a34ef6e4cb9db32b8"/><file name="order.html" hash="5a0695c9e9a774b4f1ff6e0b5622eb32"/><file name="payment.html" hash="658621f82e8af8159905c9911df52fdd"/><file name="privacy.html" hash="2c9fde1acd5675293284d01ae95109ab"/><file name="revocation.html" hash="9429eabfa9900c84df6d0e8f842b151d"/><file name="shipping.html" hash="f62421a73c1852867f95b10eddf09562"/></dir></dir></dir></dir><dir name="ru_RU"><file name="FireGento_MageSetup.csv" hash="acde55d24327b8e7afa11da1b4a4b6d6"/><dir name="template"><dir name="magesetup"><dir name="agreement"><file name="business_terms.html" hash="6324cb1d34261c3fc7da453d67b2593a"/><file name="revocation.html" hash="972a311efd9d9a2f81db699601259c61"/></dir><dir name="block"><file name="business_terms.html" hash="f91b5b1fff5c7433cd3193558884925b"/><file name="revocation.html" hash="723c5a812543e38a231ab349c095dd60"/></dir><dir name="page"><file name="404.html" hash="adc9a947957a70181b05e8f0c88fda52"/><file name="business_terms.html" hash="e527de3d77e98664a307d723e9aa804e"/><file name="order.html" hash="86ee34198060a1dcb40fc9577e83f259"/><file name="payment.html" hash="0b613cf5e24e9c0f7b6fa375c94bda14"/><file name="privacy.html" hash="0085ca06f30eb9b42e3a8caaedcd8d8e"/><file name="revocation.html" hash="0ba1d3e52f2a2ebe200d85de52c152bd"/><file name="shipping.html" hash="94ae3eb57647d0390d485a18a8a7b401"/></dir></dir></dir></dir><dir name="fr_CH"><dir name="template"><dir name="magesetup"><dir name="agreement"><file name="business_terms.html" hash="06c85aba03fb36477dfc5ed1c0507279"/><file name="revocation.html" hash="a7496f45c125c3967a199dff58bc8ab7"/></dir><dir name="block"><file name="business_terms.html" hash="ad3203fd83cc6f2889e7f9bd6b140416"/><file name="revocation.html" hash="eb7c5d635b68174740983389c5bd1a8e"/></dir><dir name="page"><file name="404.html" hash="3f817bbe5b25886372749e91330b12d3"/><file name="business_terms.html" hash="7b212cf0ae4f65efb1ccaa3a9b45c26b"/><file name="imprint.html" hash="ca94ff740794026ad57c7772d7f9645c"/><file name="order.html" hash="9ace1c990d3960fa3e3a8ddab6a2210f"/><file name="payment.html" hash="72db5b37c9733d050b6760407570105a"/><file name="privacy.html" hash="39342651392d29868d52039d9b860c89"/><file name="revocation.html" hash="76657b8808e2e401e7d7e08b199a0b3c"/><file name="shipping.html" hash="b191377982a1d83230ba88950b1d2a05"/></dir></dir></dir></dir><dir name="fr_FR"><file name="FireGento_MageSetup.csv" hash="ec7107aae02605fe8807ba1f4a9f966e"/><dir name="template"><dir name="magesetup"><dir name="agreement"><file name="business_terms.html" hash="06c85aba03fb36477dfc5ed1c0507279"/><file name="revocation.html" hash="a7496f45c125c3967a199dff58bc8ab7"/></dir><dir name="block"><file name="business_terms.html" hash="ad3203fd83cc6f2889e7f9bd6b140416"/><file name="revocation.html" hash="eb7c5d635b68174740983389c5bd1a8e"/></dir><dir name="page"><file name="404.html" hash="3f817bbe5b25886372749e91330b12d3"/><file name="business_terms.html" hash="7b212cf0ae4f65efb1ccaa3a9b45c26b"/><file name="imprint.html" hash="ca94ff740794026ad57c7772d7f9645c"/><file name="order.html" hash="9ace1c990d3960fa3e3a8ddab6a2210f"/><file name="payment.html" hash="72db5b37c9733d050b6760407570105a"/><file name="privacy.html" hash="39342651392d29868d52039d9b860c89"/><file name="revocation.html" hash="76657b8808e2e401e7d7e08b199a0b3c"/><file name="shipping.html" hash="b191377982a1d83230ba88950b1d2a05"/></dir></dir></dir></dir><dir name="it_IT"><file name="FireGento_MageSetup.csv" hash="137dba02d28adef545266178bc54688a"/><dir name="template"><dir name="magesetup"><dir name="agreement"><file name="business_terms.html" hash="85021eb464bdf7b978c679e88bb0c7e1"/><file name="revocation.html" hash="95064e9a9d4dd388e556974d8bc97135"/></dir><dir name="block"><file name="business_terms.html" hash="def7695e209d28ab27a456aba89ad677"/><file name="revocation.html" hash="7cdfce1c57b093c006800716ee6becce"/></dir><dir name="page"><file name="404.html" hash="8d48a098b3b2f72c0e5ee5ec35d2ad22"/><file name="business_terms.html" hash="bafb85bd7f2fef3a056c353539a9aa4f"/><file name="imprint.html" hash="f77eb86287a8899e9ae786a269ed1ef2"/><file name="order.html" hash="2f5406460c3b33eb2ebbd1bec089c8d8"/><file name="payment.html" hash="94bf4e522c78f55a982eef1d4c719712"/><file name="privacy.html" hash="72d877b7d3402493160bd153ae0fc797"/><file name="revocation.html" hash="ff8e3ecb6b1dbd4f0b203b1f311380d2"/><file name="shipping.html" hash="104b43f4c169f9a3e6f682c50ba77b22"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="magesetup.xml" hash="e553ea10aa94c6b9cb149555fa13b8a6"/></dir><dir name="template"><dir name="magesetup"><file name="extensions.phtml" hash="c7abf7273028986a29e4efad58fe6094"/><file name="form.phtml" hash="a9b37df2885081c82b8c9ed2e71c0046"/><file name="notifications.phtml" hash="5fcb7a336368dca279c8886443397576"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="magesetup.xml" hash="8bab307af56c1bcf09205a66ec305e3f"/></dir><dir name="template"><dir name="magesetup"><dir name="checkout"><file name="additional.phtml" hash="3ed2fc19f501f1fb53e53eabbf157e05"/><dir name="multishipping"><file name="agreements.phtml" hash="2c119d42acd123ad78f8e63923408f74"/><file name="overview.phtml" hash="79fade7c1deb9ef903b832e50f11d20a"/></dir><dir name="onepage"><file name="agreements.phtml" hash="6a422b5e5836212319a7f90bce4c1c24"/></dir></dir><dir name="customer"><dir name="form"><file name="tc-confirmation.phtml" hash="a3762aaec5fb62ea82febc3e83a8fb82"/></dir></dir><file name="delivery_time.phtml" hash="1085de970b06360e1036b258138d34bf"/><dir name="imprint"><file name="address.phtml" hash="20432ca1bbaa4af0d64a87bc91021c2e"/><file name="bank.phtml" hash="aacfd784ac729b62f598a5554e477fc8"/><file name="communication.phtml" hash="a34563d4fb9cf49e09bad8fa6baac8ec"/><file name="email_footer.phtml" hash="e6c935b4dc336c6a36c900272b10c910"/><file name="legal.phtml" hash="3c338a1543185ce973b8d70adbb6ccdf"/><file name="tax.phtml" hash="beb277bc22a2f15be17f671b6f5f57ee"/></dir><file name="price_info.phtml" hash="3c7b41408ae4d298698dc02b8c494305"/><file name="shipping.phtml" hash="73a4c0768e1223b3270c4e26a275ba7f"/></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><dir name="magesetup"><file name="checkout.css" hash="8f2c450d31624e72cd4d927899d4ecb3"/></dir></dir></dir></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.3.0</min><max>7.9.9</max></php></required></dependencies>
18
  </package>
skin/frontend/base/default/css/magesetup/checkout.css CHANGED
@@ -1,64 +1,31 @@
1
- #checkout-review-table tfoot tr {
2
- background-color: #FBFAF6 !important;
3
- }
4
-
5
- #checkout-review-table tr.odd,
6
- #checkout-review-table tr.even {
7
- background-color: #FBFAF6;
8
- }
9
-
10
- #checkout-review-table td.last {
11
- text-align: right;
12
- }
13
- #checkout-review-table td.last .price {
14
- font-weight: bold;
15
- }
16
-
17
- #checkout-review-table-wrapper {
18
- border: 2px solid #0A263D;
19
- border-bottom: 0;
20
- }
21
-
22
- #opc-review #checkout-step-review .additional-information {
23
- border: 2px solid #0A263D;
24
- border-top: 0;
25
- border-bottom: 0;
26
- }
27
-
28
- #checkout-review-submit {
29
- background-color: #FBFAF6;
30
- border: 2px solid #0A263D;
31
- border-top: 0;
32
- }
33
-
34
- #opc-review .additional-information {
35
- clear: both;
36
- margin:0;
37
- padding: 15px 10px;
38
- text-align: right;
39
- }
40
-
41
- .checkout-multishipping-overview .additional-information {
42
- margin: 0;
43
- padding: 0 10px 25px;
44
- text-align: right;
45
- }
46
-
47
- .checkout-multishipping-overview .checkout-agreements {
48
- margin-bottom: 25px;
49
- }
50
-
51
- .opc .checkout-agreements li,
52
- .checkout-multishipping-overview .checkout-agreements li {
53
- margin: 10px 0;
54
- }
55
-
56
- .opc .checkout-agreements .agree,
57
- .checkout-multishipping-overview .checkout-agreements .agree {
58
- padding-top: 0px;
59
- padding-bottom: 0px;
60
- }
61
-
62
- #review-buttons-container p.f-left {
63
- display: none;
64
- }
1
+ /**
2
+ * This file is part of a FireGento e.V. module.
3
+ *
4
+ * This FireGento e.V. module is free software; you can redistribute it and/or
5
+ * modify it under the terms of the GNU General Public License version 3 as
6
+ * published by the Free Software Foundation.
7
+ *
8
+ * This script is distributed in the hope that it will be useful, but WITHOUT
9
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
10
+ * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
11
+ *
12
+ * @category FireGento
13
+ * @package FireGento_MageSetup
14
+ * @author FireGento Team <team@firegento.com>
15
+ * @copyright 2013 FireGento Team (http://www.firegento.com)
16
+ * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
17
+ */
18
+
19
+ #checkout-review-table tfoot tr{background-color:#FBFAF6!important}
20
+ #checkout-review-table tr.odd,#checkout-review-table tr.even{background-color:#FBFAF6}
21
+ #checkout-review-table td.last{text-align:right}
22
+ #checkout-review-table td.last .price{font-weight:700}
23
+ #checkout-review-table-wrapper{border:2px solid #0A263D;border-bottom:0}
24
+ #opc-review #checkout-step-review .additional-information{border:2px solid #0A263D;border-top:0;border-bottom:0}
25
+ #checkout-review-submit{background-color:#FBFAF6;border:2px solid #0A263D;border-top:0}
26
+ #opc-review .additional-information{clear:both;margin:0;padding:15px 10px;text-align:right}
27
+ .checkout-multishipping-overview .additional-information{margin:0;padding:0 10px 25px;text-align:right}
28
+ .checkout-multishipping-overview .checkout-agreements{margin-bottom:25px}
29
+ .opc .checkout-agreements li,.checkout-multishipping-overview .checkout-agreements li{margin:10px 0}
30
+ .opc .checkout-agreements .agree,.checkout-multishipping-overview .checkout-agreements .agree{padding-top:0;padding-bottom:0}
31
+ #review-buttons-container p.f-left{display:none}