Version Notes
keine / none
Download this release
Release Info
Developer | Magento Core Team |
Extension | Mxperts_NoRegion |
Version | 1.1.1 |
Comparing to | |
See all releases |
Code changes from version 1.1.0 to 1.1.1
- app/code/local/Mxperts/NoRegion/Block/Customer/Edit/Renderer/Region.php +55 -0
- app/code/local/Mxperts/NoRegion/Block/Customer/Edit/Tab/Addresses.php +1 -1
- app/code/local/Mxperts/NoRegion/Block/Customer/Grid.php +1 -1
- app/code/local/Mxperts/NoRegion/Helper/Data.php +1 -1
- app/code/local/Mxperts/NoRegion/Model/Address.php +1 -1
- app/code/local/Mxperts/NoRegion/Model/Quote/Address.php +1 -1
- app/code/local/Mxperts/NoRegion/etc/config.xml +6 -3
- app/code/local/Mxperts/NoRegion/etc/system.xml +1 -1
- app/design/frontend/default/default/layout/noregion.xml +1 -1
- app/design/frontend/default/default/template/developertoolbar/toolbar.phtml +92 -0
- app/design/frontend/default/default/template/noregion/checkout/onepage/billing.phtml +1 -1
- app/design/frontend/default/default/template/noregion/checkout/onepage/shipping.phtml +1 -1
- app/design/frontend/default/default/template/noregion/customer/address/edit.phtml +1 -1
- package.xml +5 -5
app/code/local/Mxperts/NoRegion/Block/Customer/Edit/Renderer/Region.php
ADDED
@@ -0,0 +1,55 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* @category Mxperts
|
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 1.1.1
|
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 |
+
/**
|
13 |
+
* Customer address region field renderer
|
14 |
+
*
|
15 |
+
*/
|
16 |
+
class Mxperts_NoRegion_Block_Customer_Edit_Renderer_Region extends Mage_Adminhtml_Block_Customer_Edit_Renderer_Region
|
17 |
+
{
|
18 |
+
/**
|
19 |
+
* Output the region element and javasctipt that makes it dependent from country element
|
20 |
+
*
|
21 |
+
* @param Varien_Data_Form_Element_Abstract $element
|
22 |
+
* @return string
|
23 |
+
*/
|
24 |
+
public function render(Varien_Data_Form_Element_Abstract $element)
|
25 |
+
{
|
26 |
+
if ($country = $element->getForm()->getElement('country_id')) {
|
27 |
+
$countryId = $country->getValue();
|
28 |
+
}
|
29 |
+
else {
|
30 |
+
return $element->getDefaultHtml();
|
31 |
+
}
|
32 |
+
|
33 |
+
// Don't Display the select or text field on the order creation page
|
34 |
+
|
35 |
+
// $regionId = $element->getForm()->getElement('region_id')->getValue();
|
36 |
+
|
37 |
+
// $html = '<tr>';
|
38 |
+
// $element->setClass('input-text');
|
39 |
+
// $html.= '<td class="label">'.$element->getLabelHtml().'</td><td class="value">';
|
40 |
+
// $html.= $element->getElementHtml();
|
41 |
+
|
42 |
+
// $selectName = str_replace('region', 'region_id', $element->getName());
|
43 |
+
// $selectId = $element->getHtmlId().'_id';
|
44 |
+
// $html.= '<select id="'.$selectId.'" name="'.$selectName.'" class="select required-entry" style="display:none">';
|
45 |
+
// $html.= '<option value="">'.Mage::helper('customer')->__('Please select').'</option>';
|
46 |
+
// $html.= '</select>';
|
47 |
+
|
48 |
+
// $html.= '<script type="text/javascript">'."\n";
|
49 |
+
// $html.= 'new regionUpdater("'.$country->getHtmlId().'", "'.$element->getHtmlId().'", "'.$selectId.'", '.$this->helper('directory')->getRegionJson().');'."\n";
|
50 |
+
// $html.= '</script>'."\n";
|
51 |
+
|
52 |
+
// $html.= '</td></tr>'."\n";
|
53 |
+
// return $html;
|
54 |
+
}
|
55 |
+
}
|
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 1.1.
|
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 1.1.1
|
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 1.1.
|
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 1.1.1
|
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 1.1.
|
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 1.1.1
|
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 1.1.
|
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 1.1.1
|
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 1.1.
|
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 1.1.1
|
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 1.1.
|
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>
|
16 |
<depends>
|
17 |
<Mage_Adminhtml />
|
18 |
<Mage_Customer />
|
@@ -30,7 +30,10 @@
|
|
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 1.1.1
|
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>1.1.1</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 |
+
<rewrite>
|
35 |
+
<customer_edit_renderer_region>Mxperts_NoRegion_Block_Customer_Edit_Renderer_Region</customer_edit_renderer_region>
|
36 |
+
</rewrite>
|
37 |
</adminhtml>
|
38 |
</blocks>
|
39 |
|
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 1.1.
|
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 |
*/
|
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 1.1.1
|
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 |
*/
|
app/design/frontend/default/default/layout/noregion.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 1.1.
|
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 |
*/
|
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 1.1.1
|
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 |
*/
|
app/design/frontend/default/default/template/developertoolbar/toolbar.phtml
ADDED
@@ -0,0 +1,92 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php if(Mage::getStoreConfig('dev/developertoolbar/enabled')): ?>
|
2 |
+
<style>
|
3 |
+
.developertoolbar {
|
4 |
+
position: fixed;
|
5 |
+
left: 0px;
|
6 |
+
bottom: 0px;
|
7 |
+
width: 100%;
|
8 |
+
text-align: center;
|
9 |
+
background: #0A263C;
|
10 |
+
border-top: 1px solid #415966;
|
11 |
+
z-index: 10000;
|
12 |
+
}
|
13 |
+
.developertoolbar a {
|
14 |
+
color: #FF822F;
|
15 |
+
font-weight:bold;
|
16 |
+
font-size:11px;
|
17 |
+
text-decoration: none;
|
18 |
+
padding-left: 8px;
|
19 |
+
padding-right: 8px;
|
20 |
+
}
|
21 |
+
|
22 |
+
.developertoolbar a:hover {
|
23 |
+
color: #A7C6DD;
|
24 |
+
}
|
25 |
+
|
26 |
+
.developertoolbar .bar_name {
|
27 |
+
color: #D96708;
|
28 |
+
font-size: 10px;
|
29 |
+
font-weight:bold;
|
30 |
+
float: left;
|
31 |
+
cursor:pointer;
|
32 |
+
padding-left: 3px;
|
33 |
+
}
|
34 |
+
|
35 |
+
.developertoolbar .hide_me {
|
36 |
+
color: #D96708;
|
37 |
+
font-size: 9px;
|
38 |
+
font-weight:bold;
|
39 |
+
padding-right: 3px;
|
40 |
+
}
|
41 |
+
|
42 |
+
.developertoolbar .seperate {
|
43 |
+
width: 1px;
|
44 |
+
border-right: 1px solid #415966;
|
45 |
+
}
|
46 |
+
|
47 |
+
.developertoolbar .disabled {
|
48 |
+
color: #666;
|
49 |
+
}
|
50 |
+
</style>
|
51 |
+
|
52 |
+
<script language="javascript">
|
53 |
+
function hide_developer_toolbar(){
|
54 |
+
if (document.getElementById('bar_content').style.display == 'none') {
|
55 |
+
document.getElementById('bar_content').style.display = "inline";
|
56 |
+
document.getElementById('developertoolbar').style.width = "100%";
|
57 |
+
} else {
|
58 |
+
document.getElementById('bar_content').style.display = "none";
|
59 |
+
document.getElementById('developertoolbar').style.width = "100px";
|
60 |
+
}
|
61 |
+
}
|
62 |
+
</script>
|
63 |
+
<div class="developertoolbar" id="developertoolbar">
|
64 |
+
<a href="" onclick="hide_developer_toolbar(); return false;"><span class="bar_name">Developer Toolbar</span></a>
|
65 |
+
|
66 |
+
|
67 |
+
<span id="bar_content">
|
68 |
+
<a <?php if (Mage::getStoreConfig('dev/debug/template_hints') != '1') echo ' class="disabled "'; ?> href="<?php echo $this->getUrl('developertoolbar/index/hints/enabled/'.(Mage::getStoreConfig('dev/debug/template_hints')!='1'?1:0).'/type/front') ?>">Frontend Hints</a>
|
69 |
+
|
70 |
+
<span class="seperate"></span>
|
71 |
+
<a <?php if (Mage::getStoreConfig('dev/debug/template_hints', 0) != '1') echo ' class="disabled "'; ?> href="<?php echo $this->getUrl('developertoolbar/index/hints/enabled/'.(Mage::getStoreConfig('dev/debug/template_hints', 0)!='1'?1:0).'/type/back') ?>">Backend Hints</a>
|
72 |
+
|
73 |
+
<span class="seperate"></span>
|
74 |
+
<a <?php if (Mage::getStoreConfig('dev/log/active') != '1') echo ' class="disabled "'; ?> href="<?php echo $this->getUrl('developertoolbar/index/log/enabled/'.(Mage::getStoreConfig('dev/log/active')!='1'?1:0)) ?>">Logs</a>
|
75 |
+
|
76 |
+
<span class="seperate"></span>
|
77 |
+
<a <?php if (Mage::getStoreConfig('dev/js/merge_files') != '1') echo ' class="disabled "'; ?> href="<?php echo $this->getUrl('developertoolbar/index/js/enabled/'.(Mage::getStoreConfig('dev/js/merge_files')!='1'?1:0)) ?>">Merge JS</a>
|
78 |
+
|
79 |
+
<span class="seperate"></span>
|
80 |
+
<a <?php if (Mage::getStoreConfig('web/url/use_store') != '1') echo ' class="disabled "'; ?> href="<?php echo $this->getUrl('developertoolbar/index/url/enabled/'.(Mage::getStoreConfig('web/url/use_store')!='1'?1:0)) ?>">Store Code in Urls</a>
|
81 |
+
|
82 |
+
<span class="seperate"></span>
|
83 |
+
<a <?php if (Mage::getStoreConfig('web/seo/use_rewrites') != '1') echo ' class="disabled "'; ?> href="<?php echo $this->getUrl('developertoolbar/index/seo/enabled/'.(Mage::getStoreConfig('web/seo/use_rewrites')!='1'?1:0)) ?>">SEO Rewrites</a>
|
84 |
+
|
85 |
+
<span class="seperate"></span>
|
86 |
+
<a <?php if (Mage::getStoreConfig('dev/translate_inline/active') != '1') echo ' class="disabled "'; ?> href="<?php echo $this->getUrl('developertoolbar/index/translate/enabled/'.(Mage::getStoreConfig('dev/translate_inline/active')!='1'?1:0)) ?>">Translate Inline</a>
|
87 |
+
|
88 |
+
<span class="seperate"></span>
|
89 |
+
<a style="color:#FF0000;" href="<?php echo $this->getUrl('developertoolbar/index/cache/') ?>">Clean & Disable All Cache</a>
|
90 |
+
</span>
|
91 |
+
</div>
|
92 |
+
<?php endif; ?>
|
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 1.1.
|
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 1.1.1
|
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 1.1.
|
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 1.1.1
|
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 1.1.
|
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 1.1.1
|
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,12 +1,12 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Mxperts_NoRegion</name>
|
4 |
-
<version>1.1.
|
5 |
<stability>stable</stability>
|
6 |
<license>OSL</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
-
<summary>Hide State / Province in the Store-Frontend
|
10 |
<description>EN_US
|
11 |
Hide State / Province in the Store-Frontend & Backend. The Customer have no possibility to enter or edit 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 |

|
@@ -16,9 +16,9 @@ DE_AT_CH
|
|
16 |
Versteckt das Feld Bundesland / Kanton im Shop-Frontend + Backend. Der Kunde hat keine Möglichkeit dieses Feld im Checkout, Multishipping Checkout und im Benutzerkonto zu sehen oder entsprechende Daten zu editieren.</description>
|
17 |
<notes>keine / none</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>2011-03-
|
20 |
-
<time>
|
21 |
-
<contents><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="
|
22 |
<compatible/>
|
23 |
<dependencies/>
|
24 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Mxperts_NoRegion</name>
|
4 |
+
<version>1.1.1</version>
|
5 |
<stability>stable</stability>
|
6 |
<license>OSL</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
+
<summary>Hide State / Province in the Store-Frontend and Backend.</summary>
|
10 |
<description>EN_US
|
11 |
Hide State / Province in the Store-Frontend & Backend. The Customer have no possibility to enter or edit 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 |

|
16 |
Versteckt das Feld Bundesland / Kanton im Shop-Frontend + Backend. Der Kunde hat keine Möglichkeit dieses Feld im Checkout, Multishipping Checkout und im Benutzerkonto zu sehen oder entsprechende Daten zu editieren.</description>
|
17 |
<notes>keine / none</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>2011-03-31</date>
|
20 |
+
<time>13:37:42</time>
|
21 |
+
<contents><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="Renderer"><file name="Region.php" hash="4ec39ddf5031ac86e6fd1dd8f1379ebb"/></dir><dir name="Tab"><file name="Addresses.php" hash="73b6b04fa1640625eb4695831f9702b0"/></dir></dir><file name="Grid.php" hash="a36cf158efa60468b83a831f03603663"/></dir></dir><dir name="Helper"><file name="Data.php" hash="1b4dbdde93c0229ddcd552db22c0d7d4"/></dir><dir name="Model"><dir name="Quote"><file name="Address.php" hash="1d8de7c1246acb5d6f9471fb5a1238b4"/></dir><file name="Address.php" hash="a780dd1e06c535920f205d32958df97b"/></dir><dir name="etc"><file name="config.xml" hash="615a4ab04772185e5372f405ced91ce4"/><file name="system.xml" hash="57ea274a0abded0125dd5d59dd9d3b81"/></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="noregion.xml" hash="4b5810380d13d034e034cce55582695a"/></dir><dir name="template"><dir name="developertoolbar"><file name="toolbar.phtml" hash="28bb1b032cc255e17beb0cd6c1cc79f6"/></dir><dir name="noregion"><dir name="checkout"><dir name="onepage"><file name="billing.phtml" hash="77cab19a2936949296db9d23d85e557d"/><file name="shipping.phtml" hash="38eeba0c97dc4c2c9d95fa64791d642a"/></dir></dir><dir name="customer"><dir name="address"><file name="edit.phtml" hash="197f164bb288556c603631dd82a38c44"/></dir></dir></dir></dir></dir></dir></dir></target></contents>
|
22 |
<compatible/>
|
23 |
<dependencies/>
|
24 |
</package>
|