Skip to content

Instantly share code, notes, and snippets.

@EdwardIII
Created March 19, 2013 13:58
Show Gist options
  • Save EdwardIII/5196316 to your computer and use it in GitHub Desktop.
Save EdwardIII/5196316 to your computer and use it in GitHub Desktop.
<?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-head">
<p>Show
<select>
<option>5</option>
<option>10</option>
<option>15</option>
<option>20</option>
</select>
items
</p>
</div>
<div class="sub-categories clearfix">
<?php foreach ($_child_categories as $_child_category): ?>
<?php $_child_category = Mage::getModel('catalog/category')->load($_child_category->getId()) ?>
<div class="category clearfix">
<?php //var_dump(get_class_methods(get_class($_child_category))) ?>
<?php $_child_category->getUrl() ?>
<a href="<?php echo $this->getCategoryUrl($_child_category) ?>"><img src="<?php echo $_child_category->getImageUrl() ?>" /></a>
<a href="<?php echo $this->getCategoryUrl($_child_category) ?>" class="cat-desc"><?php echo $this->htmlEscape($_child_category->getName()) ?></a>
<a href="<?php echo $this->getCategoryUrl($_child_category) ?>" class="detail">Detail ↪</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