我想从Helper函数中访问我在View中设置的View Block。但我似乎无法弄明白。
以下是我希望能够做到的事情:
查看文件:
<? $this->start('someblock'); ?>
Some content goes here.
<? $this->end(); ?>
助手:
function do_something() {
debug($this->fetch('someblock');
}
我试图弄清楚如何从Helper访问View Blocks的内容。我宁愿不在变量中传递数据 - 我已经知道如何做到这一点。
感谢您的帮助!
答案 0 :(得分:4)
所有助手都扩展helper.php
,为当前视图设置_View
属性。
所以你要使用:
$this->_View->start('someblock');