You are viewing an old revision of this post, from March 15, 2014 @ 15:00:31. See below for differences between this version and the current revision.

Magento Category Collection Grid/List View

Now let start with explanation and steps. Please go through the previous blog on paging to understand this better.

 

Step1: IndexController

In the indexcontroller of your module we will write very simple code, to just load and render the layout.

1
2
3
4
5
6
7
8
9
<?php
class Excellence_Collection_IndexController extends Mage_Core_Controller_Front_Action
{
    public function indexAction()
    {
        $this->loadLayout();    
        $this->renderLayout();
    }
}
Step2: Layout

Next in our layout file we will load the relevant block class and phtml file. So there is the code

1
2
3
4
5
6
7
8
9
<?xml version="1.0"?>
<layout version="0.1.0">
    <collection_index_index>
        <reference name="content">
            <block type="collection/collection" name="product_list" template="collection/collection.phtml">
            </block>
        </reference>
    </collection_index_index>
</layout>
Step3: Block

This is the code to put in our block class ‘collection/collection’. The explanation of this code is already given in the previous blog post

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<?php
class Excellence_Collection_Block_Collection extends Mage_Core_Block_Template
{
 
    public function __construct()
    {
        parent::__construct();
        $parent_id = Mage::app()->getStore()->getRootCategoryId();
        if($this->getRequest()->getParam('category_id',false)){
            $parent_id $this->getRequest()->getParam('category_id');
        }
        $collection = Mage::getModel('catalog/category')->getCollection();
        $collection->addFieldToFilter('parent_id',$parent_id);
        $collection->addIsActiveFilter();
        $collection->addNameToResult();
        $collection->addUrlRewriteToResult();
        //$collection->setLoadProductCount(true);
        $this->setCollection($collection);
    }
 
    protected function _prepareLayout()
    {
        parent::_prepareLayout();
 
        $parent_id = Mage::app()->getStore()->getRootCategoryId();
        if($this->getRequest()->getParam('category_id',false)){
            $parent_id $this->getRequest()->getParam('category_id');
        }
        $category = Mage::getModel('catalog/category')->load($parent_id);
 
        if ($headBlock $this->getLayout()->getBlock('head')) {
            if ($title $category->getMetaTitle()) {
                $headBlock->setTitle($title);
            }
            if ($description $category->getMetaDescription()) {
                $headBlock->setDescription($description);
            }
            if ($keywords $category->getMetaKeywords()) {
                $headBlock->setKeywords($keywords);
            }
        }
        $this->setTitle($category->getName());
 
 
        $toolbar $this->getToolbarBlock();
 
        // called prepare sortable parameters
        $collection $this->getCollection();
 
        // use sortable parameters
        if ($orders $this->getAvailableOrders()) {
            $toolbar->setAvailableOrders($orders);
        }
        if ($sort $this->getSortBy()) {
            $toolbar->setDefaultOrder($sort);
        }
        if ($dir $this->getDefaultDirection()) {
            $toolbar->setDefaultDirection($dir);
        }
        $toolbar->setCollection($collection);
 
        $this->setChild('toolbar'$toolbar);
        $this->getCollection()->load();
        return $this;
    }
    public function getDefaultDirection(){
        return 'asc';
    }
    public function getAvailableOrders(){
        return array('name'=> 'Name','position'=>'Position','children_count'=>'Sub Category Count');
    }
    public function getSortBy(){
        return 'name';
    }
    public function getToolbarBlock()
    {
        $block $this->getLayout()->createBlock('collection/toolbar', microtime());
        return $block;
    }
    public function getMode()
    {
        return $this->getChild('toolbar')->getCurrentMode();
    }
 
    public function getToolbarHtml()
    {
        return $this->getChildHtml('toolbar');
    }
}

also we need to create the block class ‘collection/toolbar’ which is used in the above class

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
class Excellence_Collection_Block_Toolbar extends Mage_Catalog_Block_Product_List_Toolbar{
    public function getPagerHtml()
    {
        $pagerBlock $this->getLayout()->createBlock('page/html_pager');
  
        if ($pagerBlock instanceof Varien_Object) {
  
            /* @var $pagerBlock Mage_Page_Block_Html_Pager */
            $pagerBlock->setAvailableLimit($this->getAvailableLimit());
  
            $pagerBlock->setUseContainer(false)
            ->setShowPerPage(false)
            ->setShowAmounts(false)
            ->setLimitVarName($this->getLimitVarName())
            ->setPageVarName($this->getPageVarName())
            ->setLimit($this->getLimit())
            ->setCollection($this->getCollection());
            return $pagerBlock->toHtml();
        }
        return '';
    }
}
Step4: PHTML Files

The last file remaining is the collections.phtml file. In this we will put the html code to display our category collection

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
<?php $collection $this->getCollection(); ?>
<div class="page-title">
    <h1><?php echo $this->__($this->getTitle()) ?></h1>
</div>
<?php echo $this->getToolbarHtml(); ?>
<?php if($collection->getSize()): ?>
 
    <?php if($this->getMode()!='grid'): ?>
    <!-- List Model -->
    <?php $_iterator = 0; ?>
    <ol class="products-list" id="products-list">
    <?php foreach ($collection as $category):
        $category = Mage::getModel('catalog/category')->load($category->getId()); ?>
        <li class="item<?php if( ++$_iterator == sizeof($collection) ): ?> last<?php endif; ?>">
            <?php // Product Image ?>
            <a href="<?php echo $category->getUrl() ?>" title="<?php echo $this->stripTags($category->getName()); ?>" class="product-image"><img src="<?php echo $category->getImageUrl() ?>" width="135" height="135" alt="<?php echo $this->stripTags($category->getName()); ?>" /></a>
            <?php // Product description ?>
            <div class="product-shop">
                <div class="f-fix">
                    <?php $_productNameStripped $this->stripTags($category->getName(), null, true); ?>
                    <h2 class="product-name"><a href="<?php echo $category->getUrl() ?>" title="<?php echo $_productNameStripped; ?>"><?php echo $category->getName(); ?></a></h2>
                    <div class="desc std">
                        <?php echo $category->getDescription(); ?>
                    </div>
                    <?php if($category->getChildrenCount()){ ?>
                    <div>
                        <a href='<?php echo $this->getUrl('*/*/*',array('category_id'=>$category->getId()))?>'>View Sub Category</a>
                    </div>
                    <?php } ?>
                </div>
            </div>
        </li>
    <?php endforeach; ?>
    </ol>
    <script type="text/javascript">decorateList('products-list', 'none-recursive')</script>
    <?php else: ?>
 
    <!-- Grid Mode -->
 
    <?php $_collectionSize = $collection->count() ?>
    <?php
        $_columnCount = $this->getColumnCount();
        if(!$_columnCount){
            $_columnCount = 3;
        }
    ?>
    <?php $i=0; foreach ($collection as $category):
    $category = Mage::getModel('catalog/category')->load($category->getId());
    ?>
        <?php if ($i++%$_columnCount==0): ?>
        <ul class="products-grid">
        <?php endif ?>
            <li class="item<?php if(($i-1)%$_columnCount==0): ?> first<?php elseif($i%$_columnCount==0): ?> last<?php endif; ?>">
                <a href="<?php echo $category->getUrl() ?>" title="<?php echo $this->stripTags($category->getName()); ?>" class="product-image"><img src="<?php echo $category->getImageUrl() ?>" width="135" height="135" alt="<?php echo $this->stripTags($category->getName()) ?>" /></a>
                <h2 class="product-name"><a href="<?php echo $category->getUrl() ?>" title="<?php echo $category->getUrl() ?>"><?php echo $category->getName() ?></a></h2>
                <?php if($category->getChildrenCount()){ ?>
                <div>
                    <a href='<?php echo $this->getUrl('*/*/*',array('category_id'=>$category->getId()))?>'>View Sub Category</a>
                </div>
                <?php } ?>
            </li>
        <?php if ($i%$_columnCount==0 || $i==$_collectionSize): ?>
        </ul>
        <?php endif ?>
        <?php endforeach ?>
        <script type="text/javascript">decorateGeneric($$('ul.products-grid'), ['odd','even','first','last'])</script>
    <?php endif; ?>
 
<?php echo $this->getToolbarHtml(); ?>
<?php else: ?>
    <p><?php echo $this->__('The collection is empty.'); ?></p>
<?php endif ?>

Now open your modules index URL in my case www.mymagento.com/collection and there you will see the category list.

- See more at: http://excellencemagentoblog.com/magento-category-collection-gridlist-view#sthash.6JKu5TTR.dpuf

Revisions

Revision Differences

March 15, 2014 @ 15:00:31Current Revision
Content
Unchanged: <div class="intro">Unchanged: <div class="intro">
Deleted: In this blog post, we will see how to display a grid/list view of categories. 
Deleted: </div> 
Deleted: <p> 
Deleted: By default magento only has category pages which display the category products, but there is no page which displays categories and its sub categories.&nbsp;We are going to create a custom module named Excellence_Collection, in which we will display the list of categories. Here is a screenshot of the end result of this module 
Deleted: </p> 
Deleted: <div class="wp-caption aligncenter" id="attachment_1722"> 
Deleted: <a class="fancybox" href="http:// i2.wp.com/www.excellencemagentoblog.com/ wp-content/uploads/2011/10/ category1.png" rel="fancybox" title="Category Collection Grid/List View with Paging"><img alt="Category Collection Grid/List View with Paging" class="size-full wp-image-1722" height="446" src="http://i2.wp.com/ www.excellencemagentoblog.com/ wp-content/uploads/2011/10/ category1.png?resize=492%2C446" style="height: auto;vertical-align: middle;border: 0px" title="Category Collection Grid/List View with Paging" width="492" /></a>Added: <span>Now let start with explanation and steps. Please go through the&nbsp;</span><a href="http:// www.excellencemagentoblog.com/ magento-collection-paging" target="_blank" title="Add Paging to a Custom Collection">previous blog</a><span>&nbsp;on paging to understand this better.</span>
Unchanged: <p>Unchanged: <p>
Unchanged: &nbsp;Unchanged: &nbsp;
Unchanged: </p>Unchanged: </p>
Deleted: <p class="wp-caption-text"> 
 Added: <div class="title">
Deleted: Category Collection Grid/List View with PagingAdded: Step1: IndexController
Deleted: </p> 
Deleted: </div> 
Deleted: <p> 
Deleted: <br /> 
Deleted: <span>Attached is the source code of this module</span><br /> 
Deleted: <b>Module Name: Category Grid/List View</b> 
Deleted: </p> 
Deleted: <div class="github-widget"> 
Deleted: <div class="github-box repo"> 
Deleted: <div class="github-box-title">  
Deleted: <h3> 
Deleted: <a class="owner" href="http:// github.com/manishiitg" title="http:/ /github.com/manishiitg" >manishiitg</a>/<a class="repo" href="http:// github.com/manishiitg/excellence_ magento_blog" title="http:/ /github.com/manishiitg/excellence_ magento_blog" >excellence_ magento_blog</a> 
Deleted: </h3> 
Deleted: <div class="github-stats" style="float: right;font-size: 11px;font-weight: bold;line-height: 21px;height: auto"> 
Deleted: <a class="watchers" href="http:// github.com/manishiitg/excellence_ magento_blog/watchers" title="See watchers">4</a><a class="forks" href="http:// github.com/manishiitg/excellence_ magento_blog/ network/members" title="See forkers">3</a> 
Unchanged: </div>Unchanged: </div>
Unchanged: <p>Unchanged: <p>
Deleted: &nbsp;Added: In the indexcontroller of your module we will write very simple code, to just load and render the layout.
Unchanged: </p>Unchanged: </p>
Deleted: </div> 
Deleted: <div class="github- box-content" style="padding: 10px"> 
Deleted: <p class="description" style="margin: 0px"> 
Deleted: &mdash;&nbsp;<a href="http:// github.com/manishiitg/excellence_ magento_blog#readme">Read More</a> 
Deleted: </p> 
Deleted: <p class="link" style="margin: 0px;font-weight: bold"> 
Deleted: &nbsp; 
Deleted: </p> 
Deleted: <p> 
Deleted: &nbsp; 
Deleted: </p> 
Deleted: </div> Added: <div>
Deleted: <div class="github- box-download"> 
Deleted: <div class="updated" style="margin: 0px;font-size: 11px;line-height: 24px;width: auto"> 
Deleted: Latest commit to the&nbsp;<strong> master</strong> &nbsp;branch on 3-5-2014 
Deleted: </div> 
Deleted: <p> 
Deleted: <a class="download" href="http:// github.com/manishiitg/excellence_ magento_blog/ zipball/master" title="Get an archive of this repository">Download as zip</a> 
Deleted: </p> 
Deleted: </div> 
Deleted: <p> 
Deleted: &nbsp; 
Deleted: </p> 
Deleted: </div> 
Deleted: </div> 
Deleted: <p> 
Deleted: <br /> 
Deleted: <span>Now let start with explanation and steps. Please go through the&nbsp;</span><a href="http:// www.excellencemagentoblog.com/ magento-collection-paging" target="_blank" title="Add Paging to a Custom Collection">previous blog</a><span>&nbsp;on paging to understand this better.</span> 
Deleted: </p> 
Deleted: <p> 
Deleted: &nbsp; 
Deleted: </p> 
Deleted: <div class="title"> 
Deleted: Step1: IndexController 
Deleted: </div> 
Deleted: <p> 
Deleted: In the indexcontroller of your module we will write very simple code, to just load and render the layout. 
Deleted: </p> 
Deleted: <div> 
Deleted: <div class="syntaxhighlighter php" id="highlighter_551259" style="width: 3339px;margin: 1em 0px !important;font-size: 1em !important"> Added: <div class="syntaxhighlighter php" id="highlighter_599360" style="width: 3339px;margin: 1em 0px !important;font-size: 1em !important">
Unchanged: <table border="0" cellpadding="0" cellspacing="0" style="width: 3339px;margin: 0px !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;overflow: visible !important;padding: 0px !important;vertical-align: baseline !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;direction: ltr !important">Unchanged: <table border="0" cellpadding="0" cellspacing="0" style="width: 3339px;margin: 0px !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;overflow: visible !important;padding: 0px !important;vertical-align: baseline !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <tbody style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <tbody style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <tr style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <tr style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <td class="gutter">Unchanged: <td class="gutter">
Unchanged: <div class="line number1 index0 alt2">Unchanged: <div class="line number1 index0 alt2">
Unchanged: 1Unchanged: 1
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number2 index1 alt1">Unchanged: <div class="line number2 index1 alt1">
Unchanged: 2Unchanged: 2
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number3 index2 alt2">Unchanged: <div class="line number3 index2 alt2">
Unchanged: 3Unchanged: 3
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number4 index3 alt1">Unchanged: <div class="line number4 index3 alt1">
Unchanged: 4Unchanged: 4
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number5 index4 alt2">Unchanged: <div class="line number5 index4 alt2">
Unchanged: 5Unchanged: 5
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number6 index5 alt1">Unchanged: <div class="line number6 index5 alt1">
Unchanged: 6Unchanged: 6
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number7 index6 alt2">Unchanged: <div class="line number7 index6 alt2">
Unchanged: 7Unchanged: 7
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number8 index7 alt1">Unchanged: <div class="line number8 index7 alt1">
Unchanged: 8Unchanged: 8
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number9 index8 alt2">Unchanged: <div class="line number9 index8 alt2">
Unchanged: 9Unchanged: 9
Unchanged: </div>Unchanged: </div>
Unchanged: </td>Unchanged: </td>
Unchanged: <td class="code" style="width: 3305px;padding: 0px !important;line-height: 1.1em !important;vertical-align: baseline !important;border: 0px !important;float: none !important;height: auto !important;margin: 0px !important;overflow: visible !important;font-size: 1em !important;direction: ltr !important">Unchanged: <td class="code" style="width: 3305px;padding: 0px !important;line-height: 1.1em !important;vertical-align: baseline !important;border: 0px !important;float: none !important;height: auto !important;margin: 0px !important;overflow: visible !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <div class="container" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="container" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <div class="line number1 index0 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number1 index0 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt;?php</code>Unchanged: <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt;?php</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number2 index1 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number2 index1 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php keyword">class</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">Excellence_ Collection_IndexController&nbsp; </code><code class="php keyword">extends</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">Mage_ Core_Controller_ Front_Action</code>Unchanged: <code class="php keyword">class</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">Excellence_ Collection_IndexController&nbsp; </code><code class="php keyword">extends</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">Mage_ Core_Controller_ Front_Action</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number3 index2 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number3 index2 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">{</code>Unchanged: <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">{</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number4 index3 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number4 index3 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php keyword">public</code> <code class="php keyword">function</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">indexAction()</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php keyword">public</code> <code class="php keyword">function</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">indexAction()</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number5 index4 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number5 index4 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">{</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">{</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number6 index5 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number6 index5 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;loadLayout( );&nbsp;&nbsp; &nbsp;&nbsp;</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;loadLayout( );&nbsp;&nbsp; &nbsp;&nbsp;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number7 index6 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number7 index6 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;renderLayout();</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;renderLayout();</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number8 index7 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number8 index7 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">}</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">}</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number9 index8 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number9 index8 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">}</code>Unchanged: <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">}</code>
Unchanged: </div>Unchanged: </div>
Deleted: <p> 
Deleted: &nbsp; 
Deleted: </p> 
Unchanged: </div>Unchanged: </div>
Unchanged: </td>Unchanged: </td>
Unchanged: </tr>Unchanged: </tr>
Unchanged: </tbody>Unchanged: </tbody>
Unchanged: </table>Unchanged: </table>
Unchanged: </div>Unchanged: </div>
Deleted: </div> Added: </div>
Deleted: <div class="title"> Added: <div class="title">
Unchanged: Step2: LayoutUnchanged: Step2: Layout
Deleted: </div> Added: </div>
Deleted: <p> Added: <p>
Unchanged: Next in our layout file we will load the relevant block class and phtml file. So there is the codeUnchanged: Next in our layout file we will load the relevant block class and phtml file. So there is the code
Deleted: </p> Added: </p>
Deleted: <div> Added: <div>
Deleted: <div class="syntaxhighlighter xml" id="highlighter_180558" style="width: 3339px;margin: 1em 0px !important;font-size: 1em !important"> Added: <div class="syntaxhighlighter xml" id="highlighter_126066" style="width: 3339px;margin: 1em 0px !important;font-size: 1em !important">
Unchanged: <table border="0" cellpadding="0" cellspacing="0" style="width: 3339px;margin: 0px !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;overflow: visible !important;padding: 0px !important;vertical-align: baseline !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;direction: ltr !important">Unchanged: <table border="0" cellpadding="0" cellspacing="0" style="width: 3339px;margin: 0px !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;overflow: visible !important;padding: 0px !important;vertical-align: baseline !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <tbody style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <tbody style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <tr style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <tr style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <td class="gutter">Unchanged: <td class="gutter">
Unchanged: <div class="line number1 index0 alt2">Unchanged: <div class="line number1 index0 alt2">
Unchanged: 1Unchanged: 1
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number2 index1 alt1">Unchanged: <div class="line number2 index1 alt1">
Unchanged: 2Unchanged: 2
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number3 index2 alt2">Unchanged: <div class="line number3 index2 alt2">
Unchanged: 3Unchanged: 3
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number4 index3 alt1">Unchanged: <div class="line number4 index3 alt1">
Unchanged: 4Unchanged: 4
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number5 index4 alt2">Unchanged: <div class="line number5 index4 alt2">
Unchanged: 5Unchanged: 5
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number6 index5 alt1">Unchanged: <div class="line number6 index5 alt1">
Unchanged: 6Unchanged: 6
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number7 index6 alt2">Unchanged: <div class="line number7 index6 alt2">
Unchanged: 7Unchanged: 7
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number8 index7 alt1">Unchanged: <div class="line number8 index7 alt1">
Unchanged: 8Unchanged: 8
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number9 index8 alt2">Unchanged: <div class="line number9 index8 alt2">
Unchanged: 9Unchanged: 9
Unchanged: </div>Unchanged: </div>
Unchanged: </td>Unchanged: </td>
Unchanged: <td class="code" style="width: 3305px;padding: 0px !important;line-height: 1.1em !important;vertical-align: baseline !important;border: 0px !important;float: none !important;height: auto !important;margin: 0px !important;overflow: visible !important;font-size: 1em !important;direction: ltr !important">Unchanged: <td class="code" style="width: 3305px;padding: 0px !important;line-height: 1.1em !important;vertical-align: baseline !important;border: 0px !important;float: none !important;height: auto !important;margin: 0px !important;overflow: visible !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <div class="container" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="container" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <div class="line number1 index0 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number1 index0 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="xml plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; ?</code><code class="xml keyword">xml</code> <code class="xml color1" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: gray !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">version</code><code class="xml plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= </code><code class="xml string">&quot; 1.0&quot;</code><code class="xml plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">?&gt;</code>Unchanged: <code class="xml plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; ?</code><code class="xml keyword">xml</code> <code class="xml color1" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: gray !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">version</code><code class="xml plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= </code><code class="xml string">&quot; 1.0&quot;</code><code class="xml plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">?&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number2 index1 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number2 index1 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="xml plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; </code><code class="xml keyword">layout</code> <code class="xml color1" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: gray !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">version</code><code class="xml plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= </code><code class="xml string">&quot; 0.1.0&quot;</code><code class="xml plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&gt;</code>Unchanged: <code class="xml plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; </code><code class="xml keyword">layout</code> <code class="xml color1" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: gray !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">version</code><code class="xml plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= </code><code class="xml string">&quot; 0.1.0&quot;</code><code class="xml plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number3 index2 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number3 index2 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="xml spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="xml plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; </code><code class="xml keyword">collection_ index_index</code><code class="xml plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&gt;</code>Unchanged: <code class="xml spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="xml plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; </code><code class="xml keyword">collection_ index_index</code><code class="xml plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number4 index3 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number4 index3 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="xml spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="xml plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; </code><code class="xml keyword">reference</code> <code class="xml color1" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: gray !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">name</code><code class="xml plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= </code><code class="xml string">&quot; content&quot; </code><code class="xml plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&gt;</code>Unchanged: <code class="xml spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="xml plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; </code><code class="xml keyword">reference</code> <code class="xml color1" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: gray !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">name</code><code class="xml plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= </code><code class="xml string">&quot; content&quot; </code><code class="xml plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number5 index4 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number5 index4 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="xml spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</code><code class="xml plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; </code><code class="xml keyword">block</code> <code class="xml color1" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: gray !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">type</code><code class="xml plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= </code><code class="xml string">&quot; collection/collection&quot;</code> <code class="xml color1" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: gray !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">name</code><code class="xml plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= </code><code class="xml string">&quot; product_list&quot;</code> <code class="xml color1" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: gray !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">template</code><code class="xml plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= </code><code class="xml string">&quot; collection/collection.phtml&quot; </code><code class="xml plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&gt;</code>Unchanged: <code class="xml spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</code><code class="xml plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; </code><code class="xml keyword">block</code> <code class="xml color1" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: gray !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">type</code><code class="xml plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= </code><code class="xml string">&quot; collection/collection&quot;</code> <code class="xml color1" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: gray !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">name</code><code class="xml plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= </code><code class="xml string">&quot; product_list&quot;</code> <code class="xml color1" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: gray !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">template</code><code class="xml plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= </code><code class="xml string">&quot; collection/collection.phtml&quot; </code><code class="xml plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number6 index5 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number6 index5 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="xml spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</code><code class="xml plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; /</code><code class="xml keyword">block</code><code class="xml plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&gt;</code>Unchanged: <code class="xml spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</code><code class="xml plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; /</code><code class="xml keyword">block</code><code class="xml plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number7 index6 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number7 index6 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="xml spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="xml plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; /</code><code class="xml keyword">reference</code><code class="xml plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&gt;</code>Unchanged: <code class="xml spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="xml plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; /</code><code class="xml keyword">reference</code><code class="xml plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number8 index7 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number8 index7 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="xml spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="xml plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; /</code><code class="xml keyword">collection_ index_index</code><code class="xml plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&gt;</code>Unchanged: <code class="xml spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="xml plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; /</code><code class="xml keyword">collection_ index_index</code><code class="xml plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number9 index8 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number9 index8 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="xml plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; /</code><code class="xml keyword">layout</code><code class="xml plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&gt;</code>Unchanged: <code class="xml plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; /</code><code class="xml keyword">layout</code><code class="xml plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&gt;</code>
Unchanged: </div>Unchanged: </div>
Deleted: <p> 
Deleted: &nbsp; 
Deleted: </p> 
Unchanged: </div>Unchanged: </div>
Unchanged: </td>Unchanged: </td>
Unchanged: </tr>Unchanged: </tr>
Unchanged: </tbody>Unchanged: </tbody>
Unchanged: </table>Unchanged: </table>
Unchanged: </div>Unchanged: </div>
Deleted: </div> Added: </div>
Deleted: <div class="title"> Added: <div class="title">
Unchanged: Step3: BlockUnchanged: Step3: Block
Deleted: </div> Added: </div>
Deleted: <p> Added: <p>
Unchanged: This is the code to put in our block class &lsquo;collection/ collection&rsquo;. The explanation of this code is already given in the&nbsp;<a href="http:// www.excellencemagentoblog.com/ magento-collection-paging" target="_blank" title="Add Paging to a Custom Collection">previous blog post</a>Unchanged: This is the code to put in our block class &lsquo;collection/ collection&rsquo;. The explanation of this code is already given in the&nbsp;<a href="http:// www.excellencemagentoblog.com/ magento-collection-paging" target="_blank" title="Add Paging to a Custom Collection">previous blog post</a>
Deleted: </p> Added: </p>
Deleted: <div> Added: <div>
Deleted: <div class="syntaxhighlighter php" id="highlighter_476357" style="width: 3339px;margin: 1em 0px !important;font-size: 1em !important"> Added: <div class="syntaxhighlighter php" id="highlighter_530975" style="width: 3339px;margin: 1em 0px !important;font-size: 1em !important">
Unchanged: <table border="0" cellpadding="0" cellspacing="0" style="width: 3339px;margin: 0px !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;overflow: visible !important;padding: 0px !important;vertical-align: baseline !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;direction: ltr !important">Unchanged: <table border="0" cellpadding="0" cellspacing="0" style="width: 3339px;margin: 0px !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;overflow: visible !important;padding: 0px !important;vertical-align: baseline !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <tbody style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <tbody style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <tr style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <tr style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <td class="gutter">Unchanged: <td class="gutter">
Unchanged: <div class="line number1 index0 alt2">Unchanged: <div class="line number1 index0 alt2">
Unchanged: 1Unchanged: 1
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number2 index1 alt1">Unchanged: <div class="line number2 index1 alt1">
Unchanged: 2Unchanged: 2
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number3 index2 alt2">Unchanged: <div class="line number3 index2 alt2">
Unchanged: 3Unchanged: 3
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number4 index3 alt1">Unchanged: <div class="line number4 index3 alt1">
Unchanged: 4Unchanged: 4
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number5 index4 alt2">Unchanged: <div class="line number5 index4 alt2">
Unchanged: 5Unchanged: 5
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number6 index5 alt1">Unchanged: <div class="line number6 index5 alt1">
Unchanged: 6Unchanged: 6
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number7 index6 alt2">Unchanged: <div class="line number7 index6 alt2">
Unchanged: 7Unchanged: 7
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number8 index7 alt1">Unchanged: <div class="line number8 index7 alt1">
Unchanged: 8Unchanged: 8
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number9 index8 alt2">Unchanged: <div class="line number9 index8 alt2">
Unchanged: 9Unchanged: 9
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number10 index9 alt1">Unchanged: <div class="line number10 index9 alt1">
Unchanged: 10Unchanged: 10
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number11 index10 alt2">Unchanged: <div class="line number11 index10 alt2">
Unchanged: 11Unchanged: 11
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number12 index11 alt1">Unchanged: <div class="line number12 index11 alt1">
Unchanged: 12Unchanged: 12
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number13 index12 alt2">Unchanged: <div class="line number13 index12 alt2">
Unchanged: 13Unchanged: 13
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number14 index13 alt1">Unchanged: <div class="line number14 index13 alt1">
Unchanged: 14Unchanged: 14
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number15 index14 alt2">Unchanged: <div class="line number15 index14 alt2">
Unchanged: 15Unchanged: 15
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number16 index15 alt1">Unchanged: <div class="line number16 index15 alt1">
Unchanged: 16Unchanged: 16
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number17 index16 alt2">Unchanged: <div class="line number17 index16 alt2">
Unchanged: 17Unchanged: 17
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number18 index17 alt1">Unchanged: <div class="line number18 index17 alt1">
Unchanged: 18Unchanged: 18
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number19 index18 alt2">Unchanged: <div class="line number19 index18 alt2">
Unchanged: 19Unchanged: 19
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number20 index19 alt1">Unchanged: <div class="line number20 index19 alt1">
Unchanged: 20Unchanged: 20
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number21 index20 alt2">Unchanged: <div class="line number21 index20 alt2">
Unchanged: 21Unchanged: 21
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number22 index21 alt1">Unchanged: <div class="line number22 index21 alt1">
Unchanged: 22Unchanged: 22
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number23 index22 alt2">Unchanged: <div class="line number23 index22 alt2">
Unchanged: 23Unchanged: 23
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number24 index23 alt1">Unchanged: <div class="line number24 index23 alt1">
Unchanged: 24Unchanged: 24
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number25 index24 alt2">Unchanged: <div class="line number25 index24 alt2">
Unchanged: 25Unchanged: 25
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number26 index25 alt1">Unchanged: <div class="line number26 index25 alt1">
Unchanged: 26Unchanged: 26
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number27 index26 alt2">Unchanged: <div class="line number27 index26 alt2">
Unchanged: 27Unchanged: 27
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number28 index27 alt1">Unchanged: <div class="line number28 index27 alt1">
Unchanged: 28Unchanged: 28
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number29 index28 alt2">Unchanged: <div class="line number29 index28 alt2">
Unchanged: 29Unchanged: 29
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number30 index29 alt1">Unchanged: <div class="line number30 index29 alt1">
Unchanged: 30Unchanged: 30
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number31 index30 alt2">Unchanged: <div class="line number31 index30 alt2">
Unchanged: 31Unchanged: 31
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number32 index31 alt1">Unchanged: <div class="line number32 index31 alt1">
Unchanged: 32Unchanged: 32
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number33 index32 alt2">Unchanged: <div class="line number33 index32 alt2">
Unchanged: 33Unchanged: 33
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number34 index33 alt1">Unchanged: <div class="line number34 index33 alt1">
Unchanged: 34Unchanged: 34
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number35 index34 alt2">Unchanged: <div class="line number35 index34 alt2">
Unchanged: 35Unchanged: 35
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number36 index35 alt1">Unchanged: <div class="line number36 index35 alt1">
Unchanged: 36Unchanged: 36
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number37 index36 alt2">Unchanged: <div class="line number37 index36 alt2">
Unchanged: 37Unchanged: 37
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number38 index37 alt1">Unchanged: <div class="line number38 index37 alt1">
Unchanged: 38Unchanged: 38
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number39 index38 alt2">Unchanged: <div class="line number39 index38 alt2">
Unchanged: 39Unchanged: 39
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number40 index39 alt1">Unchanged: <div class="line number40 index39 alt1">
Unchanged: 40Unchanged: 40
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number41 index40 alt2">Unchanged: <div class="line number41 index40 alt2">
Unchanged: 41Unchanged: 41
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number42 index41 alt1">Unchanged: <div class="line number42 index41 alt1">
Unchanged: 42Unchanged: 42
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number43 index42 alt2">Unchanged: <div class="line number43 index42 alt2">
Unchanged: 43Unchanged: 43
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number44 index43 alt1">Unchanged: <div class="line number44 index43 alt1">
Unchanged: 44Unchanged: 44
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number45 index44 alt2">Unchanged: <div class="line number45 index44 alt2">
Unchanged: 45Unchanged: 45
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number46 index45 alt1">Unchanged: <div class="line number46 index45 alt1">
Unchanged: 46Unchanged: 46
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number47 index46 alt2">Unchanged: <div class="line number47 index46 alt2">
Unchanged: 47Unchanged: 47
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number48 index47 alt1">Unchanged: <div class="line number48 index47 alt1">
Unchanged: 48Unchanged: 48
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number49 index48 alt2">Unchanged: <div class="line number49 index48 alt2">
Unchanged: 49Unchanged: 49
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number50 index49 alt1">Unchanged: <div class="line number50 index49 alt1">
Unchanged: 50Unchanged: 50
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number51 index50 alt2">Unchanged: <div class="line number51 index50 alt2">
Unchanged: 51Unchanged: 51
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number52 index51 alt1">Unchanged: <div class="line number52 index51 alt1">
Unchanged: 52Unchanged: 52
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number53 index52 alt2">Unchanged: <div class="line number53 index52 alt2">
Unchanged: 53Unchanged: 53
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number54 index53 alt1">Unchanged: <div class="line number54 index53 alt1">
Unchanged: 54Unchanged: 54
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number55 index54 alt2">Unchanged: <div class="line number55 index54 alt2">
Unchanged: 55Unchanged: 55
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number56 index55 alt1">Unchanged: <div class="line number56 index55 alt1">
Unchanged: 56Unchanged: 56
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number57 index56 alt2">Unchanged: <div class="line number57 index56 alt2">
Unchanged: 57Unchanged: 57
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number58 index57 alt1">Unchanged: <div class="line number58 index57 alt1">
Unchanged: 58Unchanged: 58
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number59 index58 alt2">Unchanged: <div class="line number59 index58 alt2">
Unchanged: 59Unchanged: 59
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number60 index59 alt1">Unchanged: <div class="line number60 index59 alt1">
Unchanged: 60Unchanged: 60
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number61 index60 alt2">Unchanged: <div class="line number61 index60 alt2">
Unchanged: 61Unchanged: 61
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number62 index61 alt1">Unchanged: <div class="line number62 index61 alt1">
Unchanged: 62Unchanged: 62
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number63 index62 alt2">Unchanged: <div class="line number63 index62 alt2">
Unchanged: 63Unchanged: 63
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number64 index63 alt1">Unchanged: <div class="line number64 index63 alt1">
Unchanged: 64Unchanged: 64
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number65 index64 alt2">Unchanged: <div class="line number65 index64 alt2">
Unchanged: 65Unchanged: 65
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number66 index65 alt1">Unchanged: <div class="line number66 index65 alt1">
Unchanged: 66Unchanged: 66
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number67 index66 alt2">Unchanged: <div class="line number67 index66 alt2">
Unchanged: 67Unchanged: 67
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number68 index67 alt1">Unchanged: <div class="line number68 index67 alt1">
Unchanged: 68Unchanged: 68
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number69 index68 alt2">Unchanged: <div class="line number69 index68 alt2">
Unchanged: 69Unchanged: 69
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number70 index69 alt1">Unchanged: <div class="line number70 index69 alt1">
Unchanged: 70Unchanged: 70
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number71 index70 alt2">Unchanged: <div class="line number71 index70 alt2">
Unchanged: 71Unchanged: 71
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number72 index71 alt1">Unchanged: <div class="line number72 index71 alt1">
Unchanged: 72Unchanged: 72
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number73 index72 alt2">Unchanged: <div class="line number73 index72 alt2">
Unchanged: 73Unchanged: 73
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number74 index73 alt1">Unchanged: <div class="line number74 index73 alt1">
Unchanged: 74Unchanged: 74
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number75 index74 alt2">Unchanged: <div class="line number75 index74 alt2">
Unchanged: 75Unchanged: 75
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number76 index75 alt1">Unchanged: <div class="line number76 index75 alt1">
Unchanged: 76Unchanged: 76
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number77 index76 alt2">Unchanged: <div class="line number77 index76 alt2">
Unchanged: 77Unchanged: 77
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number78 index77 alt1">Unchanged: <div class="line number78 index77 alt1">
Unchanged: 78Unchanged: 78
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number79 index78 alt2">Unchanged: <div class="line number79 index78 alt2">
Unchanged: 79Unchanged: 79
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number80 index79 alt1">Unchanged: <div class="line number80 index79 alt1">
Unchanged: 80Unchanged: 80
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number81 index80 alt2">Unchanged: <div class="line number81 index80 alt2">
Unchanged: 81Unchanged: 81
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number82 index81 alt1">Unchanged: <div class="line number82 index81 alt1">
Unchanged: 82Unchanged: 82
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number83 index82 alt2">Unchanged: <div class="line number83 index82 alt2">
Unchanged: 83Unchanged: 83
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number84 index83 alt1">Unchanged: <div class="line number84 index83 alt1">
Unchanged: 84Unchanged: 84
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number85 index84 alt2">Unchanged: <div class="line number85 index84 alt2">
Unchanged: 85Unchanged: 85
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number86 index85 alt1">Unchanged: <div class="line number86 index85 alt1">
Unchanged: 86Unchanged: 86
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number87 index86 alt2">Unchanged: <div class="line number87 index86 alt2">
Unchanged: 87Unchanged: 87
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number88 index87 alt1">Unchanged: <div class="line number88 index87 alt1">
Unchanged: 88Unchanged: 88
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number89 index88 alt2">Unchanged: <div class="line number89 index88 alt2">
Unchanged: 89Unchanged: 89
Unchanged: </div>Unchanged: </div>
Unchanged: </td>Unchanged: </td>
Unchanged: <td class="code" style="width: 3297px;padding: 0px !important;line-height: 1.1em !important;vertical-align: baseline !important;border: 0px !important;float: none !important;height: auto !important;margin: 0px !important;overflow: visible !important;font-size: 1em !important;direction: ltr !important">Unchanged: <td class="code" style="width: 3297px;padding: 0px !important;line-height: 1.1em !important;vertical-align: baseline !important;border: 0px !important;float: none !important;height: auto !important;margin: 0px !important;overflow: visible !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <div class="container" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="container" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <div class="line number1 index0 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number1 index0 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt;?php</code>Unchanged: <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt;?php</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number2 index1 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number2 index1 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php keyword">class</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">Excellence_ Collection_Block_ Collection&nbsp; </code><code class="php keyword">extends</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">Mage_ Core_Block_Template</code>Unchanged: <code class="php keyword">class</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">Excellence_ Collection_Block_ Collection&nbsp; </code><code class="php keyword">extends</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">Mage_ Core_Block_Template</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number3 index2 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number3 index2 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">{</code>Unchanged: <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">{</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number4 index3 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number4 index3 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: &nbsp;Unchanged: &nbsp;
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number5 index4 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number5 index4 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php keyword">public</code> <code class="php keyword">function</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">_ _construct()</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php keyword">public</code> <code class="php keyword">function</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">_ _construct()</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number6 index5 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number6 index5 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">{</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">{</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number7 index6 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number7 index6 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">parent: :__construct();</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">parent: :__construct();</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number8 index7 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number8 index7 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php variable">$parent_id</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= Mage::app()-&gt; getStore()-&gt; getRootCategoryId();</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php variable">$parent_id</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= Mage::app()-&gt; getStore()-&gt; getRootCategoryId();</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number9 index8 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number9 index8 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php keyword">if</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">( </code><code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getRequest( )-&gt;getParam( </code><code class="php string">&#039; category_id&#039; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">,false)){</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php keyword">if</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">( </code><code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getRequest( )-&gt;getParam( </code><code class="php string">&#039; category_id&#039; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">,false)){</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number10 index9 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number10 index9 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</code><code class="php variable">$parent_id</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= &nbsp;</code><code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getRequest( )-&gt;getParam( </code><code class="php string">&#039; category_id&#039; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">);</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</code><code class="php variable">$parent_id</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= &nbsp;</code><code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getRequest( )-&gt;getParam( </code><code class="php string">&#039; category_id&#039; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">);</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number11 index10 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number11 index10 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">}</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">}</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number12 index11 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number12 index11 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php variable">$collection</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= Mage::getModel( </code><code class="php string">&#039; catalog/category&#039; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">) -&gt;getCollection();</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php variable">$collection</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= Mage::getModel( </code><code class="php string">&#039; catalog/category&#039; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">) -&gt;getCollection();</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number13 index12 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number13 index12 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php variable">$collection</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;addFieldToFilter( </code><code class="php string">&#039; parent_id&#039; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">,</code><code class="php variable">$parent_ id</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">);</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php variable">$collection</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;addFieldToFilter( </code><code class="php string">&#039; parent_id&#039; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">,</code><code class="php variable">$parent_ id</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">);</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number14 index13 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number14 index13 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php variable">$collection</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;addIsActiveFilter();</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php variable">$collection</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;addIsActiveFilter();</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number15 index14 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number15 index14 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php variable">$collection</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;addNameToResult();</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php variable">$collection</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;addNameToResult();</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number16 index15 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number16 index15 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php variable">$collection</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;addUrlRewriteToResult();</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php variable">$collection</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;addUrlRewriteToResult();</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number17 index16 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number17 index16 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php comments">//$collection- &gt;setLoadProductCount( true);</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php comments">//$collection- &gt;setLoadProductCount( true);</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number18 index17 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number18 index17 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;setCollection( </code><code class="php variable">$collection</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">);</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;setCollection( </code><code class="php variable">$collection</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">);</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number19 index18 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number19 index18 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">}</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">}</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number20 index19 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number20 index19 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: &nbsp;Unchanged: &nbsp;
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number21 index20 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number21 index20 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php keyword">protected</code> <code class="php keyword">function</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">_ prepareLayout()</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php keyword">protected</code> <code class="php keyword">function</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">_ prepareLayout()</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number22 index21 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number22 index21 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">{</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">{</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number23 index22 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number23 index22 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">parent: :_prepareLayout();</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">parent: :_prepareLayout();</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number24 index23 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number24 index23 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: &nbsp;Unchanged: &nbsp;
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number25 index24 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number25 index24 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php variable">$parent_id</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= Mage::app()-&gt; getStore()-&gt; getRootCategoryId();</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php variable">$parent_id</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= Mage::app()-&gt; getStore()-&gt; getRootCategoryId();</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number26 index25 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number26 index25 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php keyword">if</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">( </code><code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getRequest( )-&gt;getParam( </code><code class="php string">&#039; category_id&#039; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">,false)){</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php keyword">if</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">( </code><code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getRequest( )-&gt;getParam( </code><code class="php string">&#039; category_id&#039; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">,false)){</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number27 index26 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number27 index26 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</code><code class="php variable">$parent_id</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= &nbsp;</code><code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getRequest( )-&gt;getParam( </code><code class="php string">&#039; category_id&#039; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">);</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</code><code class="php variable">$parent_id</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= &nbsp;</code><code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getRequest( )-&gt;getParam( </code><code class="php string">&#039; category_id&#039; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">);</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number28 index27 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number28 index27 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">}</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">}</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number29 index28 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number29 index28 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php variable">$category</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= Mage::getModel( </code><code class="php string">&#039; catalog/category&#039; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">) -&gt;load(</code><code class="php variable">$parent_ id</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">);</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php variable">$category</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= Mage::getModel( </code><code class="php string">&#039; catalog/category&#039; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">) -&gt;load(</code><code class="php variable">$parent_ id</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">);</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number30 index29 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number30 index29 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: &nbsp;Unchanged: &nbsp;
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number31 index30 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number31 index30 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php keyword">if</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">( </code><code class="php variable">$headBlock</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= &nbsp;</code><code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getLayout( )-&gt;getBlock( </code><code class="php string">&#039; head&#039;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">)) {</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php keyword">if</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">( </code><code class="php variable">$headBlock</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= &nbsp;</code><code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getLayout( )-&gt;getBlock( </code><code class="php string">&#039; head&#039;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">)) {</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number32 index31 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number32 index31 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</code><code class="php keyword">if</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">( </code><code class="php variable">$title</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= &nbsp;</code><code class="php variable">$category</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getMetaTitle()) {</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</code><code class="php keyword">if</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">( </code><code class="php variable">$title</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= &nbsp;</code><code class="php variable">$category</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getMetaTitle()) {</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number33 index32 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number33 index32 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; </code><code class="php variable">$headBlock</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;setTitle( </code><code class="php variable">$title</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">);</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; </code><code class="php variable">$headBlock</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;setTitle( </code><code class="php variable">$title</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">);</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number34 index33 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number34 index33 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">}</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">}</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number35 index34 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number35 index34 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</code><code class="php keyword">if</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">( </code><code class="php variable">$description</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= &nbsp;</code><code class="php variable">$category</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getMetaDescription()) {</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</code><code class="php keyword">if</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">( </code><code class="php variable">$description</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= &nbsp;</code><code class="php variable">$category</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getMetaDescription()) {</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number36 index35 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number36 index35 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; </code><code class="php variable">$headBlock</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;setDescription( </code><code class="php variable">$description</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">);</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; </code><code class="php variable">$headBlock</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;setDescription( </code><code class="php variable">$description</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">);</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number37 index36 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number37 index36 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">}</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">}</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number38 index37 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number38 index37 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</code><code class="php keyword">if</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">( </code><code class="php variable">$keywords</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= &nbsp;</code><code class="php variable">$category</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getMetaKeywords()) {</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</code><code class="php keyword">if</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">( </code><code class="php variable">$keywords</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= &nbsp;</code><code class="php variable">$category</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getMetaKeywords()) {</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number39 index38 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number39 index38 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; </code><code class="php variable">$headBlock</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;setKeywords( </code><code class="php variable">$keywords</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">);</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; </code><code class="php variable">$headBlock</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;setKeywords( </code><code class="php variable">$keywords</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">);</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number40 index39 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number40 index39 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">}</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">}</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number41 index40 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number41 index40 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">}</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">}</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number42 index41 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number42 index41 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;setTitle( </code><code class="php variable">$category</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getName());</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;setTitle( </code><code class="php variable">$category</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getName());</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number43 index42 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number43 index42 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: &nbsp;Unchanged: &nbsp;
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number44 index43 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number44 index43 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: &nbsp;Unchanged: &nbsp;
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number45 index44 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number45 index44 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php variable">$toolbar</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= &nbsp;</code><code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getToolbarBlock();</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php variable">$toolbar</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= &nbsp;</code><code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getToolbarBlock();</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number46 index45 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number46 index45 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: &nbsp;Unchanged: &nbsp;
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number47 index46 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number47 index46 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php comments">// called prepare sortable parameters</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php comments">// called prepare sortable parameters</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number48 index47 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number48 index47 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php variable">$collection</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= &nbsp;</code><code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getCollection();</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php variable">$collection</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= &nbsp;</code><code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getCollection();</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number49 index48 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number49 index48 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: &nbsp;Unchanged: &nbsp;
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number50 index49 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number50 index49 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php comments">// use sortable parameters</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php comments">// use sortable parameters</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number51 index50 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number51 index50 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php keyword">if</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">( </code><code class="php variable">$orders</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= &nbsp;</code><code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getAvailableOrders()) {</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php keyword">if</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">( </code><code class="php variable">$orders</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= &nbsp;</code><code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getAvailableOrders()) {</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number52 index51 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number52 index51 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</code><code class="php variable">$toolbar</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;setAvailableOrders( </code><code class="php variable">$orders</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">);</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</code><code class="php variable">$toolbar</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;setAvailableOrders( </code><code class="php variable">$orders</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">);</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number53 index52 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number53 index52 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">}</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">}</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number54 index53 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number54 index53 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php keyword">if</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">( </code><code class="php variable">$sort</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= &nbsp;</code><code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getSortBy()) {</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php keyword">if</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">( </code><code class="php variable">$sort</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= &nbsp;</code><code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getSortBy()) {</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number55 index54 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number55 index54 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</code><code class="php variable">$toolbar</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;setDefaultOrder( </code><code class="php variable">$sort</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">);</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</code><code class="php variable">$toolbar</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;setDefaultOrder( </code><code class="php variable">$sort</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">);</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number56 index55 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number56 index55 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">}</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">}</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number57 index56 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number57 index56 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php keyword">if</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">( </code><code class="php variable">$dir</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= &nbsp;</code><code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getDefaultDirection()) {</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php keyword">if</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">( </code><code class="php variable">$dir</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= &nbsp;</code><code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getDefaultDirection()) {</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number58 index57 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number58 index57 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</code><code class="php variable">$toolbar</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;setDefaultDirection( </code><code class="php variable">$dir</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">);</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</code><code class="php variable">$toolbar</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;setDefaultDirection( </code><code class="php variable">$dir</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">);</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number59 index58 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number59 index58 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">}</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">}</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number60 index59 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number60 index59 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php variable">$toolbar</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;setCollection( </code><code class="php variable">$collection</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">);</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php variable">$toolbar</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;setCollection( </code><code class="php variable">$collection</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">);</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number61 index60 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number61 index60 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: &nbsp;Unchanged: &nbsp;
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number62 index61 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number62 index61 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;setChild( </code><code class="php string">&#039; toolbar&#039; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">,&nbsp; </code><code class="php variable">$toolbar</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">);</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;setChild( </code><code class="php string">&#039; toolbar&#039; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">,&nbsp; </code><code class="php variable">$toolbar</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">);</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number63 index62 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number63 index62 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getCollection( )-&gt;load();</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getCollection( )-&gt;load();</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number64 index63 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number64 index63 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php keyword">return</code> <code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">;</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php keyword">return</code> <code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number65 index64 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number65 index64 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">}</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">}</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number66 index65 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number66 index65 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php keyword">public</code> <code class="php keyword">function</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">getDefaultDirection(){</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php keyword">public</code> <code class="php keyword">function</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">getDefaultDirection(){</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number67 index66 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number67 index66 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php keyword">return</code> <code class="php string">&#039; asc&#039;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">;</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php keyword">return</code> <code class="php string">&#039; asc&#039;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number68 index67 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number68 index67 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">}</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">}</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number69 index68 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number69 index68 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php keyword">public</code> <code class="php keyword">function</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">getAvailableOrders(){</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php keyword">public</code> <code class="php keyword">function</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">getAvailableOrders(){</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number70 index69 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number70 index69 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php keyword">return</code> <code class="php keyword">array</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">( </code><code class="php string">&#039; name&#039;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= &gt;&nbsp;</code><code class="php string">&#039; Name&#039;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">,</code><code class="php string">&#039; position&#039; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= &gt;</code><code class="php string">&#039; Position&#039; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">,</code><code class="php string">&#039; children_count&#039; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= &gt;</code><code class="php string">&#039;Sub Category Count&#039;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">);</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php keyword">return</code> <code class="php keyword">array</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">( </code><code class="php string">&#039; name&#039;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= &gt;&nbsp;</code><code class="php string">&#039; Name&#039;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">,</code><code class="php string">&#039; position&#039; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= &gt;</code><code class="php string">&#039; Position&#039; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">,</code><code class="php string">&#039; children_count&#039; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= &gt;</code><code class="php string">&#039;Sub Category Count&#039;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">);</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number71 index70 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number71 index70 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">}</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">}</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number72 index71 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number72 index71 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php keyword">public</code> <code class="php keyword">function</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">getSortBy(){</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php keyword">public</code> <code class="php keyword">function</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">getSortBy(){</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number73 index72 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number73 index72 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php keyword">return</code> <code class="php string">&#039; name&#039;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">;</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php keyword">return</code> <code class="php string">&#039; name&#039;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number74 index73 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number74 index73 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">}</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">}</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number75 index74 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number75 index74 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php keyword">public</code> <code class="php keyword">function</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">getToolbarBlock()</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php keyword">public</code> <code class="php keyword">function</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">getToolbarBlock()</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number76 index75 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number76 index75 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">{</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">{</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number77 index76 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number77 index76 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php variable">$block</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= &nbsp;</code><code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getLayout( )-&gt;createBlock( </code><code class="php string">&#039; collection/toolbar&#039; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">, microtime());</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php variable">$block</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= &nbsp;</code><code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getLayout( )-&gt;createBlock( </code><code class="php string">&#039; collection/toolbar&#039; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">, microtime());</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number78 index77 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number78 index77 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php keyword">return</code> <code class="php variable">$block</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">;</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php keyword">return</code> <code class="php variable">$block</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number79 index78 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number79 index78 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">}</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">}</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number80 index79 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number80 index79 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php keyword">public</code> <code class="php keyword">function</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">getMode()</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php keyword">public</code> <code class="php keyword">function</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">getMode()</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number81 index80 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number81 index80 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">{</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">{</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number82 index81 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number82 index81 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php keyword">return</code> <code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getChild( </code><code class="php string">&#039; toolbar&#039; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">) -&gt;getCurrentMode();</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php keyword">return</code> <code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getChild( </code><code class="php string">&#039; toolbar&#039; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">) -&gt;getCurrentMode();</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number83 index82 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number83 index82 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">}</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">}</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number84 index83 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number84 index83 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: &nbsp;Unchanged: &nbsp;
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number85 index84 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number85 index84 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php keyword">public</code> <code class="php keyword">function</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">getToolbarHtml()</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php keyword">public</code> <code class="php keyword">function</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">getToolbarHtml()</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number86 index85 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number86 index85 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">{</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">{</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number87 index86 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number87 index86 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php keyword">return</code> <code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getChildHtml( </code><code class="php string">&#039; toolbar&#039; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">);</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php keyword">return</code> <code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getChildHtml( </code><code class="php string">&#039; toolbar&#039; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">);</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number88 index87 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number88 index87 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">}</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">}</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number89 index88 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number89 index88 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">}</code>Unchanged: <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">}</code>
Unchanged: </div>Unchanged: </div>
Deleted: <p> 
Deleted: &nbsp; 
Deleted: </p> 
Unchanged: </div>Unchanged: </div>
Unchanged: </td>Unchanged: </td>
Unchanged: </tr>Unchanged: </tr>
Unchanged: </tbody>Unchanged: </tbody>
Unchanged: </table>Unchanged: </table>
Unchanged: </div>Unchanged: </div>
Deleted: </div> Added: </div>
Deleted: <p> Added: <p>
Unchanged: also we need to create the block class &lsquo;collection/ toolbar&rsquo; which is used in the above classUnchanged: also we need to create the block class &lsquo;collection/ toolbar&rsquo; which is used in the above class
Deleted: </p> Added: </p>
Deleted: <div> Added: <div>
Deleted: <div class="syntaxhighlighter php" id="highlighter_373379" style="width: 3339px;margin: 1em 0px !important;font-size: 1em !important"> Added: <div class="syntaxhighlighter php" id="highlighter_268751" style="width: 3339px;margin: 1em 0px !important;font-size: 1em !important">
Unchanged: <table border="0" cellpadding="0" cellspacing="0" style="width: 3339px;margin: 0px !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;overflow: visible !important;padding: 0px !important;vertical-align: baseline !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;direction: ltr !important">Unchanged: <table border="0" cellpadding="0" cellspacing="0" style="width: 3339px;margin: 0px !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;overflow: visible !important;padding: 0px !important;vertical-align: baseline !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <tbody style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <tbody style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <tr style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <tr style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <td class="gutter">Unchanged: <td class="gutter">
Unchanged: <div class="line number1 index0 alt2">Unchanged: <div class="line number1 index0 alt2">
Unchanged: 1Unchanged: 1
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number2 index1 alt1">Unchanged: <div class="line number2 index1 alt1">
Unchanged: 2Unchanged: 2
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number3 index2 alt2">Unchanged: <div class="line number3 index2 alt2">
Unchanged: 3Unchanged: 3
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number4 index3 alt1">Unchanged: <div class="line number4 index3 alt1">
Unchanged: 4Unchanged: 4
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number5 index4 alt2">Unchanged: <div class="line number5 index4 alt2">
Unchanged: 5Unchanged: 5
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number6 index5 alt1">Unchanged: <div class="line number6 index5 alt1">
Unchanged: 6Unchanged: 6
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number7 index6 alt2">Unchanged: <div class="line number7 index6 alt2">
Unchanged: 7Unchanged: 7
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number8 index7 alt1">Unchanged: <div class="line number8 index7 alt1">
Unchanged: 8Unchanged: 8
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number9 index8 alt2">Unchanged: <div class="line number9 index8 alt2">
Unchanged: 9Unchanged: 9
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number10 index9 alt1">Unchanged: <div class="line number10 index9 alt1">
Unchanged: 10Unchanged: 10
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number11 index10 alt2">Unchanged: <div class="line number11 index10 alt2">
Unchanged: 11Unchanged: 11
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number12 index11 alt1">Unchanged: <div class="line number12 index11 alt1">
Unchanged: 12Unchanged: 12
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number13 index12 alt2">Unchanged: <div class="line number13 index12 alt2">
Unchanged: 13Unchanged: 13
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number14 index13 alt1">Unchanged: <div class="line number14 index13 alt1">
Unchanged: 14Unchanged: 14
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number15 index14 alt2">Unchanged: <div class="line number15 index14 alt2">
Unchanged: 15Unchanged: 15
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number16 index15 alt1">Unchanged: <div class="line number16 index15 alt1">
Unchanged: 16Unchanged: 16
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number17 index16 alt2">Unchanged: <div class="line number17 index16 alt2">
Unchanged: 17Unchanged: 17
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number18 index17 alt1">Unchanged: <div class="line number18 index17 alt1">
Unchanged: 18Unchanged: 18
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number19 index18 alt2">Unchanged: <div class="line number19 index18 alt2">
Unchanged: 19Unchanged: 19
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number20 index19 alt1">Unchanged: <div class="line number20 index19 alt1">
Unchanged: 20Unchanged: 20
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number21 index20 alt2">Unchanged: <div class="line number21 index20 alt2">
Unchanged: 21Unchanged: 21
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number22 index21 alt1">Unchanged: <div class="line number22 index21 alt1">
Unchanged: 22Unchanged: 22
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number23 index22 alt2">Unchanged: <div class="line number23 index22 alt2">
Unchanged: 23Unchanged: 23
Unchanged: </div>Unchanged: </div>
Unchanged: </td>Unchanged: </td>
Unchanged: <td class="code" style="width: 3297px;padding: 0px !important;line-height: 1.1em !important;vertical-align: baseline !important;border: 0px !important;float: none !important;height: auto !important;margin: 0px !important;overflow: visible !important;font-size: 1em !important;direction: ltr !important">Unchanged: <td class="code" style="width: 3297px;padding: 0px !important;line-height: 1.1em !important;vertical-align: baseline !important;border: 0px !important;float: none !important;height: auto !important;margin: 0px !important;overflow: visible !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <div class="container" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="container" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <div class="line number1 index0 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number1 index0 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt;?php</code>Unchanged: <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt;?php</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number2 index1 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number2 index1 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php keyword">class</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">Excellence_ Collection_Block_ Toolbar&nbsp; </code><code class="php keyword">extends</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">Mage_ Catalog_Block_ Product_List_ Toolbar{</code>Unchanged: <code class="php keyword">class</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">Excellence_ Collection_Block_ Toolbar&nbsp; </code><code class="php keyword">extends</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">Mage_ Catalog_Block_ Product_List_ Toolbar{</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number3 index2 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number3 index2 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php keyword">public</code> <code class="php keyword">function</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">getPagerHtml()</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php keyword">public</code> <code class="php keyword">function</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">getPagerHtml()</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number4 index3 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number4 index3 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">{</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">{</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number5 index4 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number5 index4 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php variable">$pagerBlock</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= &nbsp;</code><code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getLayout( )-&gt;createBlock( </code><code class="php string">&#039; page/html_pager&#039; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">);</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php variable">$pagerBlock</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= &nbsp;</code><code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getLayout( )-&gt;createBlock( </code><code class="php string">&#039; page/html_pager&#039; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">);</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number6 index5 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number6 index5 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; </code>&nbsp;Unchanged: <code class="php spaces">&nbsp; </code>&nbsp;
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number7 index6 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number7 index6 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php keyword">if</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">( </code><code class="php variable">$pagerBlock</code> <code class="php keyword">instanceof</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">Varien_Object) {</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php keyword">if</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">( </code><code class="php variable">$pagerBlock</code> <code class="php keyword">instanceof</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">Varien_Object) {</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number8 index7 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number8 index7 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; </code>&nbsp;Unchanged: <code class="php spaces">&nbsp; </code>&nbsp;
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number9 index8 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number9 index8 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</code><code class="php comments">/* @var $pagerBlock Mage_Page_Block_Html_Pager */</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</code><code class="php comments">/* @var $pagerBlock Mage_Page_Block_Html_Pager */</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number10 index9 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number10 index9 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</code><code class="php variable">$pagerBlock</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;setAvailableLimit( </code><code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getAvailableLimit());</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</code><code class="php variable">$pagerBlock</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;setAvailableLimit( </code><code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getAvailableLimit());</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number11 index10 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number11 index10 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; </code>&nbsp;Unchanged: <code class="php spaces">&nbsp; </code>&nbsp;
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number12 index11 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number12 index11 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</code><code class="php variable">$pagerBlock</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;setUseContainer( false)</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</code><code class="php variable">$pagerBlock</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;setUseContainer( false)</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number13 index12 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number13 index12 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;setShowPerPage( false)</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;setShowPerPage( false)</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number14 index13 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number14 index13 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;setShowAmounts( false)</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;setShowAmounts( false)</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number15 index14 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number15 index14 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;setLimitVarName( </code><code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getLimitVarName())</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;setLimitVarName( </code><code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getLimitVarName())</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number16 index15 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number16 index15 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;setPageVarName( </code><code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getPageVarName())</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;setPageVarName( </code><code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getPageVarName())</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number17 index16 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number17 index16 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;setLimit( </code><code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getLimit())</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;setLimit( </code><code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getLimit())</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number18 index17 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number18 index17 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;setCollection( </code><code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getCollection());</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;setCollection( </code><code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getCollection());</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number19 index18 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number19 index18 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</code><code class="php keyword">return</code> <code class="php variable">$pagerBlock</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;toHtml();</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</code><code class="php keyword">return</code> <code class="php variable">$pagerBlock</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;toHtml();</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number20 index19 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number20 index19 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">}</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">}</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number21 index20 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number21 index20 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php keyword">return</code> <code class="php string">&#039; &#039;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">;</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php keyword">return</code> <code class="php string">&#039; &#039;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number22 index21 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number22 index21 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">}</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">}</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number23 index22 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number23 index22 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">}</code>Unchanged: <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">}</code>
Unchanged: </div>Unchanged: </div>
Deleted: <p> 
Deleted: &nbsp; 
Deleted: </p> 
Unchanged: </div>Unchanged: </div>
Unchanged: </td>Unchanged: </td>
Unchanged: </tr>Unchanged: </tr>
Unchanged: </tbody>Unchanged: </tbody>
Unchanged: </table>Unchanged: </table>
Unchanged: </div>Unchanged: </div>
Deleted: </div> Added: </div>
Deleted: <div class="title"> Added: <div class="title">
Unchanged: Step4: PHTML FilesUnchanged: Step4: PHTML Files
Deleted: </div> Added: </div>
Deleted: <p> Added: <p>
Unchanged: The last file remaining is the collections.phtml file. In this we will put the html code to display our category collectionUnchanged: The last file remaining is the collections.phtml file. In this we will put the html code to display our category collection
Deleted: </p> Added: </p>
Deleted: <div> Added: <div>
Deleted: <div class="syntaxhighlighter php" id="highlighter_673663" style="width: 3339px;margin: 1em 0px !important;font-size: 1em !important"> Added: <div class="syntaxhighlighter php" id="highlighter_793744" style="width: 3339px;margin: 1em 0px !important;font-size: 1em !important">
Unchanged: <table border="0" cellpadding="0" cellspacing="0" style="width: 3339px;margin: 0px !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;overflow: visible !important;padding: 0px !important;vertical-align: baseline !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;direction: ltr !important">Unchanged: <table border="0" cellpadding="0" cellspacing="0" style="width: 3339px;margin: 0px !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;overflow: visible !important;padding: 0px !important;vertical-align: baseline !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <tbody style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <tbody style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <tr style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <tr style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <td class="gutter">Unchanged: <td class="gutter">
Unchanged: <div class="line number1 index0 alt2">Unchanged: <div class="line number1 index0 alt2">
Unchanged: 1Unchanged: 1
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number2 index1 alt1">Unchanged: <div class="line number2 index1 alt1">
Unchanged: 2Unchanged: 2
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number3 index2 alt2">Unchanged: <div class="line number3 index2 alt2">
Unchanged: 3Unchanged: 3
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number4 index3 alt1">Unchanged: <div class="line number4 index3 alt1">
Unchanged: 4Unchanged: 4
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number5 index4 alt2">Unchanged: <div class="line number5 index4 alt2">
Unchanged: 5Unchanged: 5
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number6 index5 alt1">Unchanged: <div class="line number6 index5 alt1">
Unchanged: 6Unchanged: 6
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number7 index6 alt2">Unchanged: <div class="line number7 index6 alt2">
Unchanged: 7Unchanged: 7
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number8 index7 alt1">Unchanged: <div class="line number8 index7 alt1">
Unchanged: 8Unchanged: 8
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number9 index8 alt2">Unchanged: <div class="line number9 index8 alt2">
Unchanged: 9Unchanged: 9
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number10 index9 alt1">Unchanged: <div class="line number10 index9 alt1">
Unchanged: 10Unchanged: 10
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number11 index10 alt2">Unchanged: <div class="line number11 index10 alt2">
Unchanged: 11Unchanged: 11
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number12 index11 alt1">Unchanged: <div class="line number12 index11 alt1">
Unchanged: 12Unchanged: 12
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number13 index12 alt2">Unchanged: <div class="line number13 index12 alt2">
Unchanged: 13Unchanged: 13
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number14 index13 alt1">Unchanged: <div class="line number14 index13 alt1">
Unchanged: 14Unchanged: 14
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number15 index14 alt2">Unchanged: <div class="line number15 index14 alt2">
Unchanged: 15Unchanged: 15
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number16 index15 alt1">Unchanged: <div class="line number16 index15 alt1">
Unchanged: 16Unchanged: 16
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number17 index16 alt2">Unchanged: <div class="line number17 index16 alt2">
Unchanged: 17Unchanged: 17
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number18 index17 alt1">Unchanged: <div class="line number18 index17 alt1">
Unchanged: 18Unchanged: 18
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number19 index18 alt2">Unchanged: <div class="line number19 index18 alt2">
Unchanged: 19Unchanged: 19
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number20 index19 alt1">Unchanged: <div class="line number20 index19 alt1">
Unchanged: 20Unchanged: 20
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number21 index20 alt2">Unchanged: <div class="line number21 index20 alt2">
Unchanged: 21Unchanged: 21
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number22 index21 alt1">Unchanged: <div class="line number22 index21 alt1">
Unchanged: 22Unchanged: 22
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number23 index22 alt2">Unchanged: <div class="line number23 index22 alt2">
Unchanged: 23Unchanged: 23
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number24 index23 alt1">Unchanged: <div class="line number24 index23 alt1">
Unchanged: 24Unchanged: 24
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number25 index24 alt2">Unchanged: <div class="line number25 index24 alt2">
Unchanged: 25Unchanged: 25
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number26 index25 alt1">Unchanged: <div class="line number26 index25 alt1">
Unchanged: 26Unchanged: 26
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number27 index26 alt2">Unchanged: <div class="line number27 index26 alt2">
Unchanged: 27Unchanged: 27
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number28 index27 alt1">Unchanged: <div class="line number28 index27 alt1">
Unchanged: 28Unchanged: 28
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number29 index28 alt2">Unchanged: <div class="line number29 index28 alt2">
Unchanged: 29Unchanged: 29
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number30 index29 alt1">Unchanged: <div class="line number30 index29 alt1">
Unchanged: 30Unchanged: 30
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number31 index30 alt2">Unchanged: <div class="line number31 index30 alt2">
Unchanged: 31Unchanged: 31
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number32 index31 alt1">Unchanged: <div class="line number32 index31 alt1">
Unchanged: 32Unchanged: 32
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number33 index32 alt2">Unchanged: <div class="line number33 index32 alt2">
Unchanged: 33Unchanged: 33
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number34 index33 alt1">Unchanged: <div class="line number34 index33 alt1">
Unchanged: 34Unchanged: 34
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number35 index34 alt2">Unchanged: <div class="line number35 index34 alt2">
Unchanged: 35Unchanged: 35
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number36 index35 alt1">Unchanged: <div class="line number36 index35 alt1">
Unchanged: 36Unchanged: 36
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number37 index36 alt2">Unchanged: <div class="line number37 index36 alt2">
Unchanged: 37Unchanged: 37
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number38 index37 alt1">Unchanged: <div class="line number38 index37 alt1">
Unchanged: 38Unchanged: 38
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number39 index38 alt2">Unchanged: <div class="line number39 index38 alt2">
Unchanged: 39Unchanged: 39
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number40 index39 alt1">Unchanged: <div class="line number40 index39 alt1">
Unchanged: 40Unchanged: 40
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number41 index40 alt2">Unchanged: <div class="line number41 index40 alt2">
Unchanged: 41Unchanged: 41
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number42 index41 alt1">Unchanged: <div class="line number42 index41 alt1">
Unchanged: 42Unchanged: 42
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number43 index42 alt2">Unchanged: <div class="line number43 index42 alt2">
Unchanged: 43Unchanged: 43
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number44 index43 alt1">Unchanged: <div class="line number44 index43 alt1">
Unchanged: 44Unchanged: 44
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number45 index44 alt2">Unchanged: <div class="line number45 index44 alt2">
Unchanged: 45Unchanged: 45
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number46 index45 alt1">Unchanged: <div class="line number46 index45 alt1">
Unchanged: 46Unchanged: 46
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number47 index46 alt2">Unchanged: <div class="line number47 index46 alt2">
Unchanged: 47Unchanged: 47
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number48 index47 alt1">Unchanged: <div class="line number48 index47 alt1">
Unchanged: 48Unchanged: 48
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number49 index48 alt2">Unchanged: <div class="line number49 index48 alt2">
Unchanged: 49Unchanged: 49
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number50 index49 alt1">Unchanged: <div class="line number50 index49 alt1">
Unchanged: 50Unchanged: 50
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number51 index50 alt2">Unchanged: <div class="line number51 index50 alt2">
Unchanged: 51Unchanged: 51
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number52 index51 alt1">Unchanged: <div class="line number52 index51 alt1">
Unchanged: 52Unchanged: 52
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number53 index52 alt2">Unchanged: <div class="line number53 index52 alt2">
Unchanged: 53Unchanged: 53
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number54 index53 alt1">Unchanged: <div class="line number54 index53 alt1">
Unchanged: 54Unchanged: 54
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number55 index54 alt2">Unchanged: <div class="line number55 index54 alt2">
Unchanged: 55Unchanged: 55
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number56 index55 alt1">Unchanged: <div class="line number56 index55 alt1">
Unchanged: 56Unchanged: 56
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number57 index56 alt2">Unchanged: <div class="line number57 index56 alt2">
Unchanged: 57Unchanged: 57
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number58 index57 alt1">Unchanged: <div class="line number58 index57 alt1">
Unchanged: 58Unchanged: 58
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number59 index58 alt2">Unchanged: <div class="line number59 index58 alt2">
Unchanged: 59Unchanged: 59
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number60 index59 alt1">Unchanged: <div class="line number60 index59 alt1">
Unchanged: 60Unchanged: 60
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number61 index60 alt2">Unchanged: <div class="line number61 index60 alt2">
Unchanged: 61Unchanged: 61
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number62 index61 alt1">Unchanged: <div class="line number62 index61 alt1">
Unchanged: 62Unchanged: 62
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number63 index62 alt2">Unchanged: <div class="line number63 index62 alt2">
Unchanged: 63Unchanged: 63
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number64 index63 alt1">Unchanged: <div class="line number64 index63 alt1">
Unchanged: 64Unchanged: 64
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number65 index64 alt2">Unchanged: <div class="line number65 index64 alt2">
Unchanged: 65Unchanged: 65
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number66 index65 alt1">Unchanged: <div class="line number66 index65 alt1">
Unchanged: 66Unchanged: 66
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number67 index66 alt2">Unchanged: <div class="line number67 index66 alt2">
Unchanged: 67Unchanged: 67
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number68 index67 alt1">Unchanged: <div class="line number68 index67 alt1">
Unchanged: 68Unchanged: 68
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number69 index68 alt2">Unchanged: <div class="line number69 index68 alt2">
Unchanged: 69Unchanged: 69
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number70 index69 alt1">Unchanged: <div class="line number70 index69 alt1">
Unchanged: 70Unchanged: 70
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number71 index70 alt2">Unchanged: <div class="line number71 index70 alt2">
Unchanged: 71Unchanged: 71
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number72 index71 alt1">Unchanged: <div class="line number72 index71 alt1">
Unchanged: 72Unchanged: 72
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number73 index72 alt2">Unchanged: <div class="line number73 index72 alt2">
Unchanged: 73Unchanged: 73
Unchanged: </div>Unchanged: </div>
Unchanged: </td>Unchanged: </td>
Unchanged: <td class="code" style="width: 3297px;padding: 0px !important;line-height: 1.1em !important;vertical-align: baseline !important;border: 0px !important;float: none !important;height: auto !important;margin: 0px !important;overflow: visible !important;font-size: 1em !important;direction: ltr !important">Unchanged: <td class="code" style="width: 3297px;padding: 0px !important;line-height: 1.1em !important;vertical-align: baseline !important;border: 0px !important;float: none !important;height: auto !important;margin: 0px !important;overflow: visible !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <div class="container" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="container" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <div class="line number1 index0 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number1 index0 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; ?php&nbsp;</code><code class="php functions">echo</code> <code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getMessagesBlock()-&gt; getGroupedHtml() ?&gt;</code>Unchanged: <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; ?php&nbsp;</code><code class="php functions">echo</code> <code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getMessagesBlock()-&gt; getGroupedHtml() ?&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number2 index1 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number2 index1 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; ?php&nbsp;</code><code class="php variable">$collection</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= &nbsp;</code><code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getCollection(); ?&gt;</code>Unchanged: <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; ?php&nbsp;</code><code class="php variable">$collection</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= &nbsp;</code><code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getCollection(); ?&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number3 index2 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number3 index2 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; div&nbsp;</code><code class="php keyword">class</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= </code><code class="php string">&quot; page-title&quot; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&gt;</code>Unchanged: <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; div&nbsp;</code><code class="php keyword">class</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= </code><code class="php string">&quot; page-title&quot; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number4 index3 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number4 index3 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; h1&gt;&lt;?php&nbsp; </code><code class="php functions">echo</code> <code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;__(</code><code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getTitle()) ?&gt;&lt;/h1&gt;</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; h1&gt;&lt;?php&nbsp; </code><code class="php functions">echo</code> <code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;__(</code><code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getTitle()) ?&gt;&lt;/h1&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number5 index4 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number5 index4 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; /div&gt;</code>Unchanged: <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; /div&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number6 index5 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number6 index5 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; ?php&nbsp;</code><code class="php functions">echo</code> <code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getToolbarHtml(); ?&gt;</code>Unchanged: <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; ?php&nbsp;</code><code class="php functions">echo</code> <code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getToolbarHtml(); ?&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number7 index6 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number7 index6 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; ?php&nbsp;</code><code class="php keyword">if</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">( </code><code class="php variable">$collection</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getSize()): ?&gt;</code>Unchanged: <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; ?php&nbsp;</code><code class="php keyword">if</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">( </code><code class="php variable">$collection</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getSize()): ?&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number8 index7 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number8 index7 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: &nbsp;Unchanged: &nbsp;
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number9 index8 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number9 index8 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; ?php&nbsp;</code><code class="php keyword">if</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">( </code><code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getMode() !=</code><code class="php string">&#039; grid&#039;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">): ?&gt;</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; ?php&nbsp;</code><code class="php keyword">if</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">( </code><code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getMode() !=</code><code class="php string">&#039; grid&#039;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">): ?&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number10 index9 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number10 index9 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt;!-- List Model --&gt;</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt;!-- List Model --&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number11 index10 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number11 index10 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; ?php&nbsp;</code><code class="php variable">$_iterator</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= 0; ?&gt;</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; ?php&nbsp;</code><code class="php variable">$_iterator</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= 0; ?&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number12 index11 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number12 index11 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; ol&nbsp;</code><code class="php keyword">class</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= </code><code class="php string">&quot; products-list&quot;</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">id= </code><code class="php string">&quot; products-list&quot; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&gt;</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; ol&nbsp;</code><code class="php keyword">class</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= </code><code class="php string">&quot; products-list&quot;</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">id= </code><code class="php string">&quot; products-list&quot; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number13 index12 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number13 index12 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; ?php&nbsp;</code><code class="php keyword">foreach</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">( </code><code class="php variable">$collection</code> <code class="php keyword">as</code> <code class="php variable">$category</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">):</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; ?php&nbsp;</code><code class="php keyword">foreach</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">( </code><code class="php variable">$collection</code> <code class="php keyword">as</code> <code class="php variable">$category</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">):</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number14 index13 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number14 index13 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php variable">$category</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= Mage::getModel( </code><code class="php string">&#039; catalog/category&#039; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">) -&gt;load(</code><code class="php variable">$category</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getId()); ?&gt;</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php variable">$category</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= Mage::getModel( </code><code class="php string">&#039; catalog/category&#039; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">) -&gt;load(</code><code class="php variable">$category</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getId()); ?&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number15 index14 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number15 index14 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; li&nbsp;</code><code class="php keyword">class</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= </code><code class="php string">&quot; item&lt;?php if( ++$_iterator == sizeof($collection) ): ?&gt; last&lt;?php endif; ?&gt;&quot;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&gt;</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; li&nbsp;</code><code class="php keyword">class</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= </code><code class="php string">&quot; item&lt;?php if( ++$_iterator == sizeof($collection) ): ?&gt; last&lt;?php endif; ?&gt;&quot;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number16 index15 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number16 index15 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; ?php&nbsp;</code><code class="php comments">// Product Image ?&gt;</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; ?php&nbsp;</code><code class="php comments">// Product Image ?&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number17 index16 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number17 index16 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt;a href=</code><code class="php string">&quot;&lt;?php echo $category-&gt;getUrl() ?&gt;&quot;</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">title= </code><code class="php string">&quot;&lt;?php echo $this-&gt;stripTags( $category-&gt;getName()); ?&gt;&quot;</code> <code class="php keyword">class</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= </code><code class="php string">&quot; product-image&quot; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&gt;&lt;img src=</code><code class="php string">&quot;&lt;?php echo $category-&gt; getImageUrl() ?&gt;&quot;</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">width= </code><code class="php string">&quot; 135&quot;</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">height= </code><code class="php string">&quot; 135&quot;</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">alt= </code><code class="php string">&quot;&lt;?php echo $this-&gt;stripTags( $category-&gt;getName()); ?&gt;&quot;</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">/ &gt;&lt;/a&gt;</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt;a href=</code><code class="php string">&quot;&lt;?php echo $category-&gt;getUrl() ?&gt;&quot;</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">title= </code><code class="php string">&quot;&lt;?php echo $this-&gt;stripTags( $category-&gt;getName()); ?&gt;&quot;</code> <code class="php keyword">class</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= </code><code class="php string">&quot; product-image&quot; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&gt;&lt;img src=</code><code class="php string">&quot;&lt;?php echo $category-&gt; getImageUrl() ?&gt;&quot;</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">width= </code><code class="php string">&quot; 135&quot;</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">height= </code><code class="php string">&quot; 135&quot;</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">alt= </code><code class="php string">&quot;&lt;?php echo $this-&gt;stripTags( $category-&gt;getName()); ?&gt;&quot;</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">/ &gt;&lt;/a&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number18 index17 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number18 index17 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; ?php&nbsp;</code><code class="php comments">// Product description ?&gt;</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; ?php&nbsp;</code><code class="php comments">// Product description ?&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number19 index18 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number19 index18 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; div&nbsp;</code><code class="php keyword">class</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= </code><code class="php string">&quot; product-shop&quot; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&gt;</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; div&nbsp;</code><code class="php keyword">class</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= </code><code class="php string">&quot; product-shop&quot; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number20 index19 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number20 index19 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; div&nbsp;</code><code class="php keyword">class</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= </code><code class="php string">&quot; f-fix&quot;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&gt;</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; div&nbsp;</code><code class="php keyword">class</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= </code><code class="php string">&quot; f-fix&quot;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number21 index20 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number21 index20 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; ?php&nbsp;</code><code class="php variable">$_productNameStripped</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= &nbsp;</code><code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;stripTags( </code><code class="php variable">$category</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getName(), null, true); ?&gt;</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; ?php&nbsp;</code><code class="php variable">$_productNameStripped</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= &nbsp;</code><code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;stripTags( </code><code class="php variable">$category</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getName(), null, true); ?&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number22 index21 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number22 index21 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; h2&nbsp;</code><code class="php keyword">class</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= </code><code class="php string">&quot; product-name&quot; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&gt;&lt;a href=</code><code class="php string">&quot;&lt;?php echo $category-&gt;getUrl() ?&gt;&quot;</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">title= </code><code class="php string">&quot;&lt;?php echo $_productNameStripped; ?&gt;&quot;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&gt; &lt;?php&nbsp; </code><code class="php functions">echo</code> <code class="php variable">$category</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getName(); ?&gt;&lt;/a&gt; &lt;/h2&gt;</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; h2&nbsp;</code><code class="php keyword">class</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= </code><code class="php string">&quot; product-name&quot; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&gt;&lt;a href=</code><code class="php string">&quot;&lt;?php echo $category-&gt;getUrl() ?&gt;&quot;</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">title= </code><code class="php string">&quot;&lt;?php echo $_productNameStripped; ?&gt;&quot;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&gt; &lt;?php&nbsp; </code><code class="php functions">echo</code> <code class="php variable">$category</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getName(); ?&gt;&lt;/a&gt; &lt;/h2&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number23 index22 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number23 index22 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; div&nbsp;</code><code class="php keyword">class</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= </code><code class="php string">&quot;desc std&quot;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&gt;</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; div&nbsp;</code><code class="php keyword">class</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= </code><code class="php string">&quot;desc std&quot;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number24 index23 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number24 index23 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; ?php&nbsp;</code><code class="php functions">echo</code> <code class="php variable">$category</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getDescription(); ?&gt;</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; ?php&nbsp;</code><code class="php functions">echo</code> <code class="php variable">$category</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getDescription(); ?&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number25 index24 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number25 index24 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; /div&gt;</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; /div&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number26 index25 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number26 index25 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; ?php&nbsp;</code><code class="php keyword">if</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">( </code><code class="php variable">$category</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getChildrenCount()){ ?&gt;</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; ?php&nbsp;</code><code class="php keyword">if</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">( </code><code class="php variable">$category</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getChildrenCount()){ ?&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number27 index26 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number27 index26 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; div&gt;</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; div&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number28 index27 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number28 index27 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt;a href=</code><code class="php string">&#039;&lt;?php echo $this-&gt;getUrl( &#039;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">*</code><code class="php comments">/*/ *&#039;,array( &#039;category_ id&#039;=&gt; $category-&gt; getId()))?&gt; &#039;&gt;View Sub Category&lt;/ a&gt;</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt;a href=</code><code class="php string">&#039;&lt;?php echo $this-&gt;getUrl( &#039;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">*</code><code class="php comments">/*/ *&#039;,array( &#039;category_ id&#039;=&gt; $category-&gt; getId()))?&gt; &#039;&gt;View Sub Category&lt;/ a&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number29 index28 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number29 index28 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;</code><code class="php comments">&lt; /div&gt;</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;</code><code class="php comments">&lt; /div&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number30 index29 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number30 index29 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;</code><code class="php comments">&lt;?php } ?&gt;</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;</code><code class="php comments">&lt;?php } ?&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number31 index30 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number31 index30 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; </code><code class="php comments">&lt; /div&gt;</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; </code><code class="php comments">&lt; /div&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number32 index31 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number32 index31 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</code><code class="php comments">&lt; /div&gt;</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</code><code class="php comments">&lt; /div&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number33 index32 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number33 index32 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php comments">&lt; /li&gt;</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php comments">&lt; /li&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number34 index33 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number34 index33 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php comments">&lt;?php endforeach; ?&gt;</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php comments">&lt;?php endforeach; ?&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number35 index34 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number35 index34 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php comments">&lt; /ol&gt;</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php comments">&lt; /ol&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number36 index35 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number36 index35 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php comments">&lt;script type=&quot;text/ javascript&quot; &gt;decorateList( &#039;products-list&#039;, &#039;none-recursive&#039; )&lt;/script&gt;</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php comments">&lt;script type=&quot;text/ javascript&quot; &gt;decorateList( &#039;products-list&#039;, &#039;none-recursive&#039; )&lt;/script&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number37 index36 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number37 index36 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php comments">&lt;?php else: ?&gt;</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php comments">&lt;?php else: ?&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number38 index37 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number38 index37 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: &nbsp;Unchanged: &nbsp;
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number39 index38 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number39 index38 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php comments">&lt;!-- Grid Mode --&gt;</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php comments">&lt;!-- Grid Mode --&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number40 index39 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number40 index39 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: &nbsp;Unchanged: &nbsp;
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number41 index40 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number41 index40 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php comments">&lt;?php $_collectionSize = $collection-&gt;count() ?&gt;</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php comments">&lt;?php $_collectionSize = $collection-&gt;count() ?&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number42 index41 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number42 index41 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php comments">&lt;?php</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php comments">&lt;?php</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number43 index42 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number43 index42 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php comments">$_columnCount = $this-&gt;getColumnCount();</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php comments">$_columnCount = $this-&gt;getColumnCount();</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number44 index43 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number44 index43 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php comments">if( !$_columnCount){</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php comments">if( !$_columnCount){</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number45 index44 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number45 index44 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</code><code class="php comments">$_columnCount = 3;</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</code><code class="php comments">$_columnCount = 3;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number46 index45 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number46 index45 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php comments">}</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php comments">}</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number47 index46 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number47 index46 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php comments">?&gt;</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php comments">?&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number48 index47 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number48 index47 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php comments">&lt;?php $i=0; foreach ($collection as $category):</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php comments">&lt;?php $i=0; foreach ($collection as $category):</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number49 index48 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number49 index48 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php comments">$category = Mage::getModel( &#039;catalog/ category&#039; )-&gt;load($category-&gt; getId());</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php comments">$category = Mage::getModel( &#039;catalog/ category&#039; )-&gt;load($category-&gt; getId());</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number50 index49 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number50 index49 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php comments">?&gt;</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php comments">?&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number51 index50 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number51 index50 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php comments">&lt;?php if ($i++%$_columnCount==0): ?&gt;</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php comments">&lt;?php if ($i++%$_columnCount==0): ?&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number52 index51 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number52 index51 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php comments">&lt;ul class=&quot;products- grid&quot;&gt;</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php comments">&lt;ul class=&quot;products- grid&quot;&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number53 index52 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number53 index52 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php comments">&lt;?php endif ?&gt;</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php comments">&lt;?php endif ?&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number54 index53 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number54 index53 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</code><code class="php comments">&lt;li class=&quot;item&lt;?php if(($i-1)%$_columnCount==0): ?&gt; first&lt;?php elseif($i%$_columnCount==0): ?&gt; last&lt;?php endif; ?&gt;&quot;&gt;</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</code><code class="php comments">&lt;li class=&quot;item&lt;?php if(($i-1)%$_columnCount==0): ?&gt; first&lt;?php elseif($i%$_columnCount==0): ?&gt; last&lt;?php endif; ?&gt;&quot;&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number55 index54 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number55 index54 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; </code><code class="php comments">&lt;a href=&quot;&lt;?php echo $category-&gt;getUrl() ?&gt;&quot; title=&quot;&lt;?php echo $this-&gt;stripTags( $category-&gt;getName()); ?&gt;&quot; class=&quot;product- image&quot;&gt;&lt;img src=&quot;&lt;?php echo $category-&gt; getImageUrl() ?&gt;&quot; width=&quot;135&quot; height=&quot;135&quot; alt=&quot;&lt;?php echo $this-&gt;stripTags( $category-&gt;getName()) ?&gt;&quot; /&gt;&lt;/a&gt;</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; </code><code class="php comments">&lt;a href=&quot;&lt;?php echo $category-&gt;getUrl() ?&gt;&quot; title=&quot;&lt;?php echo $this-&gt;stripTags( $category-&gt;getName()); ?&gt;&quot; class=&quot;product- image&quot;&gt;&lt;img src=&quot;&lt;?php echo $category-&gt; getImageUrl() ?&gt;&quot; width=&quot;135&quot; height=&quot;135&quot; alt=&quot;&lt;?php echo $this-&gt;stripTags( $category-&gt;getName()) ?&gt;&quot; /&gt;&lt;/a&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number56 index55 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number56 index55 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; </code><code class="php comments">&lt;h2 class=&quot;product- name&quot;&gt;&lt;a href=&quot;&lt;?php echo $category-&gt;getUrl() ?&gt;&quot; title=&quot;&lt;?php echo $category-&gt;getUrl() ?&gt;&quot;&gt;&lt;?php echo $category-&gt;getName() ?&gt;&lt;/a&gt; &lt;/h2&gt;</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; </code><code class="php comments">&lt;h2 class=&quot;product- name&quot;&gt;&lt;a href=&quot;&lt;?php echo $category-&gt;getUrl() ?&gt;&quot; title=&quot;&lt;?php echo $category-&gt;getUrl() ?&gt;&quot;&gt;&lt;?php echo $category-&gt;getName() ?&gt;&lt;/a&gt; &lt;/h2&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number57 index56 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number57 index56 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; </code><code class="php comments">&lt;?php if($category- &gt;getChildrenCount()){ ?&gt;</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; </code><code class="php comments">&lt;?php if($category- &gt;getChildrenCount()){ ?&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number58 index57 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number58 index57 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; </code><code class="php comments">&lt; div&gt;</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; </code><code class="php comments">&lt; div&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number59 index58 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number59 index58 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;</code><code class="php comments">&lt;a href=&#039;&lt;?php echo $this-&gt;getUrl( &#039;*/</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">*/ *</code><code class="php string">&#039; ,array(&#039; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">category_ id</code><code class="php string">&#039; =&gt;$category-&gt;getId( )))?&gt;&#039; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&gt;View Sub Category&lt;/ a&gt;</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;</code><code class="php comments">&lt;a href=&#039;&lt;?php echo $this-&gt;getUrl( &#039;*/</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">*/ *</code><code class="php string">&#039; ,array(&#039; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">category_ id</code><code class="php string">&#039; =&gt;$category-&gt;getId( )))?&gt;&#039; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&gt;View Sub Category&lt;/ a&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number60 index59 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number60 index59 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; /div&gt;</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; /div&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number61 index60 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number61 index60 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt;?php } ?&gt;</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt;?php } ?&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number62 index61 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number62 index61 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; /li&gt;</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; /li&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number63 index62 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number63 index62 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; ?php&nbsp;</code><code class="php keyword">if</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">( </code><code class="php variable">$i</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">%</code><code class="php variable">$_columnCount</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">==0 ||&nbsp;</code><code class="php variable">$i</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= =</code><code class="php variable">$_collectionSize</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">): ?&gt;</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; ?php&nbsp;</code><code class="php keyword">if</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">( </code><code class="php variable">$i</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">%</code><code class="php variable">$_columnCount</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">==0 ||&nbsp;</code><code class="php variable">$i</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">= =</code><code class="php variable">$_collectionSize</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">): ?&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number64 index63 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number64 index63 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; /ul&gt;</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; /ul&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number65 index64 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number65 index64 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; ?php&nbsp;</code><code class="php keyword">endif</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">?&gt;</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; ?php&nbsp;</code><code class="php keyword">endif</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">?&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number66 index65 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number66 index65 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; ?php&nbsp;</code><code class="php keyword">endforeach</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">?&gt;</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; ?php&nbsp;</code><code class="php keyword">endforeach</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">?&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number67 index66 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number67 index66 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt;script type=</code><code class="php string">&quot; text/javascript&quot; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&gt; decorateGeneric( $$(</code><code class="php string">&#039; ul.products-grid&#039; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">), [</code><code class="php string">&#039; odd&#039;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">,</code><code class="php string">&#039; even&#039;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">,</code><code class="php string">&#039; first&#039;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">,</code><code class="php string">&#039; last&#039;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">]) &lt;/script&gt;</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt;script type=</code><code class="php string">&quot; text/javascript&quot; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&gt; decorateGeneric( $$(</code><code class="php string">&#039; ul.products-grid&#039; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">), [</code><code class="php string">&#039; odd&#039;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">,</code><code class="php string">&#039; even&#039;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">,</code><code class="php string">&#039; first&#039;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">,</code><code class="php string">&#039; last&#039;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">]) &lt;/script&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number68 index67 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number68 index67 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; ?php&nbsp;</code><code class="php keyword">endif</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">; ?&gt;</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; ?php&nbsp;</code><code class="php keyword">endif</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">; ?&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number69 index68 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number69 index68 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: &nbsp;Unchanged: &nbsp;
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number70 index69 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number70 index69 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; ?php&nbsp;</code><code class="php functions">echo</code> <code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getToolbarHtml(); ?&gt;</code>Unchanged: <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; ?php&nbsp;</code><code class="php functions">echo</code> <code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;getToolbarHtml(); ?&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number71 index70 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number71 index70 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; ?php&nbsp;</code><code class="php keyword">else</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">: ?&gt;</code>Unchanged: <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; ?php&nbsp;</code><code class="php keyword">else</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">: ?&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number72 index71 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number72 index71 alt1" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; p&gt;&lt;?php&nbsp; </code><code class="php functions">echo</code> <code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;__(</code><code class="php string">&#039;The collection is empty.&#039;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">); ?&gt;&lt;/p&gt;</code>Unchanged: <code class="php spaces">&nbsp; &nbsp;&nbsp;&nbsp; </code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; p&gt;&lt;?php&nbsp; </code><code class="php functions">echo</code> <code class="php variable">$this</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">- &gt;__(</code><code class="php string">&#039;The collection is empty.&#039;</code><code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">); ?&gt;&lt;/p&gt;</code>
Unchanged: </div>Unchanged: </div>
Unchanged: <div class="line number73 index72 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">Unchanged: <div class="line number73 index72 alt2" style="border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;padding: 0px 1em !important;vertical-align: baseline !important;width: auto !important;font-size: 1em !important;direction: ltr !important">
Unchanged: <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; ?php&nbsp;</code><code class="php keyword">endif</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">?&gt;</code>Unchanged: <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">&lt; ?php&nbsp;</code><code class="php keyword">endif</code> <code class="php plain" style="padding: 0px !important;font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important;font-size: 1em !important;color: black !important;border: 0px !important;float: none !important;height: auto !important;line-height: 1.1em !important;margin: 0px !important;overflow: visible !important;vertical-align: baseline !important;width: auto !important;direction: ltr !important">?&gt;</code>
Unchanged: </div>Unchanged: </div>
Deleted: <p> 
Deleted: &nbsp; 
Deleted: </p> 
Unchanged: </div>Unchanged: </div>
Unchanged: </td>Unchanged: </td>
Unchanged: </tr>Unchanged: </tr>
Unchanged: </tbody>Unchanged: </tbody>
Unchanged: </table>Unchanged: </table>
Unchanged: </div>Unchanged: </div>
Deleted: </div> Added: </div>
Deleted: <p> Added: <p>
Unchanged: Now open your modules index URL in my case www.mymagento.com/collection and there you will see the category list.Unchanged: Now open your modules index URL in my case www.mymagento.com/collection and there you will see the category list.
Deleted: </p> Added: </p>
Deleted: <p> 
Deleted: <span>- See more at: http://excellencemagentoblog.com/ magento-category-collection- gridlist-view#sthash.q04ixQga.dpuf</span> Added: <span>- See more at: http://excellencemagentoblog.com/ magento-category-collection- gridlist-view#sthash.6JKu5TTR.dpuf</span>
Deleted: </p> 
 Added: </div>

Note: Spaces may be added to comparison text to allow better line wrapping.

No comments yet.

Leave a Reply