Created
March 12, 2013 15:57
-
-
Save EdwardIII/5144087 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Magento | |
| * | |
| * NOTICE OF LICENSE | |
| * | |
| * This source file is subject to the Academic Free License (AFL 3.0) | |
| * that is bundled with this package in the file LICENSE_AFL.txt. | |
| * It is also available through the world-wide-web at this URL: | |
| * http://opensource.org/licenses/afl-3.0.php | |
| * If you did not receive a copy of the license and are unable to | |
| * obtain it through the world-wide-web, please send an email | |
| * to [email protected] so we can send you a copy immediately. | |
| * | |
| * DISCLAIMER | |
| * | |
| * Do not edit or add to this file if you wish to upgrade Magento to newer | |
| * versions in the future. If you wish to customize Magento for your | |
| * needs please refer to http://www.magentocommerce.com for more information. | |
| * | |
| * @category design | |
| * @package base_default | |
| * @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com) | |
| * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
| */ | |
| ?> | |
| <?php | |
| /** | |
| * Category view template | |
| * | |
| * @see Mage_Catalog_Block_Category_View | |
| */ | |
| ?> | |
| <?php | |
| $_helper = $this->helper('catalog/output'); | |
| $_category = $this->getCurrentCategory(); | |
| $_imgHtml = ''; | |
| if ($_imgUrl = $_category->getImageUrl()) { | |
| $_imgHtml = '<p class="category-image"><img src="'.$_imgUrl.'" alt="'.$this->htmlEscape($_category->getName()).'" title="'.$this->htmlEscape($_category->getName()).'" /></p>'; | |
| $_imgHtml = $_helper->categoryAttribute($_category, $_imgHtml, 'image'); | |
| } | |
| ?> | |
| <div class="page-title category-title"> | |
| <?php if($this->IsRssCatalogEnable() && $this->IsTopCategory()): ?> | |
| <a href="<?php echo $this->getRssLink() ?>" class="link-rss"><?php echo $this->__('Subscribe to RSS Feed') ?></a> | |
| <?php endif; ?> | |
| <h1><?php echo $_helper->categoryAttribute($_category, $_category->getName(), 'name') ?></h1> | |
| </div> | |
| <?php echo $this->getMessagesBlock()->getGroupedHtml() ?> | |
| <?php if($_imgUrl): ?> | |
| <?php echo $_imgHtml ?> | |
| <?php endif; ?> | |
| <?php //$_category=$this->getCurrentCategory() ?> | |
| <?php if($_description=$_category->getDescription()): ?> | |
| <div class="category-description std"> | |
| <?php echo $_helper->categoryAttribute($_category, $_description, 'description') ?> | |
| </div> | |
| <?php endif; ?> | |
| <?php $_child_categories = $_category->getChildrenCategories($_category->getData('entity_id')) ?> | |
| <?php if($_child_categories): ?> | |
| <div class="sub-categories"> | |
| <?php foreach ($_child_categories as $_child_category): ?> | |
| <div class="category"> | |
| <?php //var_dump(get_class_methods(get_class($_child_category))) ?> | |
| <a href="<?php echo $this->getCategoryUrl($_child_category) ?>"><?php var_dump($_child_category->getImageUrl()) ?></a> | |
| <a href="<?php echo $this->getCategoryUrl($_child_category) ?>"><?php echo $this->htmlEscape($_child_category->getName()) ?></a> | |
| </div> | |
| <?php endforeach; ?> | |
| </div> | |
| <?php endif; ?> | |
| <?php if($this->isContentMode()): ?> | |
| <?php echo $this->getCmsBlockHtml() ?> | |
| <?php elseif($this->isMixedMode()): ?> | |
| <?php echo $this->getCmsBlockHtml() ?> | |
| <?php echo $this->getProductListHtml() ?> | |
| <?php else: ?> | |
| <?php echo $this->getProductListHtml() ?> | |
| <?php endif; ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment