sitewards_disabledproducts - Version 1.0.1

Version Notes

FIrst release of the extension.

Download this release

Release Info

Developer Sitewards Magento Team
Extension sitewards_disabledproducts
Version 1.0.1
Comparing to
See all releases


Code changes from version 1.0.0 to 1.0.1

app/code/community/Sitewards/DisabledProducts/README.md ADDED
@@ -0,0 +1,119 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ DisabledProducts
2
+ ===============
3
+
4
+ Magento extension to disable the add-to-cart button on products and to display a static cms block instead.
5
+
6
+ Customization
7
+ -------------
8
+
9
+ * You can define the cms block to be displayed instead of the add-to-cart button
10
+ * You can set products as disabled in the products details
11
+
12
+ Installation instructions
13
+ -------------------------
14
+
15
+ 1. Copy all files in the root of Magento directory.
16
+ 2. Manually adjust following files by replacing all blocks with "-" by blocks with "+"
17
+ This is required, because the standard magento theme doesn't always use blocks for the add-to-cart button, but contains it directly in other template files
18
+
19
+ app\design\frontend\base\default\template\catalog\product\list.phtml
20
+ line 60 - 64
21
+ - <?php if($_product->isSaleable()): ?>
22
+ - <p><button type="button" title="<?php echo $this->__('Add to Cart') ?>" class="button btn-cart" onclick="setLocation('<?php echo $this->getAddToCartUrl($_product) ?>')"><span><span><?php echo $this->__('Add to Cart') ?></span></span></button></p>
23
+ - <?php else: ?>
24
+ - <p class="availability out-of-stock"><span><?php echo $this->__('Out of stock') ?></span></p>
25
+ - <?php endif; ?>
26
+ + <?php if (!Mage::helper('sitewards_disabledproducts')->isProductDisabled($_product)): ?>
27
+ + <?php if($_product->isSaleable()): ?>
28
+ + <p><button type="button" title="<?php echo $this->__('Add to Cart') ?>" class="button btn-cart" onclick="setLocation('<?php echo $this->getAddToCartUrl($_product) ?>')"><span><span><?php echo $this->__('Add to Cart') ?></span></span></button></p>
29
+ + <?php else: ?>
30
+ + <p class="availability out-of-stock"><span><?php echo $this->__('Out of stock') ?></span></p>
31
+ + <?php endif; ?>
32
+ + <?php else: ?>
33
+ + <?php
34
+ + $sBlockId = Mage::helper('sitewards_disabledproducts')->getDisabledProductsBlock();
35
+ + echo $this->getLayout()->createBlock('cms/block')->setBlockId($sBlockId)->toHtml();
36
+ + ?>
37
+ + <?php endif; ?>
38
+
39
+ app\design\frontend\base\default\template\catalog\product\compare\list.phtml
40
+ line 67-71
41
+ - <?php if($_item->isSaleable()): ?>
42
+ - <p><button type="button" title="<?php echo $this->__('Add to Cart') ?>" class="button btn-cart" onclick="setPLocation('<?php echo $this->helper('catalog/product_compare')->getAddToCartUrl($_item) ?>', true)"><span><span><?php echo $this->__('Add to Cart') ?></span></span></button></p>
43
+ - <?php else: ?>
44
+ - <p class="availability out-of-stock"><span><?php echo $this->__('Out of stock') ?></span></p>
45
+ - <?php endif; ?>
46
+ + <?php if (!Mage::helper('sitewards_disabledproducts')->isProductDisabled($_item)): ?>
47
+ + <?php if($_item->isSaleable()): ?>
48
+ + <p><button type="button" title="<?php echo $this->__('Add to Cart') ?>" class="button btn-cart" onclick="setPLocation('<?php echo $this->helper('catalog/product_compare')->getAddToCartUrl($_item) ?>', true)"><span><span><?php echo $this->__('Add to Cart') ?></span></span></button></p>
49
+ + <?php else: ?>
50
+ + <p class="availability out-of-stock"><span><?php echo $this->__('Out of stock') ?></span></p>
51
+ + <?php endif; ?>
52
+ + <?php else: ?>
53
+ + <?php
54
+ + $sBlockId = Mage::helper('sitewards_disabledproducts')->getDisabledProductsBlock();
55
+ + echo $this->getLayout()->createBlock('cms/block')->setBlockId($sBlockId)->toHtml();
56
+ + ?>
57
+ + <?php endif; ?>
58
+
59
+ app\design\frontend\base\default\template\catalog\product\compare\list.phtml
60
+ line 127-131
61
+ - <?php if($_item->isSaleable()): ?>
62
+ - <p><button type="button" title="<?php echo $this->__('Add to Cart') ?>" class="button btn-cart" onclick="setPLocation('<?php echo $this->helper('catalog/product_compare')->getAddToCartUrl($_item) ?>', true)"><span><span><?php echo $this->__('Add to Cart') ?></span></span></button></p>
63
+ - <?php else: ?>
64
+ - <p class="availability out-of-stock"><span><?php echo $this->__('Out of stock') ?></span></p>
65
+ - <?php endif; ?>
66
+ + <?php if (!Mage::helper('sitewards_disabledproducts')->isProductDisabled($_item)): ?>
67
+ + <?php if($_item->isSaleable()): ?>
68
+ + <p><button type="button" title="<?php echo $this->__('Add to Cart') ?>" class="button btn-cart" onclick="setPLocation('<?php echo $this->helper('catalog/product_compare')->getAddToCartUrl($_item) ?>', true)"><span><span><?php echo $this->__('Add to Cart') ?></span></span></button></p>
69
+ + <?php else: ?>
70
+ + <p class="availability out-of-stock"><span><?php echo $this->__('Out of stock') ?></span></p>
71
+ + <?php endif; ?>
72
+ + <?php else: ?>
73
+ + <?php
74
+ + $sBlockId = Mage::helper('sitewards_disabledproducts')->getDisabledProductsBlock();
75
+ + echo $this->getLayout()->createBlock('cms/block')->setBlockId($sBlockId)->toHtml();
76
+ + ?>
77
+ + <?php endif; ?>
78
+
79
+ app\design\frontend\base\default\template\wishlist\item\column\cart.phtml
80
+ line 34-47
81
+ - <div class="add-to-cart-alt">
82
+ - <?php if ($item->canHaveQty() && $item->getProduct()->isVisibleInSiteVisibility()): ?>
83
+ - <input type="text" class="input-text qty validate-not-negative-number" name="qty[<?php echo $item->getId() ?>]" value="<?php echo $this->getAddToCartQty($item) * 1 ?>" />
84
+ - <?php endif; ?>
85
+ - <?php if ($product->isSaleable()): ?>
86
+ - <button type="button" title="<?php echo $this->__('Add to Cart') ?>" onclick="addWItemToCart(<?php echo $item->getId()?>);" class="button btn-cart"><span><span><?php echo $this->__('Add to Cart') ?></span></span></button>
87
+ - <?php else: ?>
88
+ - <?php if ($product->getIsSalable()): ?>
89
+ - <p class="availability in-stock"><span><?php echo $this->__('In stock') ?></span></p>
90
+ - <?php else: ?>
91
+ - <p class="availability out-of-stock"><span><?php echo $this->__('Out of stock') ?></span></p>
92
+ - <?php endif; ?>
93
+ - <?php endif; ?>
94
+ - </div>
95
+ + <?php if (!Mage::helper('sitewards_disabledproducts')->isProductDisabled($product)): ?>
96
+ + <div class="add-to-cart-alt">
97
+ + <?php if ($item->canHaveQty() && $item->getProduct()->isVisibleInSiteVisibility()): ?>
98
+ + <input type="text" class="input-text qty validate-not-negative-number" name="qty[<?php echo $item->getId() ?>]" value="<?php echo $this->getAddToCartQty($item) * 1 ?>" />
99
+ + <?php endif; ?>
100
+ + <?php if ($product->isSaleable()): ?>
101
+ + <button type="button" title="<?php echo $this->__('Add to Cart') ?>" onclick="addWItemToCart(<?php echo $item->getId()?>);" class="button btn-cart"><span><span><?php echo $this->__('Add to Cart') ?></span></span></button>
102
+ + <?php else: ?>
103
+ + <?php if ($product->getIsSalable()): ?>
104
+ + <p class="availability in-stock"><span><?php echo $this->__('In stock') ?></span></p>
105
+ + <?php else: ?>
106
+ + <p class="availability out-of-stock"><span><?php echo $this->__('Out of stock') ?></span></p>
107
+ + <?php endif; ?>
108
+ + <?php endif; ?>
109
+ + </div>
110
+ + <?php else: ?>
111
+ + <div class="add-to-cart-alt">
112
+ + <?php
113
+ + $sBlockId = Mage::helper('sitewards_disabledproducts')->getDisabledProductsBlock();
114
+ + echo $this->getLayout()->createBlock('cms/block')->setBlockId($sBlockId)->toHtml();
115
+ + ?>
116
+ + </div>
117
+ + <?php endif; ?>
118
+
119
+ contact: http://www.sitewards.com
app/code/community/Sitewards/DisabledProducts/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <Sitewards_DisabledProducts>
5
- <version>0.1.0</version>
6
  </Sitewards_DisabledProducts>
7
  </modules>
8
  <global>
2
  <config>
3
  <modules>
4
  <Sitewards_DisabledProducts>
5
+ <version>1.0.1</version>
6
  </Sitewards_DisabledProducts>
7
  </modules>
8
  <global>
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>sitewards_disabledproducts</name>
4
- <version>1.0.0</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.opensource.org/licenses/gpl-license.php">GPL</license>
7
  <channel>community</channel>
@@ -18,116 +18,12 @@ Customization&#xD;
18
  Installation instructions&#xD;
19
  -------------------------&#xD;
20
  &#xD;
21
- 1. Copy all files in the root of Magento directory.&#xD;
22
- 2. Manually adjust following files by replacing all blocks with "-" by blocks with "+"&#xD;
23
- This is required, because the standard magento theme doesn't always use blocks for the add-to-cart button, but contains it directly in other template files&#xD;
24
- &#xD;
25
- app\design\frontend\base\default\template\catalog\product\list.phtml&#xD;
26
- line 60 - 64&#xD;
27
- - &lt;?php if($_product-&gt;isSaleable()): ?&gt;&#xD;
28
- - &lt;p&gt;&lt;button type="button" title="&lt;?php echo $this-&gt;__('Add to Cart') ?&gt;" class="button btn-cart" onclick="setLocation('&lt;?php echo $this-&gt;getAddToCartUrl($_product) ?&gt;')"&gt;&lt;span&gt;&lt;span&gt;&lt;?php echo $this-&gt;__('Add to Cart') ?&gt;&lt;/span&gt;&lt;/span&gt;&lt;/button&gt;&lt;/p&gt;&#xD;
29
- - &lt;?php else: ?&gt;&#xD;
30
- - &lt;p class="availability out-of-stock"&gt;&lt;span&gt;&lt;?php echo $this-&gt;__('Out of stock') ?&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
31
- - &lt;?php endif; ?&gt;&#xD;
32
- + &lt;?php if (!Mage::helper('sitewards_disabledproducts')-&gt;isProductDisabled($_product)): ?&gt;&#xD;
33
- + &lt;?php if($_product-&gt;isSaleable()): ?&gt;&#xD;
34
- + &lt;p&gt;&lt;button type="button" title="&lt;?php echo $this-&gt;__('Add to Cart') ?&gt;" class="button btn-cart" onclick="setLocation('&lt;?php echo $this-&gt;getAddToCartUrl($_product) ?&gt;')"&gt;&lt;span&gt;&lt;span&gt;&lt;?php echo $this-&gt;__('Add to Cart') ?&gt;&lt;/span&gt;&lt;/span&gt;&lt;/button&gt;&lt;/p&gt;&#xD;
35
- + &lt;?php else: ?&gt;&#xD;
36
- + &lt;p class="availability out-of-stock"&gt;&lt;span&gt;&lt;?php echo $this-&gt;__('Out of stock') ?&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
37
- + &lt;?php endif; ?&gt;&#xD;
38
- + &lt;?php else: ?&gt;&#xD;
39
- + &lt;?php&#xD;
40
- + $sBlockId = Mage::helper('sitewards_disabledproducts')-&gt;getDisabledProductsBlock();&#xD;
41
- + echo $this-&gt;getLayout()-&gt;createBlock('cms/block')-&gt;setBlockId($sBlockId)-&gt;toHtml();&#xD;
42
- + ?&gt;&#xD;
43
- + &lt;?php endif; ?&gt;&#xD;
44
- &#xD;
45
- app\design\frontend\base\default\template\catalog\product\compare\list.phtml&#xD;
46
- line 67-71&#xD;
47
- - &lt;?php if($_item-&gt;isSaleable()): ?&gt;&#xD;
48
- - &lt;p&gt;&lt;button type="button" title="&lt;?php echo $this-&gt;__('Add to Cart') ?&gt;" class="button btn-cart" onclick="setPLocation('&lt;?php echo $this-&gt;helper('catalog/product_compare')-&gt;getAddToCartUrl($_item) ?&gt;', true)"&gt;&lt;span&gt;&lt;span&gt;&lt;?php echo $this-&gt;__('Add to Cart') ?&gt;&lt;/span&gt;&lt;/span&gt;&lt;/button&gt;&lt;/p&gt;&#xD;
49
- - &lt;?php else: ?&gt;&#xD;
50
- - &lt;p class="availability out-of-stock"&gt;&lt;span&gt;&lt;?php echo $this-&gt;__('Out of stock') ?&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
51
- - &lt;?php endif; ?&gt;&#xD;
52
- + &lt;?php if (!Mage::helper('sitewards_disabledproducts')-&gt;isProductDisabled($_item)): ?&gt;&#xD;
53
- + &lt;?php if($_item-&gt;isSaleable()): ?&gt;&#xD;
54
- + &lt;p&gt;&lt;button type="button" title="&lt;?php echo $this-&gt;__('Add to Cart') ?&gt;" class="button btn-cart" onclick="setPLocation('&lt;?php echo $this-&gt;helper('catalog/product_compare')-&gt;getAddToCartUrl($_item) ?&gt;', true)"&gt;&lt;span&gt;&lt;span&gt;&lt;?php echo $this-&gt;__('Add to Cart') ?&gt;&lt;/span&gt;&lt;/span&gt;&lt;/button&gt;&lt;/p&gt;&#xD;
55
- + &lt;?php else: ?&gt;&#xD;
56
- + &lt;p class="availability out-of-stock"&gt;&lt;span&gt;&lt;?php echo $this-&gt;__('Out of stock') ?&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
57
- + &lt;?php endif; ?&gt;&#xD;
58
- + &lt;?php else: ?&gt;&#xD;
59
- + &lt;?php&#xD;
60
- + $sBlockId = Mage::helper('sitewards_disabledproducts')-&gt;getDisabledProductsBlock();&#xD;
61
- + echo $this-&gt;getLayout()-&gt;createBlock('cms/block')-&gt;setBlockId($sBlockId)-&gt;toHtml();&#xD;
62
- + ?&gt;&#xD;
63
- + &lt;?php endif; ?&gt;&#xD;
64
- &#xD;
65
- app\design\frontend\base\default\template\catalog\product\compare\list.phtml&#xD;
66
- line 127-131&#xD;
67
- - &lt;?php if($_item-&gt;isSaleable()): ?&gt;&#xD;
68
- - &lt;p&gt;&lt;button type="button" title="&lt;?php echo $this-&gt;__('Add to Cart') ?&gt;" class="button btn-cart" onclick="setPLocation('&lt;?php echo $this-&gt;helper('catalog/product_compare')-&gt;getAddToCartUrl($_item) ?&gt;', true)"&gt;&lt;span&gt;&lt;span&gt;&lt;?php echo $this-&gt;__('Add to Cart') ?&gt;&lt;/span&gt;&lt;/span&gt;&lt;/button&gt;&lt;/p&gt;&#xD;
69
- - &lt;?php else: ?&gt;&#xD;
70
- - &lt;p class="availability out-of-stock"&gt;&lt;span&gt;&lt;?php echo $this-&gt;__('Out of stock') ?&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
71
- - &lt;?php endif; ?&gt;&#xD;
72
- + &lt;?php if (!Mage::helper('sitewards_disabledproducts')-&gt;isProductDisabled($_item)): ?&gt;&#xD;
73
- + &lt;?php if($_item-&gt;isSaleable()): ?&gt;&#xD;
74
- + &lt;p&gt;&lt;button type="button" title="&lt;?php echo $this-&gt;__('Add to Cart') ?&gt;" class="button btn-cart" onclick="setPLocation('&lt;?php echo $this-&gt;helper('catalog/product_compare')-&gt;getAddToCartUrl($_item) ?&gt;', true)"&gt;&lt;span&gt;&lt;span&gt;&lt;?php echo $this-&gt;__('Add to Cart') ?&gt;&lt;/span&gt;&lt;/span&gt;&lt;/button&gt;&lt;/p&gt;&#xD;
75
- + &lt;?php else: ?&gt;&#xD;
76
- + &lt;p class="availability out-of-stock"&gt;&lt;span&gt;&lt;?php echo $this-&gt;__('Out of stock') ?&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
77
- + &lt;?php endif; ?&gt;&#xD;
78
- + &lt;?php else: ?&gt;&#xD;
79
- + &lt;?php&#xD;
80
- + $sBlockId = Mage::helper('sitewards_disabledproducts')-&gt;getDisabledProductsBlock();&#xD;
81
- + echo $this-&gt;getLayout()-&gt;createBlock('cms/block')-&gt;setBlockId($sBlockId)-&gt;toHtml();&#xD;
82
- + ?&gt;&#xD;
83
- + &lt;?php endif; ?&gt;&#xD;
84
- &#xD;
85
- app\design\frontend\base\default\template\wishlist\item\column\cart.phtml&#xD;
86
- line 34-47&#xD;
87
- - &lt;div class="add-to-cart-alt"&gt;&#xD;
88
- - &lt;?php if ($item-&gt;canHaveQty() &amp;&amp; $item-&gt;getProduct()-&gt;isVisibleInSiteVisibility()): ?&gt;&#xD;
89
- - &lt;input type="text" class="input-text qty validate-not-negative-number" name="qty[&lt;?php echo $item-&gt;getId() ?&gt;]" value="&lt;?php echo $this-&gt;getAddToCartQty($item) * 1 ?&gt;" /&gt;&#xD;
90
- - &lt;?php endif; ?&gt;&#xD;
91
- - &lt;?php if ($product-&gt;isSaleable()): ?&gt;&#xD;
92
- - &lt;button type="button" title="&lt;?php echo $this-&gt;__('Add to Cart') ?&gt;" onclick="addWItemToCart(&lt;?php echo $item-&gt;getId()?&gt;);" class="button btn-cart"&gt;&lt;span&gt;&lt;span&gt;&lt;?php echo $this-&gt;__('Add to Cart') ?&gt;&lt;/span&gt;&lt;/span&gt;&lt;/button&gt;&#xD;
93
- - &lt;?php else: ?&gt;&#xD;
94
- - &lt;?php if ($product-&gt;getIsSalable()): ?&gt;&#xD;
95
- - &lt;p class="availability in-stock"&gt;&lt;span&gt;&lt;?php echo $this-&gt;__('In stock') ?&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
96
- - &lt;?php else: ?&gt;&#xD;
97
- - &lt;p class="availability out-of-stock"&gt;&lt;span&gt;&lt;?php echo $this-&gt;__('Out of stock') ?&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
98
- - &lt;?php endif; ?&gt;&#xD;
99
- - &lt;?php endif; ?&gt;&#xD;
100
- - &lt;/div&gt;&#xD;
101
- + &lt;?php if (!Mage::helper('sitewards_disabledproducts')-&gt;isProductDisabled($product)): ?&gt;&#xD;
102
- + &lt;div class="add-to-cart-alt"&gt;&#xD;
103
- + &lt;?php if ($item-&gt;canHaveQty() &amp;&amp; $item-&gt;getProduct()-&gt;isVisibleInSiteVisibility()): ?&gt;&#xD;
104
- + &lt;input type="text" class="input-text qty validate-not-negative-number" name="qty[&lt;?php echo $item-&gt;getId() ?&gt;]" value="&lt;?php echo $this-&gt;getAddToCartQty($item) * 1 ?&gt;" /&gt;&#xD;
105
- + &lt;?php endif; ?&gt;&#xD;
106
- + &lt;?php if ($product-&gt;isSaleable()): ?&gt;&#xD;
107
- + &lt;button type="button" title="&lt;?php echo $this-&gt;__('Add to Cart') ?&gt;" onclick="addWItemToCart(&lt;?php echo $item-&gt;getId()?&gt;);" class="button btn-cart"&gt;&lt;span&gt;&lt;span&gt;&lt;?php echo $this-&gt;__('Add to Cart') ?&gt;&lt;/span&gt;&lt;/span&gt;&lt;/button&gt;&#xD;
108
- + &lt;?php else: ?&gt;&#xD;
109
- + &lt;?php if ($product-&gt;getIsSalable()): ?&gt;&#xD;
110
- + &lt;p class="availability in-stock"&gt;&lt;span&gt;&lt;?php echo $this-&gt;__('In stock') ?&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
111
- + &lt;?php else: ?&gt;&#xD;
112
- + &lt;p class="availability out-of-stock"&gt;&lt;span&gt;&lt;?php echo $this-&gt;__('Out of stock') ?&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
113
- + &lt;?php endif; ?&gt;&#xD;
114
- + &lt;?php endif; ?&gt;&#xD;
115
- + &lt;/div&gt;&#xD;
116
- + &lt;?php else: ?&gt;&#xD;
117
- + &lt;div class="add-to-cart-alt"&gt;&#xD;
118
- + &lt;?php&#xD;
119
- + $sBlockId = Mage::helper('sitewards_disabledproducts')-&gt;getDisabledProductsBlock();&#xD;
120
- + echo $this-&gt;getLayout()-&gt;createBlock('cms/block')-&gt;setBlockId($sBlockId)-&gt;toHtml();&#xD;
121
- + ?&gt;&#xD;
122
- + &lt;/div&gt;&#xD;
123
- + &lt;?php endif; ?&gt;&#xD;
124
- &#xD;
125
- contact: http://www.sitewards.com</description>
126
  <notes>FIrst release of the extension.</notes>
127
  <authors><author><name>Sitewards Magento Team</name><user>sitewards</user><email>magento@sitewards.com</email></author></authors>
128
  <date>2013-02-06</date>
129
- <time>10:22:10</time>
130
- <contents><target name="magecommunity"><dir name="Sitewards"><dir name="DisabledProducts"><dir name="Helper"><file name="Data.php" hash="302491d171637f882ac9f5126a1a95d1"/></dir><dir name="Model"><dir name="Resource"><dir name="Eav"><dir name="Mysql4"><file name="Setup.php" hash="0fe90fe89e042e56f8fe60972d6409e8"/></dir></dir></dir><dir name="System"><dir name="Config"><dir name="Source"><dir name="Cms"><file name="Block.php" hash="af40acf0688f4471be2a0cb1878cc7a4"/></dir></dir></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="d98117511961c714288ded79e3f19769"/><file name="config.xml" hash="201c724b1c4a3242b42ba4b42a531653"/><file name="system.xml" hash="c1379df86a31ee9d570772062f8c81f4"/></dir><dir name="sql"><dir name="sitewards_disabledproducts_setup"><file name="mysql4-install-0.1.0.php" hash="2df441a6f1f7a7be6734c0e9105fda17"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Sitewards_DisabledProducts.xml" hash="700a3b6a5d74b3b66531ca90bfab874c"/></dir></target><target name="magelocale"><dir name="de_DE"><file name="Sitewards_DisabledProducts.csv" hash="6190d8e2ad571e8bdeacde9c0aae9efd"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><dir name="sitewards"><file name="disabledproducts.xml" hash="b47a1dfc4b1bb9b3f2ff1ef4be472eea"/></dir></dir><dir name="template"><dir name="sitewards"><dir name="disabledproducts"><dir name="catalog"><dir name="product"><file name="addtocart.phtml" hash="ff2aa2106d8eff05ae0fb87244eb657d"/></dir></dir></dir></dir></dir></dir></dir></dir></target></contents>
131
  <compatible/>
132
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
133
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>sitewards_disabledproducts</name>
4
+ <version>1.0.1</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.opensource.org/licenses/gpl-license.php">GPL</license>
7
  <channel>community</channel>
18
  Installation instructions&#xD;
19
  -------------------------&#xD;
20
  &#xD;
21
+ For installation instructions please see the README file in the extension folder.</description>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22
  <notes>FIrst release of the extension.</notes>
23
  <authors><author><name>Sitewards Magento Team</name><user>sitewards</user><email>magento@sitewards.com</email></author></authors>
24
  <date>2013-02-06</date>
25
+ <time>10:29:22</time>
26
+ <contents><target name="magecommunity"><dir name="Sitewards"><dir name="DisabledProducts"><dir name="Helper"><file name="Data.php" hash="302491d171637f882ac9f5126a1a95d1"/></dir><dir name="Model"><dir name="Resource"><dir name="Eav"><dir name="Mysql4"><file name="Setup.php" hash="0fe90fe89e042e56f8fe60972d6409e8"/></dir></dir></dir><dir name="System"><dir name="Config"><dir name="Source"><dir name="Cms"><file name="Block.php" hash="af40acf0688f4471be2a0cb1878cc7a4"/></dir></dir></dir></dir></dir><file name="README.md" hash="ecd10352a781f172c77a25e19f222749"/><dir name="etc"><file name="adminhtml.xml" hash="d98117511961c714288ded79e3f19769"/><file name="config.xml" hash="643c64f0bda50e4aae866204c0e4cfca"/><file name="system.xml" hash="c1379df86a31ee9d570772062f8c81f4"/></dir><dir name="sql"><dir name="sitewards_disabledproducts_setup"><file name="mysql4-install-0.1.0.php" hash="2df441a6f1f7a7be6734c0e9105fda17"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Sitewards_DisabledProducts.xml" hash="700a3b6a5d74b3b66531ca90bfab874c"/></dir></target><target name="magelocale"><dir name="de_DE"><file name="Sitewards_DisabledProducts.csv" hash="6190d8e2ad571e8bdeacde9c0aae9efd"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><dir name="sitewards"><file name="disabledproducts.xml" hash="b47a1dfc4b1bb9b3f2ff1ef4be472eea"/></dir></dir><dir name="template"><dir name="sitewards"><dir name="disabledproducts"><dir name="catalog"><dir name="product"><file name="addtocart.phtml" hash="ff2aa2106d8eff05ae0fb87244eb657d"/></dir></dir></dir></dir></dir></dir></dir></dir></target></contents>
27
  <compatible/>
28
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
29
  </package>