Version Notes
Homepage is the main visual part of any website. It's very important to show some meaningful
Download this release
Release Info
| Developer | Etatvasoft |
| Extension | Etatvasoft_5_In_one_catalog |
| Version | 1.1.3 |
| Comparing to | |
| See all releases | |
Code changes from version 1.1.2 to 1.1.3
- app/code/local/Tatva/Catalogextensions/Block/Newproduct/Home/List.php +0 -35
- app/code/local/Tatva/Catalogextensions/Block/Newproduct/List.php +1 -32
- app/code/local/Tatva/Catalogextensions/etc/config.xml +2 -2
- app/code/local/Tatva/Catalogextensions/etc/system.xml +3 -3
- app/design/frontend/default/default/layout/catalogextensions/catalogextensions.xml +10 -11
- app/design/frontend/default/default/template/catalogextensions/newrecent.phtml +0 -134
- package.xml +4 -4
app/code/local/Tatva/Catalogextensions/Block/Newproduct/Home/List.php
CHANGED
|
@@ -15,9 +15,6 @@ class Tatva_Catalogextensions_Block_Newproduct_Home_List extends Tatva_Catalogex
|
|
| 15 |
|
| 16 |
protected function _getProductCollection()
|
| 17 |
{
|
| 18 |
-
$type = Mage::getStoreConfig('catalogextensions/config4/type');
|
| 19 |
-
if($type == 'Recently Added')
|
| 20 |
-
{
|
| 21 |
parent::__construct();
|
| 22 |
$storeId = Mage::app()->getStore()->getId();
|
| 23 |
$todayDate = Mage::app()->getLocale()->date()->toString(Varien_Date::DATETIME_INTERNAL_FORMAT);
|
|
@@ -41,38 +38,6 @@ class Tatva_Catalogextensions_Block_Newproduct_Home_List extends Tatva_Catalogex
|
|
| 41 |
$this->_productCollection = $products;
|
| 42 |
|
| 43 |
return $this->_productCollection;
|
| 44 |
-
}
|
| 45 |
-
else
|
| 46 |
-
{
|
| 47 |
-
parent::__construct();
|
| 48 |
-
$storeId = Mage::app()->getStore()->getId();
|
| 49 |
-
$todayDate = Mage::app()->getLocale()->date()->toString(Varien_Date::DATETIME_INTERNAL_FORMAT);
|
| 50 |
-
|
| 51 |
-
$products = Mage::getModel('catalog/product')->getCollection()
|
| 52 |
-
->addAttributeToSelect('*')
|
| 53 |
-
->addAttributeToSelect(array('name', 'price', 'small_image'))
|
| 54 |
-
->addStoreFilter($storeId)
|
| 55 |
-
->addAttributeToFilter('news_from_date', array('date' => true, 'to' => $todayDate))
|
| 56 |
-
->addAttributeToFilter('news_to_date', array('or'=> array(
|
| 57 |
-
0 => array('date' => true, 'from' => $todayDate),
|
| 58 |
-
1 => array('is' => new Zend_Db_Expr('null')))
|
| 59 |
-
), 'left')
|
| 60 |
-
->addAttributeToSort('news_from_date', 'desc');
|
| 61 |
-
|
| 62 |
-
if(Mage::getStoreConfig('catalogextensions/config4/max_product'))
|
| 63 |
-
{
|
| 64 |
-
$products->setPageSize(Mage::getStoreConfig('catalogextensions/config4/max_product'));
|
| 65 |
-
}
|
| 66 |
-
|
| 67 |
-
|
| 68 |
-
Mage::getSingleton('catalog/product_status')->addVisibleFilterToCollection($products);
|
| 69 |
-
Mage::getSingleton('catalog/product_visibility')->addVisibleInCatalogFilterToCollection($products);
|
| 70 |
-
Mage::getSingleton('cataloginventory/stock')->addInStockFilterToCollection($products);
|
| 71 |
-
|
| 72 |
-
$this->_productCollection = $products;
|
| 73 |
-
|
| 74 |
-
return $this->_productCollection;
|
| 75 |
-
}
|
| 76 |
}
|
| 77 |
|
| 78 |
function get_prod_count()
|
| 15 |
|
| 16 |
protected function _getProductCollection()
|
| 17 |
{
|
|
|
|
|
|
|
|
|
|
| 18 |
parent::__construct();
|
| 19 |
$storeId = Mage::app()->getStore()->getId();
|
| 20 |
$todayDate = Mage::app()->getLocale()->date()->toString(Varien_Date::DATETIME_INTERNAL_FORMAT);
|
| 38 |
$this->_productCollection = $products;
|
| 39 |
|
| 40 |
return $this->_productCollection;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 41 |
}
|
| 42 |
|
| 43 |
function get_prod_count()
|
app/code/local/Tatva/Catalogextensions/Block/Newproduct/List.php
CHANGED
|
@@ -15,10 +15,7 @@ class Tatva_Catalogextensions_Block_Newproduct_List extends Mage_Catalog_Block_P
|
|
| 15 |
|
| 16 |
protected function _getProductCollection()
|
| 17 |
{
|
| 18 |
-
|
| 19 |
-
if($type == 'Recently Added')
|
| 20 |
-
{
|
| 21 |
-
parent::__construct();
|
| 22 |
|
| 23 |
$products = Mage::getModel('catalog/product')->getCollection()
|
| 24 |
->addAttributeToSort("entity_id","DESC")
|
|
@@ -35,34 +32,6 @@ class Tatva_Catalogextensions_Block_Newproduct_List extends Mage_Catalog_Block_P
|
|
| 35 |
$this->_productCollection = $products;
|
| 36 |
|
| 37 |
return $this->_productCollection;
|
| 38 |
-
}
|
| 39 |
-
else
|
| 40 |
-
{
|
| 41 |
-
parent::__construct();
|
| 42 |
-
$storeId = Mage::app()->getStore()->getId();
|
| 43 |
-
$todayDate = Mage::app()->getLocale()->date()->toString(Varien_Date::DATETIME_INTERNAL_FORMAT);
|
| 44 |
-
|
| 45 |
-
$products = Mage::getModel('catalog/product')->getCollection()
|
| 46 |
-
->addAttributeToSelect('*')
|
| 47 |
-
->addStoreFilter($storeId)
|
| 48 |
-
->addAttributeToFilter('news_from_date', array('date' => true, 'to' => $todayDate))
|
| 49 |
-
->addAttributeToFilter('news_to_date', array('or'=> array(
|
| 50 |
-
0 => array('date' => true, 'from' => $todayDate),
|
| 51 |
-
1 => array('is' => new Zend_Db_Expr('null')))
|
| 52 |
-
), 'left')
|
| 53 |
-
->addAttributeToSort('news_from_date', 'desc')
|
| 54 |
-
->setPageSize($this->get_prod_count())
|
| 55 |
-
->addAttributeToSort($this->get_order(), $this->get_order_dir())
|
| 56 |
-
->setCurPage($this->get_cur_page());
|
| 57 |
-
|
| 58 |
-
Mage::getSingleton('catalog/product_status')->addVisibleFilterToCollection($products);
|
| 59 |
-
Mage::getSingleton('catalog/product_visibility')->addVisibleInCatalogFilterToCollection($products);
|
| 60 |
-
Mage::getSingleton('cataloginventory/stock')->addInStockFilterToCollection($products);
|
| 61 |
-
|
| 62 |
-
$this->_productCollection = $products;
|
| 63 |
-
|
| 64 |
-
return $this->_productCollection;
|
| 65 |
-
}
|
| 66 |
}
|
| 67 |
|
| 68 |
function get_prod_count()
|
| 15 |
|
| 16 |
protected function _getProductCollection()
|
| 17 |
{
|
| 18 |
+
parent::__construct();
|
|
|
|
|
|
|
|
|
|
| 19 |
|
| 20 |
$products = Mage::getModel('catalog/product')->getCollection()
|
| 21 |
->addAttributeToSort("entity_id","DESC")
|
| 32 |
$this->_productCollection = $products;
|
| 33 |
|
| 34 |
return $this->_productCollection;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 35 |
}
|
| 36 |
|
| 37 |
function get_prod_count()
|
app/code/local/Tatva/Catalogextensions/etc/config.xml
CHANGED
|
@@ -138,10 +138,10 @@
|
|
| 138 |
<title>New Products</title>
|
| 139 |
<type>Recently Added</type>
|
| 140 |
</config4>
|
| 141 |
-
|
| 142 |
<active>0</active>
|
| 143 |
<title>All Products</title>
|
| 144 |
-
</config5
|
| 145 |
</catalogextensions>
|
| 146 |
</default>
|
| 147 |
</config>
|
| 138 |
<title>New Products</title>
|
| 139 |
<type>Recently Added</type>
|
| 140 |
</config4>
|
| 141 |
+
<config5>
|
| 142 |
<active>0</active>
|
| 143 |
<title>All Products</title>
|
| 144 |
+
</config5>
|
| 145 |
</catalogextensions>
|
| 146 |
</default>
|
| 147 |
</config>
|
app/code/local/Tatva/Catalogextensions/etc/system.xml
CHANGED
|
@@ -161,7 +161,7 @@
|
|
| 161 |
</title>
|
| 162 |
</fields>
|
| 163 |
</config4>
|
| 164 |
-
|
| 165 |
<label>All Product Configuration</label>
|
| 166 |
<frontend_type>text</frontend_type>
|
| 167 |
<sort_order>50</sort_order>
|
|
@@ -181,13 +181,13 @@
|
|
| 181 |
<title translate="label" module="catalogextensions">
|
| 182 |
<label>Title</label>
|
| 183 |
<frontend_type>text</frontend_type>
|
| 184 |
-
<sort_order>
|
| 185 |
<show_in_default>1</show_in_default>
|
| 186 |
<show_in_website>1</show_in_website>
|
| 187 |
<show_in_store>1</show_in_store>
|
| 188 |
</title>
|
| 189 |
</fields>
|
| 190 |
-
</config5>
|
| 191 |
</groups>
|
| 192 |
</catalogextensions>
|
| 193 |
</sections>
|
| 161 |
</title>
|
| 162 |
</fields>
|
| 163 |
</config4>
|
| 164 |
+
<config5 translate="label" module="catalogextensions">
|
| 165 |
<label>All Product Configuration</label>
|
| 166 |
<frontend_type>text</frontend_type>
|
| 167 |
<sort_order>50</sort_order>
|
| 181 |
<title translate="label" module="catalogextensions">
|
| 182 |
<label>Title</label>
|
| 183 |
<frontend_type>text</frontend_type>
|
| 184 |
+
<sort_order>40</sort_order>
|
| 185 |
<show_in_default>1</show_in_default>
|
| 186 |
<show_in_website>1</show_in_website>
|
| 187 |
<show_in_store>1</show_in_store>
|
| 188 |
</title>
|
| 189 |
</fields>
|
| 190 |
+
</config5>
|
| 191 |
</groups>
|
| 192 |
</catalogextensions>
|
| 193 |
</sections>
|
app/design/frontend/default/default/layout/catalogextensions/catalogextensions.xml
CHANGED
|
@@ -35,25 +35,24 @@
|
|
| 35 |
</block>
|
| 36 |
</reference>
|
| 37 |
</catalogextensions_index_mostviewed>
|
| 38 |
-
<
|
| 39 |
<reference name="content">
|
| 40 |
-
<block type="catalogextensions/newproduct_list" name="
|
| 41 |
<block type="catalog/product_list_toolbar" name="product_list_toolbar" template="catalog/product/list/toolbar.phtml">
|
| 42 |
<block type="page/html_pager" name="product_list_toolbar_pager" />
|
| 43 |
</block>
|
| 44 |
<action method="setToolbarBlockName"><name>product_list_toolbar</name></action>
|
| 45 |
</block>
|
| 46 |
</reference>
|
| 47 |
-
</
|
| 48 |
-
<
|
| 49 |
-
|
| 50 |
-
|
| 51 |
-
|
| 52 |
-
<block type="page/html_pager" name="product_list_toolbar_pager"
|
| 53 |
</block>
|
| 54 |
<action method="setToolbarBlockName"><name>product_list_toolbar</name></action>
|
| 55 |
</block>
|
| 56 |
-
|
| 57 |
-
</
|
| 58 |
-
|
| 59 |
</layout>
|
| 35 |
</block>
|
| 36 |
</reference>
|
| 37 |
</catalogextensions_index_mostviewed>
|
| 38 |
+
<catalogextensions_index_newrecent>
|
| 39 |
<reference name="content">
|
| 40 |
+
<block type="catalogextensions/newproduct_list" name="newrecent_list" template="catalog/product/list.phtml" >
|
| 41 |
<block type="catalog/product_list_toolbar" name="product_list_toolbar" template="catalog/product/list/toolbar.phtml">
|
| 42 |
<block type="page/html_pager" name="product_list_toolbar_pager" />
|
| 43 |
</block>
|
| 44 |
<action method="setToolbarBlockName"><name>product_list_toolbar</name></action>
|
| 45 |
</block>
|
| 46 |
</reference>
|
| 47 |
+
</catalogextensions_index_newrecent>
|
| 48 |
+
<catalogextensions_index_allproduct>
|
| 49 |
+
<reference name="content">
|
| 50 |
+
<block type="catalogextensions/allproducts_list" name="product_all_list" template="catalog/product/list.phtml">
|
| 51 |
+
<block type="catalog/product_list_toolbar" name="product_list_toolbar" template="catalog/product/list/toolbar.phtml">
|
| 52 |
+
<block type="page/html_pager" name="product_list_toolbar_pager"/>
|
| 53 |
</block>
|
| 54 |
<action method="setToolbarBlockName"><name>product_list_toolbar</name></action>
|
| 55 |
</block>
|
| 56 |
+
</reference>
|
| 57 |
+
</catalogextensions_index_allproduct>
|
|
|
|
| 58 |
</layout>
|
app/design/frontend/default/default/template/catalogextensions/newrecent.phtml
DELETED
|
@@ -1,134 +0,0 @@
|
|
| 1 |
-
<?php
|
| 2 |
-
/**
|
| 3 |
-
* Magento
|
| 4 |
-
*
|
| 5 |
-
* NOTICE OF LICENSE
|
| 6 |
-
*
|
| 7 |
-
* This source file is subject to the Academic Free License (AFL 3.0)
|
| 8 |
-
* that is bundled with this package in the file LICENSE_AFL.txt.
|
| 9 |
-
* It is also available through the world-wide-web at this URL:
|
| 10 |
-
* http://opensource.org/licenses/afl-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 design
|
| 22 |
-
* @package base_default
|
| 23 |
-
* @copyright Copyright (c) 2010 Magento Inc. (http://www.magentocommerce.com)
|
| 24 |
-
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
| 25 |
-
*/
|
| 26 |
-
?>
|
| 27 |
-
<?php
|
| 28 |
-
/**
|
| 29 |
-
* Product list template
|
| 30 |
-
*
|
| 31 |
-
* @see Mage_Catalog_Block_Product_List
|
| 32 |
-
*/
|
| 33 |
-
?>
|
| 34 |
-
<?php
|
| 35 |
-
|
| 36 |
-
$_productCollection = Mage::getModel("catalog/product")->getCollection()
|
| 37 |
-
->addAttributeToSort("entity_id","DESC")
|
| 38 |
-
->setVisibility(Mage::getSingleton('catalog/product_visibility')->getVisibleInSiteIds())
|
| 39 |
-
->setPageSize(7)
|
| 40 |
-
->setCurPage(1);
|
| 41 |
-
|
| 42 |
-
$_helper = $this->helper('catalog/output');
|
| 43 |
-
?>
|
| 44 |
-
<?php if(!$_productCollection->count()): ?>
|
| 45 |
-
<p class="note-msg"><?php echo $this->__('There are no products matching the selection.') ?></p>
|
| 46 |
-
<?php else: ?>
|
| 47 |
-
<div class="category-products">
|
| 48 |
-
<?php echo $this->getToolbarHtml() ?>
|
| 49 |
-
<?php // List mode ?>
|
| 50 |
-
<?php if($this->getMode()!='grid'): ?>
|
| 51 |
-
<?php $_iterator = 0; ?>
|
| 52 |
-
<ol class="products-list" id="products-list">
|
| 53 |
-
<?php foreach ($_productCollection as $_product): ?>
|
| 54 |
-
<li class="item<?php if( ++$_iterator == sizeof($_productCollection) ): ?> last<?php endif; ?>">
|
| 55 |
-
<?php // Product Image ?>
|
| 56 |
-
<a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" class="product-image"><img src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize(135); ?>" width="135" height="135" alt="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" /></a>
|
| 57 |
-
<?php // Product description ?>
|
| 58 |
-
<div class="product-shop">
|
| 59 |
-
<div class="f-fix">
|
| 60 |
-
<?php $_productNameStripped = $this->stripTags($_product->getName(), null, true); ?>
|
| 61 |
-
<h2 class="product-name"><a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $_productNameStripped; ?>"><?php echo $_helper->productAttribute($_product, $_product->getName() , 'name'); ?></a></h2>
|
| 62 |
-
<?php if($_product->getRatingSummary()): ?>
|
| 63 |
-
<?php echo $this->getReviewsSummaryHtml($_product) ?>
|
| 64 |
-
<?php endif; ?>
|
| 65 |
-
<?php echo $this->getPriceHtml($_product, true) ?>
|
| 66 |
-
<?php if($_product->isSaleable()): ?>
|
| 67 |
-
<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>
|
| 68 |
-
<?php else: ?>
|
| 69 |
-
<p class="availability out-of-stock"><span><?php echo $this->__('Out of stock') ?></span></p>
|
| 70 |
-
<?php endif; ?>
|
| 71 |
-
<div class="desc std">
|
| 72 |
-
<?php echo $_helper->productAttribute($_product, $_product->getShortDescription(), 'short_description') ?>
|
| 73 |
-
<a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $_productNameStripped ?>" class="link-learn"><?php echo $this->__('Learn More') ?></a>
|
| 74 |
-
</div>
|
| 75 |
-
<ul class="add-to-links">
|
| 76 |
-
<?php if ($this->helper('wishlist')->isAllow()) : ?>
|
| 77 |
-
<li><a href="<?php echo $this->helper('wishlist')->getAddUrl($_product) ?>" class="link-wishlist"><?php echo $this->__('Add to Wishlist') ?></a></li>
|
| 78 |
-
<?php endif; ?>
|
| 79 |
-
<?php if($_compareUrl=$this->getAddToCompareUrl($_product)): ?>
|
| 80 |
-
<li><span class="separator">|</span> <a href="<?php echo $_compareUrl ?>" class="link-compare"><?php echo $this->__('Add to Compare') ?></a></li>
|
| 81 |
-
<?php endif; ?>
|
| 82 |
-
</ul>
|
| 83 |
-
</div>
|
| 84 |
-
</div>
|
| 85 |
-
</li>
|
| 86 |
-
<?php endforeach; ?>
|
| 87 |
-
</ol>
|
| 88 |
-
<script type="text/javascript">decorateList('products-list', 'none-recursive')</script>
|
| 89 |
-
|
| 90 |
-
<?php else: ?>
|
| 91 |
-
|
| 92 |
-
<?php // Grid Mode ?>
|
| 93 |
-
|
| 94 |
-
<?php $_collectionSize = $_productCollection->count() ?>
|
| 95 |
-
<?php $_columnCount = $this->getColumnCount(); ?>
|
| 96 |
-
<?php $i=0; foreach ($_productCollection as $_product): ?>
|
| 97 |
-
<?php if ($i++%$_columnCount==0): ?>
|
| 98 |
-
<ul class="products-grid">
|
| 99 |
-
<?php endif ?>
|
| 100 |
-
<li class="item<?php if(($i-1)%$_columnCount==0): ?> first<?php elseif($i%$_columnCount==0): ?> last<?php endif; ?>">
|
| 101 |
-
<a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" class="product-image"><img src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize(135); ?>" width="135" height="135" alt="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" /></a>
|
| 102 |
-
<h2 class="product-name"><a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->stripTags($_product->getName(), null, true) ?>"><?php echo $_helper->productAttribute($_product, $_product->getName(), 'name') ?></a></h2>
|
| 103 |
-
<?php if($_product->getRatingSummary()): ?>
|
| 104 |
-
<?php echo $this->getReviewsSummaryHtml($_product, 'short') ?>
|
| 105 |
-
<?php endif; ?>
|
| 106 |
-
<?php echo $this->getPriceHtml($_product, true) ?>
|
| 107 |
-
<div class="actions">
|
| 108 |
-
<?php if($_product->isSaleable()): ?>
|
| 109 |
-
<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>
|
| 110 |
-
<?php else: ?>
|
| 111 |
-
<p class="availability out-of-stock"><span><?php echo $this->__('Out of stock') ?></span></p>
|
| 112 |
-
<?php endif; ?>
|
| 113 |
-
<ul class="add-to-links">
|
| 114 |
-
<?php if ($this->helper('wishlist')->isAllow()) : ?>
|
| 115 |
-
<li><a href="<?php echo $this->helper('wishlist')->getAddUrl($_product) ?>" class="link-wishlist"><?php echo $this->__('Add to Wishlist') ?></a></li>
|
| 116 |
-
<?php endif; ?>
|
| 117 |
-
<?php if($_compareUrl=$this->getAddToCompareUrl($_product)): ?>
|
| 118 |
-
<li><span class="separator">|</span> <a href="<?php echo $_compareUrl ?>" class="link-compare"><?php echo $this->__('Add to Compare') ?></a></li>
|
| 119 |
-
<?php endif; ?>
|
| 120 |
-
</ul>
|
| 121 |
-
</div>
|
| 122 |
-
</li>
|
| 123 |
-
<?php if ($i%$_columnCount==0 || $i==$_collectionSize): ?>
|
| 124 |
-
</ul>
|
| 125 |
-
<?php endif ?>
|
| 126 |
-
<?php endforeach ?>
|
| 127 |
-
<script type="text/javascript">decorateGeneric($$('ul.products-grid'), ['odd','even','first','last'])</script>
|
| 128 |
-
<?php endif; ?>
|
| 129 |
-
|
| 130 |
-
<div class="toolbar-bottom">
|
| 131 |
-
<?php echo $this->getToolbarHtml() ?>
|
| 132 |
-
</div>
|
| 133 |
-
</div>
|
| 134 |
-
<?php endif; ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
package.xml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>Etatvasoft_5_In_one_catalog</name>
|
| 4 |
-
<version>1.1.
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL)</license>
|
| 7 |
<channel>community</channel>
|
|
@@ -10,9 +10,9 @@
|
|
| 10 |
<description>Homepage is the main visual part of any website. It's very important to show some meaningful </description>
|
| 11 |
<notes>Homepage is the main visual part of any website. It's very important to show some meaningful </notes>
|
| 12 |
<authors><author><name>Etatvasoft</name><user>Etatvasoft</user><email>etatvasoft.magentodevelopment@gmail.com</email></author></authors>
|
| 13 |
-
<date>2013-
|
| 14 |
-
<time>
|
| 15 |
-
<contents><target name="magelocal"><dir name="Tatva"><dir name="Catalogextensions"><dir name="Block"><dir name="Allproducts"><file name="List.php" hash="23bb783bec9a95377cf7d7bfeebc82e5"/></dir><dir name="Bestsellers"><dir name="Home"><file name="List.php" hash="2ca6ba90bc5f94b767208e9744f2378d"/></dir><file name="List.php" hash="fd407b80b108662fbf3455551f500fd9"/></dir><file name="Catalogextensions.php" hash="c8db46ed313124e15f4547cd23481805"/><dir name="Featured"><dir name="Home"><file name="List.php" hash="821b6fd6ef9beabddb9c74d1d1da26cd"/></dir><file name="List.php" hash="216bff6d57edeb08ec1fbe113f171b61"/></dir><dir name="Mostviewed"><dir name="Home"><file name="List.php" hash="acae4de506c8c106912fc1bbdedd6be0"/></dir><file name="List.php" hash="0b107893f3ac3b0b41308a2a115bb8fd"/></dir><dir name="Newproduct"><dir name="Home"><file name="List.php" hash="
|
| 16 |
<compatible/>
|
| 17 |
<dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
|
| 18 |
</package>
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>Etatvasoft_5_In_one_catalog</name>
|
| 4 |
+
<version>1.1.3</version>
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL)</license>
|
| 7 |
<channel>community</channel>
|
| 10 |
<description>Homepage is the main visual part of any website. It's very important to show some meaningful </description>
|
| 11 |
<notes>Homepage is the main visual part of any website. It's very important to show some meaningful </notes>
|
| 12 |
<authors><author><name>Etatvasoft</name><user>Etatvasoft</user><email>etatvasoft.magentodevelopment@gmail.com</email></author></authors>
|
| 13 |
+
<date>2013-02-05</date>
|
| 14 |
+
<time>11:47:37</time>
|
| 15 |
+
<contents><target name="magelocal"><dir name="Tatva"><dir name="Catalogextensions"><dir name="Block"><dir name="Allproducts"><file name="List.php" hash="23bb783bec9a95377cf7d7bfeebc82e5"/></dir><dir name="Bestsellers"><dir name="Home"><file name="List.php" hash="2ca6ba90bc5f94b767208e9744f2378d"/></dir><file name="List.php" hash="fd407b80b108662fbf3455551f500fd9"/></dir><file name="Catalogextensions.php" hash="c8db46ed313124e15f4547cd23481805"/><dir name="Featured"><dir name="Home"><file name="List.php" hash="821b6fd6ef9beabddb9c74d1d1da26cd"/></dir><file name="List.php" hash="216bff6d57edeb08ec1fbe113f171b61"/></dir><dir name="Mostviewed"><dir name="Home"><file name="List.php" hash="acae4de506c8c106912fc1bbdedd6be0"/></dir><file name="List.php" hash="0b107893f3ac3b0b41308a2a115bb8fd"/></dir><dir name="Newproduct"><dir name="Home"><file name="List.php" hash="c29dd338e7fa6d92f4309c4532e5bea3"/></dir><file name="List.php" hash="9585d810fcf72d9df1157510900e6219"/></dir></dir><dir name="Helper"><file name="Data.php" hash="b611bd4cc8fcfbb18474ae0f7abbb92f"/></dir><dir name="Model"><file name="Catalogextensions.php" hash="d13d2010207ce2a98c7aa4d105ab0c89"/><dir name="Mysql4"><dir name="Catalogextensions"><file name="Collection.php" hash="78c860170f8a69d2853dd244d30c3086"/></dir><file name="Catalogextensions.php" hash="19ccf69401d4e2f68c84a99b1fa12e02"/></dir><file name="Status.php" hash="0544078ffbda9356571152f217b4728c"/></dir><dir name="controllers"><file name="IndexController.php" hash="b10d74d4a21ebec92111f44ae9831479"/></dir><dir name="etc"><file name="adminhtml.xml" hash="d049baa4bd9d3ea71f2ea01176344c74"/><file name="config.xml" hash="4870f21dc4264e84799e8b4ff00c87b1"/><file name="system.xml" hash="a61754ddf2e0ee788a814b2a721994ff"/></dir><dir name="sql"><dir name="catalogextensions_setup"><file name="mysql4-install-0.1.0.php" hash="da1797c1b3d77ae8a140dfd894f139bb"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><dir name="catalogextensions"><file name="catalogextensions.xml" hash="b718e4ed3a4a5cc2a9ea81515b7afa84"/></dir></dir><dir name="template"><dir name="catalogextensions"><file name="home_bestsellers.phtml" hash="00b1bee017c65cc07356a701c7106e07"/><file name="home_featured.phtml" hash="e49cbba85123819faf8ff2c74caf5c79"/><file name="home_mostviewed.phtml" hash="f78e5f182364572b476b5ecce2f2b9b4"/><file name="home_newproduct.phtml" hash="153840870c297ca89e6a1c12e73f93be"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Tatva_Catalogextensions.xml" hash="e750c8253d16f81be8b9b71ae69d70be"/></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="default"><dir name="css"><dir name="catalogextensions"><file name="catalogextensions.css" hash="80504e8af7b1ee6dafcec2c6ce35823d"/></dir></dir><dir name="images"><dir name="catalogextensions"><file name="greyboxbg.gif" hash="0276e336f4103bc5b76aa923490cc556"/><file name="verticledivider.jpg" hash="c43a4c3be49fae4c2b3b2f4081237dbd"/></dir></dir></dir></dir></dir></target></contents>
|
| 16 |
<compatible/>
|
| 17 |
<dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
|
| 18 |
</package>
|
