嘿,我是 joomla 的新手,正在制作一个名为 profile 的组件。我在文件夹控制器/setting.php 中遇到错误。这是我的代码;
类 ProfileControllerSetting 扩展 JControllerForm {
function save(){
parent::save();
if($this->task=='save')
$this->setredirect('index.php?option=com_profile');
}
function cancel(){
$this->setredirect('index.php?option=com_profile');
}
}
错误来了:Strict Standards: Declaration of ProfileControllerSetting::cancel() should be compatible with JControllerForm::cancel($key = NULL)
和
Strict Standards: Declaration of ProfileControllerSetting::save() should be compatible with JControllerForm::save($key = NULL, $urlVar = NULL)
请帮我 。