在项目中,我在我看来这个方法:
public function elegirSeleccionados(){
$this->assignRef('pagination', $this->get('pagination'));
$this->assignRef('items', $this->get('recientes'));
$this->assignRef('list', $this->get('list'));
parent::display();
}
assignRef
已弃用/在此的Joomla 3除去。
我应该用什么呢?
assignRef()和分配()不再需要的 ,因为的Joomla 1.6+需要至少PHP 5.2(PHP5使用由参考分配)。
使用在view.html.php
$this->pagination = $this->get('pagination')
而在模板只需调用$this->pagination
。
为了让你的技能是最新的检查官员的Joomla! 文档
TXS这一点,但在我看来(default.tpl)ZEH VAL将不被显示
view.html.php
$this->my_string = "ledl";
<br>
return parent::display($tpl);
default.tpl
<bold>{$this->my_string}</bold>