Powerful block system in Magento

When you read the class  Mage_Core_Block_Abstract,you will know that magento creates a very powerful block system.

First of all,  Mage_Core_Block_Abstract is thesubclass of  Varien_Object. That is to say, magentospecific block class whose parent classis  Mage_Core_Block_Abstract can add as many childblocks as possible and access them in the array-style way.

    public functionsetChild($alias, $block)
    {
        if (is_string($block)) {
            $block =$this->getLayout()->getBlock($block);
        }
        if (!$block) {
            return$this;
        }
        $block->setParentBlock($this);
        $block->setBlockAlias($alias);
        $this->_children[$alias] =$block;
        return $this;
    }

Moreover, Magento provides two ways to use block: XML layoutway and object way.

1.Use XML layout way

<catalog_category_default>
        <referencename="left">
          <blocktype="directory/currency" name="currency"template="directory/currency.phtml"/>
        </reference>
</catalog_category_default>

In the template file, use following statement<?php echo$this->getChildHtml("currency");?>

2.Object way

<?php
$currency =new  Mage_Directory_Block_Currency();
echo  $currency->toHtml();
?>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值