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
|
| 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.
|
| 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
|
|
| 18 |
Installation instructions
|
| 19 |
-------------------------
|
| 20 |

|
| 21 |
-
|
| 22 |
-
2. Manually adjust following files by replacing all blocks with "-" by blocks with "+"
|
| 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
|
| 24 |
-

|
| 25 |
-
app\design\frontend\base\default\template\catalog\product\list.phtml
|
| 26 |
-
line 60 - 64
|
| 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 if (!Mage::helper('sitewards_disabledproducts')->isProductDisabled($_product)): ?>
|
| 33 |
-
+ <?php if($_product->isSaleable()): ?>
|
| 34 |
-
+ <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>
|
| 35 |
-
+ <?php else: ?>
|
| 36 |
-
+ <p class="availability out-of-stock"><span><?php echo $this->__('Out of stock') ?></span></p>
|
| 37 |
-
+ <?php endif; ?>
|
| 38 |
-
+ <?php else: ?>
|
| 39 |
-
+ <?php
|
| 40 |
-
+ $sBlockId = Mage::helper('sitewards_disabledproducts')->getDisabledProductsBlock();
|
| 41 |
-
+ echo $this->getLayout()->createBlock('cms/block')->setBlockId($sBlockId)->toHtml();
|
| 42 |
-
+ ?>
|
| 43 |
-
+ <?php endif; ?>
|
| 44 |
-

|
| 45 |
-
app\design\frontend\base\default\template\catalog\product\compare\list.phtml
|
| 46 |
-
line 67-71
|
| 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 if (!Mage::helper('sitewards_disabledproducts')->isProductDisabled($_item)): ?>
|
| 53 |
-
+ <?php if($_item->isSaleable()): ?>
|
| 54 |
-
+ <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>
|
| 55 |
-
+ <?php else: ?>
|
| 56 |
-
+ <p class="availability out-of-stock"><span><?php echo $this->__('Out of stock') ?></span></p>
|
| 57 |
-
+ <?php endif; ?>
|
| 58 |
-
+ <?php else: ?>
|
| 59 |
-
+ <?php
|
| 60 |
-
+ $sBlockId = Mage::helper('sitewards_disabledproducts')->getDisabledProductsBlock();
|
| 61 |
-
+ echo $this->getLayout()->createBlock('cms/block')->setBlockId($sBlockId)->toHtml();
|
| 62 |
-
+ ?>
|
| 63 |
-
+ <?php endif; ?>
|
| 64 |
-

|
| 65 |
-
app\design\frontend\base\default\template\catalog\product\compare\list.phtml
|
| 66 |
-
line 127-131
|
| 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 if (!Mage::helper('sitewards_disabledproducts')->isProductDisabled($_item)): ?>
|
| 73 |
-
+ <?php if($_item->isSaleable()): ?>
|
| 74 |
-
+ <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>
|
| 75 |
-
+ <?php else: ?>
|
| 76 |
-
+ <p class="availability out-of-stock"><span><?php echo $this->__('Out of stock') ?></span></p>
|
| 77 |
-
+ <?php endif; ?>
|
| 78 |
-
+ <?php else: ?>
|
| 79 |
-
+ <?php
|
| 80 |
-
+ $sBlockId = Mage::helper('sitewards_disabledproducts')->getDisabledProductsBlock();
|
| 81 |
-
+ echo $this->getLayout()->createBlock('cms/block')->setBlockId($sBlockId)->toHtml();
|
| 82 |
-
+ ?>
|
| 83 |
-
+ <?php endif; ?>
|
| 84 |
-

|
| 85 |
-
app\design\frontend\base\default\template\wishlist\item\column\cart.phtml
|
| 86 |
-
line 34-47
|
| 87 |
-
- <div class="add-to-cart-alt">
|
| 88 |
-
- <?php if ($item->canHaveQty() && $item->getProduct()->isVisibleInSiteVisibility()): ?>
|
| 89 |
-
- <input type="text" class="input-text qty validate-not-negative-number" name="qty[<?php echo $item->getId() ?>]" value="<?php echo $this->getAddToCartQty($item) * 1 ?>" />
|
| 90 |
-
- <?php endif; ?>
|
| 91 |
-
- <?php if ($product->isSaleable()): ?>
|
| 92 |
-
- <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>
|
| 93 |
-
- <?php else: ?>
|
| 94 |
-
- <?php if ($product->getIsSalable()): ?>
|
| 95 |
-
- <p class="availability in-stock"><span><?php echo $this->__('In stock') ?></span></p>
|
| 96 |
-
- <?php else: ?>
|
| 97 |
-
- <p class="availability out-of-stock"><span><?php echo $this->__('Out of stock') ?></span></p>
|
| 98 |
-
- <?php endif; ?>
|
| 99 |
-
- <?php endif; ?>
|
| 100 |
-
- </div>
|
| 101 |
-
+ <?php if (!Mage::helper('sitewards_disabledproducts')->isProductDisabled($product)): ?>
|
| 102 |
-
+ <div class="add-to-cart-alt">
|
| 103 |
-
+ <?php if ($item->canHaveQty() && $item->getProduct()->isVisibleInSiteVisibility()): ?>
|
| 104 |
-
+ <input type="text" class="input-text qty validate-not-negative-number" name="qty[<?php echo $item->getId() ?>]" value="<?php echo $this->getAddToCartQty($item) * 1 ?>" />
|
| 105 |
-
+ <?php endif; ?>
|
| 106 |
-
+ <?php if ($product->isSaleable()): ?>
|
| 107 |
-
+ <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>
|
| 108 |
-
+ <?php else: ?>
|
| 109 |
-
+ <?php if ($product->getIsSalable()): ?>
|
| 110 |
-
+ <p class="availability in-stock"><span><?php echo $this->__('In stock') ?></span></p>
|
| 111 |
-
+ <?php else: ?>
|
| 112 |
-
+ <p class="availability out-of-stock"><span><?php echo $this->__('Out of stock') ?></span></p>
|
| 113 |
-
+ <?php endif; ?>
|
| 114 |
-
+ <?php endif; ?>
|
| 115 |
-
+ </div>
|
| 116 |
-
+ <?php else: ?>
|
| 117 |
-
+ <div class="add-to-cart-alt">
|
| 118 |
-
+ <?php
|
| 119 |
-
+ $sBlockId = Mage::helper('sitewards_disabledproducts')->getDisabledProductsBlock();
|
| 120 |
-
+ echo $this->getLayout()->createBlock('cms/block')->setBlockId($sBlockId)->toHtml();
|
| 121 |
-
+ ?>
|
| 122 |
-
+ </div>
|
| 123 |
-
+ <?php endif; ?>
|
| 124 |
-

|
| 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
|
| 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="
|
| 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
|
| 19 |
-------------------------
|
| 20 |

|
| 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>
|
