Mxperts_NoRegion - Version 0.1.6

Version Notes

none / keine

Download this release

Release Info

Developer Magento Core Team
Extension Mxperts_NoRegion
Version 0.1.6
Comparing to
See all releases


Code changes from version 0.1.5 to 0.1.6

app/code/local/Mage/Adminhtml/Block/Sales/Order/Create/Form/Address.php ADDED
@@ -0,0 +1,145 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magentocommerce.com for more information.
20
+ *
21
+ * @category Mage
22
+ * @package Mage_Adminhtml
23
+ * @copyright Copyright (c) 2010 Magento Inc. (http://www.magentocommerce.com)
24
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
+ */
26
+
27
+ /**
28
+ * Order create address form
29
+ *
30
+ * @author Magento Core Team <core@magentocommerce.com>
31
+ */
32
+
33
+ /* * The edited version of this core file: */
34
+
35
+ /**
36
+ * @category Mxperts
37
+ * @package Mxperts_NoRegion
38
+ * @authors TMEDIA cross communications <info@tmedia.de>, Johannes Teitge <teitge@tmedia.de>, Igor Jankovic <jankovic@tmedia.de>, Daniel Sasse <info@golox-web.de>
39
+ * @developer Daniel Sasse <info@golox-web.de, http://www.golox-web.de/>
40
+ * @version 0.1.6
41
+ * @copyright TMEDIA cross communications, Doris Teitge-Seifert
42
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
43
+ */
44
+
45
+ class Mage_Adminhtml_Block_Sales_Order_Create_Form_Address extends Mage_Adminhtml_Block_Sales_Order_Create_Abstract
46
+ {
47
+ protected $_form;
48
+
49
+ protected function _prepareLayout()
50
+ {
51
+ Varien_Data_Form::setElementRenderer(
52
+ $this->getLayout()->createBlock('adminhtml/widget_form_renderer_element')
53
+ );
54
+ Varien_Data_Form::setFieldsetRenderer(
55
+ $this->getLayout()->createBlock('adminhtml/widget_form_renderer_fieldset')
56
+ );
57
+ Varien_Data_Form::setFieldsetElementRenderer(
58
+ $this->getLayout()->createBlock('adminhtml/widget_form_renderer_fieldset_element')
59
+ );
60
+ }
61
+
62
+ public function getAddressCollection()
63
+ {
64
+ return $this->getCustomer()->getAddresses();
65
+ }
66
+
67
+ public function getAddressCollectionJson()
68
+ {
69
+ $data = array();
70
+ foreach ($this->getAddressCollection() as $address) {
71
+ $data[$address->getId()] = $address->getData();
72
+ }
73
+ return Mage::helper('core')->jsonEncode($data);
74
+ }
75
+
76
+ public function getForm()
77
+ {
78
+ $this->_prepareForm();
79
+ return $this->_form;
80
+ }
81
+
82
+ protected function _prepareForm()
83
+ {
84
+ if (!$this->_form) {
85
+ $this->_form = new Varien_Data_Form();
86
+ $fieldset = $this->_form->addFieldset('main', array('no_container'=>true));
87
+ $addressModel = Mage::getModel('customer/address');
88
+
89
+ foreach ($addressModel->getAttributes() as $attribute) {
90
+ if ($attribute->hasData('is_visible') && !$attribute->getIsVisible()) {
91
+ continue;
92
+ }
93
+ if ($inputType = $attribute->getFrontend()->getInputType()) {
94
+ $element = $fieldset->addField($attribute->getAttributeCode(), $inputType,
95
+ array(
96
+ 'name' => $attribute->getAttributeCode(),
97
+ 'label' => $this->__($attribute->getFrontend()->getLabel()),
98
+ 'class' => $attribute->getFrontend()->getClass(),
99
+ 'required' => $attribute->getIsRequired(),
100
+ )
101
+ )
102
+ ->setEntityAttribute($attribute);
103
+
104
+ if ('street' === $element->getName()) {
105
+ $lines = Mage::getStoreConfig('customer/address/street_lines', $this->getStoreId());
106
+ $element->setLineCount($lines);
107
+ }
108
+
109
+ if ($inputType == 'select' || $inputType == 'multiselect') {
110
+ $element->setValues($attribute->getFrontend()->getSelectOptions());
111
+ }
112
+ }
113
+ }
114
+ /*No Display of Field Region on editing a order */
115
+ if ($regionElement = $this->_form->getElement('region')) {
116
+ /*New: set NoDisplay to the field Region*/
117
+ $regionElement->setNoDisplay(true);
118
+ /* Original */
119
+ /* $regionElement->setRenderer(
120
+ $this->getLayout()->createBlock('adminhtml/customer_edit_renderer_region')
121
+ ); */
122
+ }
123
+ if ($regionElement = $this->_form->getElement('region_id')) {
124
+ $regionElement->setNoDisplay(true);
125
+ }
126
+ $this->_form->setValues($this->getFormValues());
127
+ }
128
+ return $this;
129
+ }
130
+
131
+ public function getFormValues()
132
+ {
133
+ return array();
134
+ }
135
+
136
+ public function getAddressId()
137
+ {
138
+ return false;
139
+ }
140
+
141
+ public function getAddressAsString($address)
142
+ {
143
+ return $address->format('oneline');
144
+ }
145
+ }
app/code/local/Mxperts/NoRegion/Block/Customer/Edit/Tab/Addresses.php CHANGED
@@ -4,7 +4,7 @@
4
  * @package Mxperts_NoRegion
5
  * @authors TMEDIA cross communications <info@tmedia.de>, Johannes Teitge <teitge@tmedia.de>, Igor Jankovic <jankovic@tmedia.de>, Daniel Sasse <info@golox-web.de>
6
  * @developer Daniel Sasse <info@golox-web.de, http://www.golox-web.de/>
7
- * @version 0.1.5
8
  * @copyright TMEDIA cross communications, Doris Teitge-Seifert
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
4
  * @package Mxperts_NoRegion
5
  * @authors TMEDIA cross communications <info@tmedia.de>, Johannes Teitge <teitge@tmedia.de>, Igor Jankovic <jankovic@tmedia.de>, Daniel Sasse <info@golox-web.de>
6
  * @developer Daniel Sasse <info@golox-web.de, http://www.golox-web.de/>
7
+ * @version 0.1.6
8
  * @copyright TMEDIA cross communications, Doris Teitge-Seifert
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
app/code/local/Mxperts/NoRegion/Block/Customer/Grid.php CHANGED
@@ -4,7 +4,7 @@
4
  * @package Mxperts_NoRegion
5
  * @authors TMEDIA cross communications <info@tmedia.de>, Johannes Teitge <teitge@tmedia.de>, Igor Jankovic <jankovic@tmedia.de>, Daniel Sasse <info@golox-web.de>
6
  * @developer Daniel Sasse <info@golox-web.de, http://www.golox-web.de/>
7
- * @version 0.1.5
8
  * @copyright TMEDIA cross communications, Doris Teitge-Seifert
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
4
  * @package Mxperts_NoRegion
5
  * @authors TMEDIA cross communications <info@tmedia.de>, Johannes Teitge <teitge@tmedia.de>, Igor Jankovic <jankovic@tmedia.de>, Daniel Sasse <info@golox-web.de>
6
  * @developer Daniel Sasse <info@golox-web.de, http://www.golox-web.de/>
7
+ * @version 0.1.6
8
  * @copyright TMEDIA cross communications, Doris Teitge-Seifert
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
app/code/local/Mxperts/NoRegion/Helper/Data.php CHANGED
@@ -4,7 +4,7 @@
4
  * @package Mxperts_NoRegion
5
  * @authors TMEDIA cross communications <info@tmedia.de>, Johannes Teitge <teitge@tmedia.de>, Igor Jankovic <jankovic@tmedia.de>, Daniel Sasse <info@golox-web.de>
6
  * @developer Daniel Sasse <info@golox-web.de, http://www.golox-web.de/>
7
- * @version 0.1.5
8
  * @copyright TMEDIA cross communications, Doris Teitge-Seifert
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
4
  * @package Mxperts_NoRegion
5
  * @authors TMEDIA cross communications <info@tmedia.de>, Johannes Teitge <teitge@tmedia.de>, Igor Jankovic <jankovic@tmedia.de>, Daniel Sasse <info@golox-web.de>
6
  * @developer Daniel Sasse <info@golox-web.de, http://www.golox-web.de/>
7
+ * @version 0.1.6
8
  * @copyright TMEDIA cross communications, Doris Teitge-Seifert
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
app/code/local/Mxperts/NoRegion/Model/Address.php CHANGED
@@ -4,7 +4,7 @@
4
  * @package Mxperts_NoRegion
5
  * @authors TMEDIA cross communications <info@tmedia.de>, Johannes Teitge <teitge@tmedia.de>, Igor Jankovic <jankovic@tmedia.de>, Daniel Sasse <info@golox-web.de>
6
  * @developer Daniel Sasse <info@golox-web.de, http://www.golox-web.de/>
7
- * @version 0.1.5
8
  * @copyright TMEDIA cross communications, Doris Teitge-Seifert
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
4
  * @package Mxperts_NoRegion
5
  * @authors TMEDIA cross communications <info@tmedia.de>, Johannes Teitge <teitge@tmedia.de>, Igor Jankovic <jankovic@tmedia.de>, Daniel Sasse <info@golox-web.de>
6
  * @developer Daniel Sasse <info@golox-web.de, http://www.golox-web.de/>
7
+ * @version 0.1.6
8
  * @copyright TMEDIA cross communications, Doris Teitge-Seifert
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
app/code/local/Mxperts/NoRegion/Model/Quote/Address.php CHANGED
@@ -4,7 +4,7 @@
4
  * @package Mxperts_NoRegion
5
  * @authors TMEDIA cross communications <info@tmedia.de>, Johannes Teitge <teitge@tmedia.de>, Igor Jankovic <jankovic@tmedia.de>, Daniel Sasse <info@golox-web.de>
6
  * @developer Daniel Sasse <info@golox-web.de, http://www.golox-web.de/>
7
- * @version 0.1.5
8
  * @copyright TMEDIA cross communications, Doris Teitge-Seifert
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
4
  * @package Mxperts_NoRegion
5
  * @authors TMEDIA cross communications <info@tmedia.de>, Johannes Teitge <teitge@tmedia.de>, Igor Jankovic <jankovic@tmedia.de>, Daniel Sasse <info@golox-web.de>
6
  * @developer Daniel Sasse <info@golox-web.de, http://www.golox-web.de/>
7
+ * @version 0.1.6
8
  * @copyright TMEDIA cross communications, Doris Teitge-Seifert
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
app/code/local/Mxperts/NoRegion/etc/config.xml CHANGED
@@ -4,7 +4,7 @@
4
  * @package Mxperts_NoRegion
5
  * @authors TMEDIA cross communications <info@tmedia.de>, Johannes Teitge <teitge@tmedia.de>, Igor Jankovic <jankovic@tmedia.de>, Daniel Sasse <info@golox-web.de>
6
  * @developer Daniel Sasse <info@golox-web.de, http://www.golox-web.de/>
7
- * @version 0.1.5
8
  * @copyright TMEDIA cross communications, Doris Teitge-Seifert
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
@@ -12,7 +12,7 @@
12
  <config>
13
  <modules>
14
  <Mxperts_NoRegion>
15
- <version>0.1.5</version>
16
  <depends>
17
  <Mage_Adminhtml />
18
  <Mage_Customer />
@@ -30,7 +30,7 @@
30
  </rewrite>
31
  <rewrite>
32
  <customer_edit_tab_addresses>Mxperts_NoRegion_Block_Customer_Edit_Tab_Addresses</customer_edit_tab_addresses>
33
- </rewrite>
34
  </adminhtml>
35
  </blocks>
36
 
4
  * @package Mxperts_NoRegion
5
  * @authors TMEDIA cross communications <info@tmedia.de>, Johannes Teitge <teitge@tmedia.de>, Igor Jankovic <jankovic@tmedia.de>, Daniel Sasse <info@golox-web.de>
6
  * @developer Daniel Sasse <info@golox-web.de, http://www.golox-web.de/>
7
+ * @version 0.1.6
8
  * @copyright TMEDIA cross communications, Doris Teitge-Seifert
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
12
  <config>
13
  <modules>
14
  <Mxperts_NoRegion>
15
+ <version>0.1.6</version>
16
  <depends>
17
  <Mage_Adminhtml />
18
  <Mage_Customer />
30
  </rewrite>
31
  <rewrite>
32
  <customer_edit_tab_addresses>Mxperts_NoRegion_Block_Customer_Edit_Tab_Addresses</customer_edit_tab_addresses>
33
+ </rewrite>
34
  </adminhtml>
35
  </blocks>
36
 
app/code/local/Mxperts/NoRegion/etc/system.xml CHANGED
@@ -5,7 +5,7 @@
5
  * @package Mxperts_NoRegion
6
  * @authors TMEDIA cross communications <info@tmedia.de>, Johannes Teitge <teitge@tmedia.de>, Igor Jankovic <jankovic@tmedia.de>, Daniel Sasse <info@golox-web.de>
7
  * @developer Daniel Sasse <info@golox-web.de, http://www.golox-web.de/>
8
- * @version 0.1.5
9
  * @copyright TMEDIA cross communications, Doris Teitge-Seifert
10
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
11
  */
@@ -29,7 +29,7 @@
29
  <fields>
30
  <enabled translate="label">
31
  <label>Enabled</label>
32
- <comment><![CDATA[- <b>Hide</b> the Field <b>State / Province</b>? <br /> - Das Feld <b>Bundesland</b> verstecken?]]></comment>
33
  <frontend_type>select</frontend_type>
34
  <source_model>adminhtml/system_config_source_yesno</source_model>
35
  <sort_order>20</sort_order>
5
  * @package Mxperts_NoRegion
6
  * @authors TMEDIA cross communications <info@tmedia.de>, Johannes Teitge <teitge@tmedia.de>, Igor Jankovic <jankovic@tmedia.de>, Daniel Sasse <info@golox-web.de>
7
  * @developer Daniel Sasse <info@golox-web.de, http://www.golox-web.de/>
8
+ * @version 0.1.6
9
  * @copyright TMEDIA cross communications, Doris Teitge-Seifert
10
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
11
  */
29
  <fields>
30
  <enabled translate="label">
31
  <label>Enabled</label>
32
+ <comment><![CDATA[- <b>Hide</b> the Field <b>State / Province</b> in the Frontend? <br /> - Das Feld <b>Bundesland</b> im Frontend <b>verstecken</b>?]]></comment>
33
  <frontend_type>select</frontend_type>
34
  <source_model>adminhtml/system_config_source_yesno</source_model>
35
  <sort_order>20</sort_order>
app/design/frontend/default/default/layout/noregion.xml CHANGED
@@ -3,10 +3,11 @@
3
  /**
4
  * @category Mxperts
5
  * @package Mxperts_NoRegion
6
- * @authors TMEDIA cross communications <info@tmedia.de>, Johannes Teitge <teitge@tmedia.de>, Igor Jankovic <jankovic@tmedia.de>, Daniel Sasse <daniel.sasse@golox.eu>
7
- * @developer Daniel Sasse <sasse@mxperts.de>
 
8
  * @copyright TMEDIA cross communications, Doris Teitge-Seifert
9
- * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
11
  -->
12
  <layout version="0.1.0">
3
  /**
4
  * @category Mxperts
5
  * @package Mxperts_NoRegion
6
+ * @authors TMEDIA cross communications <info@tmedia.de>, Johannes Teitge <teitge@tmedia.de>, Igor Jankovic <jankovic@tmedia.de>, Daniel Sasse <info@golox-web.de>
7
+ * @developer Daniel Sasse <info@golox-web.de, http://www.golox-web.de/>
8
+ * @version 0.1.6
9
  * @copyright TMEDIA cross communications, Doris Teitge-Seifert
10
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
11
  */
12
  -->
13
  <layout version="0.1.0">
app/design/frontend/default/default/template/noregion/checkout/onepage/billing.phtml CHANGED
@@ -4,7 +4,7 @@
4
  * @package Mxperts_NoRegion
5
  * @authors TMEDIA cross communications <info@tmedia.de>, Johannes Teitge <teitge@tmedia.de>, Igor Jankovic <jankovic@tmedia.de>, Daniel Sasse <info@golox-web.de>
6
  * @developer Daniel Sasse <info@golox-web.de, http://www.golox-web.de/>
7
- * @version 0.1.5
8
  * @copyright TMEDIA cross communications, Doris Teitge-Seifert
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
4
  * @package Mxperts_NoRegion
5
  * @authors TMEDIA cross communications <info@tmedia.de>, Johannes Teitge <teitge@tmedia.de>, Igor Jankovic <jankovic@tmedia.de>, Daniel Sasse <info@golox-web.de>
6
  * @developer Daniel Sasse <info@golox-web.de, http://www.golox-web.de/>
7
+ * @version 0.1.6
8
  * @copyright TMEDIA cross communications, Doris Teitge-Seifert
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
app/design/frontend/default/default/template/noregion/checkout/onepage/shipping.phtml CHANGED
@@ -4,7 +4,7 @@
4
  * @package Mxperts_NoRegion
5
  * @authors TMEDIA cross communications <info@tmedia.de>, Johannes Teitge <teitge@tmedia.de>, Igor Jankovic <jankovic@tmedia.de>, Daniel Sasse <info@golox-web.de>
6
  * @developer Daniel Sasse <info@golox-web.de, http://www.golox-web.de/>
7
- * @version 0.1.5
8
  * @copyright TMEDIA cross communications, Doris Teitge-Seifert
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
4
  * @package Mxperts_NoRegion
5
  * @authors TMEDIA cross communications <info@tmedia.de>, Johannes Teitge <teitge@tmedia.de>, Igor Jankovic <jankovic@tmedia.de>, Daniel Sasse <info@golox-web.de>
6
  * @developer Daniel Sasse <info@golox-web.de, http://www.golox-web.de/>
7
+ * @version 0.1.6
8
  * @copyright TMEDIA cross communications, Doris Teitge-Seifert
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
app/design/frontend/default/default/template/noregion/customer/address/edit.phtml CHANGED
@@ -4,7 +4,7 @@
4
  * @package Mxperts_NoRegion
5
  * @authors TMEDIA cross communications <info@tmedia.de>, Johannes Teitge <teitge@tmedia.de>, Igor Jankovic <jankovic@tmedia.de>, Daniel Sasse <info@golox-web.de>
6
  * @developer Daniel Sasse <info@golox-web.de, http://www.golox-web.de/>
7
- * @version 0.1.5
8
  * @copyright TMEDIA cross communications, Doris Teitge-Seifert
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
4
  * @package Mxperts_NoRegion
5
  * @authors TMEDIA cross communications <info@tmedia.de>, Johannes Teitge <teitge@tmedia.de>, Igor Jankovic <jankovic@tmedia.de>, Daniel Sasse <info@golox-web.de>
6
  * @developer Daniel Sasse <info@golox-web.de, http://www.golox-web.de/>
7
+ * @version 0.1.6
8
  * @copyright TMEDIA cross communications, Doris Teitge-Seifert
9
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10
  */
package.xml CHANGED
@@ -1,24 +1,24 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Mxperts_NoRegion</name>
4
- <version>0.1.5</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">OSL</license>
7
  <channel>community</channel>
8
  <extends/>
9
- <summary>Hide "State / Province" in the Store-Frontend &amp; Backend.</summary>
10
  <description>EN_US
11
- Hide "State / Province" in the Store-Frontend &amp; Backend. The Customer have no possibility to enter or edit "State / Province" statements in the checkout shipping &amp; billing steps. Also this field is missing in the Customer Accound and in the multishipping chekout process.
12
 
13
  The Module is designed for the issues on the German Market - if you want more infos about it in english, please contact us.
14
 
15
  DE_AT_CH
16
- Versteckt das Feld "Bundesland / Kanton" im Shop-Frontend + Backend. Der Kunde hat keine M&#xF6;glichkeit dieses Feld im Checkout, Multishipping Checkout und im Benutzerkonto zu sehen oder entsprechende Daten zu editieren. Des Weiteren wird die Anordnung der Felder wo sonst "Bundesland" zur Auswahl steht dahingehend ver&#xE4;ndert, dass die Reihenfolge wie folgt aussieht.</description>
17
  <notes>none / keine</notes>
18
  <authors><author><name>Johannes Teitge</name><user>auto-converted</user><email>teitge@tmedia.de</email></author><author><name>Daniel Sasse</name><user>auto-converted</user><email>info@golox-web.de</email></author></authors>
19
- <date>2010-04-13</date>
20
- <time>13:00:57</time>
21
- <contents><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="noregion.xml" hash="65dc4f00e1f734dff13a76071d6df3b6"/></dir><dir name="template"><dir name="noregion"><dir name="checkout"><dir name="onepage"><file name="billing.phtml" hash="3d04abbb4d088f78f9f3aec7d80f7b37"/><file name="shipping.phtml" hash="5ce7305556c69e9d01253b33a76dffee"/></dir></dir><dir name="customer"><dir name="address"><file name="edit.phtml" hash="a0a7103bc6bd26d367c2846c3870008e"/></dir></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Mxperts_NoRegion.xml" hash="f9f52307b6775dc2182f844cb4acebd2"/></dir></target><target name="magelocal"><dir name="Mxperts"><dir name="NoRegion"><dir name="Block"><dir name="Customer"><dir name="Edit"><dir name="Tab"><file name="Addresses.php" hash="54b2af8e1988a4249b75f1659d787d5f"/></dir></dir><file name="Grid.php" hash="69560a87177d06d98cdc07dc03face30"/></dir></dir><dir name="etc"><file name="config.xml" hash="18d477358e52de4da6bf79d658f1233d"/><file name="system.xml" hash="a6dd1f35be8aa4f54df45aa110de99f0"/></dir><dir name="Helper"><file name="Data.php" hash="1e8508975fac9f70e1e52059d8c63843"/></dir><dir name="Model"><dir name="Quote"><file name="Address.php" hash="5ba933fe2884cc6ce3f5bd325ef9a6aa"/></dir><file name="Address.php" hash="e71f56efb410c3ab8dd9e9053a658097"/></dir></dir></dir></target></contents>
22
  <compatible/>
23
  <dependencies/>
24
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Mxperts_NoRegion</name>
4
+ <version>0.1.6</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">OSL</license>
7
  <channel>community</channel>
8
  <extends/>
9
+ <summary>Hide &amp; State / Province in the Store-Frontend &amp; Backend.</summary>
10
  <description>EN_US
11
+ Hide &amp; State / Province in the Store-Frontend &amp; Backend. The Customer have no possibility to enter or edit &amp; State / Province statements in the checkout shipping and in the billing steps. Also this field is missing in the Customer Accound and in the multishipping chekout process.
12
 
13
  The Module is designed for the issues on the German Market - if you want more infos about it in english, please contact us.
14
 
15
  DE_AT_CH
16
+ Versteckt das Feld Bundesland / Kanton im Shop-Frontend + Backend. Der Kunde hat keine M&#xF6;glichkeit dieses Feld im Checkout, Multishipping Checkout und im Benutzerkonto zu sehen oder entsprechende Daten zu editieren.</description>
17
  <notes>none / keine</notes>
18
  <authors><author><name>Johannes Teitge</name><user>auto-converted</user><email>teitge@tmedia.de</email></author><author><name>Daniel Sasse</name><user>auto-converted</user><email>info@golox-web.de</email></author></authors>
19
+ <date>2010-09-20</date>
20
+ <time>12:36:57</time>
21
+ <contents><target name="mageetc"><dir name="modules"><file name="Mxperts_NoRegion.xml" hash="f9f52307b6775dc2182f844cb4acebd2"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="noregion.xml" hash="31f7f8f1a31adde44fcb8936acba3d9f"/></dir><dir name="template"><dir name="noregion"><dir name="checkout"><dir name="onepage"><file name="billing.phtml" hash="27bd5aef2e7bc8bee3d187204e81fa2c"/><file name="shipping.phtml" hash="0c79b09f7a3827da79dcfd6cabf92412"/></dir></dir><dir name="customer"><dir name="address"><file name="edit.phtml" hash="82aa1ba761e4463202bf1f98c3c17372"/></dir></dir></dir></dir></dir></dir></dir></target><target name="magelocal"><dir name="Mage"><dir name="Adminhtml"><dir name="Block"><dir name="Sales"><dir name="Order"><dir name="Create"><dir name="Form"><file name="Address.php" hash="c21368058fcf4b547a2673396abbabb9"/></dir></dir></dir></dir></dir></dir></dir><dir name="Mxperts"><dir name="NoRegion"><dir name="Block"><dir name="Customer"><file name="Grid.php" hash="8e34df7f4b4e9aaaf161761474e03749"/><dir name="Edit"><dir name="Tab"><file name="Addresses.php" hash="09a5f3b9c7ed5a9da7554b565d3fbe31"/></dir></dir></dir></dir><dir name="etc"><file name="config.xml" hash="5b378f22027cac904b82c544a706a46f"/><file name="system.xml" hash="78ae29bb65ca959b289a8e781c271c61"/></dir><dir name="Helper"><file name="Data.php" hash="a2a0710fa7c46431f3124e0f9109db80"/></dir><dir name="Model"><file name="Address.php" hash="ba2dd8954909818964380254c7acfd84"/><dir name="Quote"><file name="Address.php" hash="ba0c930b07a9d90c192975f3bb81e89f"/></dir></dir></dir></dir></target></contents>
22
  <compatible/>
23
  <dependencies/>
24
  </package>