严格标准:Joomla中的非静态方法错误

时间:2016-08-10 09:54:00

标签: php joomla components joomla3.0 joomla-extensions

我开发了一个Joomla组件。在管理员部分I中,使用helper/select.php文件显示动态类别。但我得到了这个错误:

  

严格标准:假设TrueMatrimonyHelperSelect::getProfileforlist()来自不兼容的上下文,不应静态调用非静态方法$this

XML代码:

<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&amp;view=profile&amp;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;
    }

1 个答案:

答案 0 :(得分:0)

public function getProfileforlist替换为public static function getProfileforlist