如何让Magento的Block儿童?

时间:2012-06-07 11:13:28

标签: magento

我在 phtml 文件中,如何获取当前模板中的子块列表?

1 个答案:

答案 0 :(得分:15)

$children = $this->getChild();

检查 app / code / Mage / Core / Block / Abstract.php

中的代码
public function getChild($name = '')
{
    if ($name === '') {
        return $this->_children;
    } elseif (isset($this->_children[$name])) {
        return $this->_children[$name];
    }
    return false;
}

因此,如果没有给出名字,它只会返回所有孩子。