我开发了一个Joomla组件。在管理员部分I中,使用helper/select.php
文件显示动态类别。但我得到了这个错误:
严格标准:假设
TrueMatrimonyHelperSelect::getProfileforlist()
来自不兼容的上下文,不应静态调用非静态方法$this
<field name="createby" type="list" id="createby"
source_file="admin://components/com_astrimony/helpers/select.php"
source_class="TrueMatrimonyHelperSelect" source_method="getProfileforlist"
sortable="true" tdwidth="15%" show_link="true" url="index.php?option=astrimony&view=profile&id=[ITEM:ID]"
label="COM_MATRIMONY_REGISTER_FOR"
/>
public function getProfileforlist($name='', $attr=array(), $selected_value='', $id='') {
$items = FOFModel::getTmpInstance('Profilerefers', 'TrueMatrimonyModel')->enabled(1)->getList(true);
$result = array();
$result[] = JHtml::_('select.option','',JText::_('COM_TRUEMATRIMONY_SELECT_PROFILE_FOR'));
foreach($items as $item) {
$result[$item->profilerefer_id] = $item->profile_reference;
} //print_r($result);exit;
return $result;
}
答案 0 :(得分:0)
将public function getProfileforlist
替换为public static function getProfileforlist