在开发 Joomla 2.5 组件时,我使用以下函数加载了图像:
public function iconButton( $link, $image ) {
$lang = &JFactory::getLanguage();
$button = '';
if ($lang->isRTL()) {
$button .= '';
} else {
$button .= '';
}
$button .= ''
.'<a href="'.$link.'" target="_blank">'
.JHTML::_('image', 'administrator/components/com_mycomponent/assets/images/'.$image )
.'</a>'
.'';
$button .= '';
return $button;
}
我现在正在实时站点上测试此图像,并收到以下错误消息:
Warning: Missing argument 2 for JHtml::image() in ../public_html/libraries/joomla/html/html.php on line 474
在调查警告的路径后,我在第 474 行发现了以下内容:
public static function image($file, $alt, $attribs = null, $relative = false, $path_only = false)
这是对创建警告的视图的调用:
echo MyComponentHelper:: iconButton( $link, 'myimage.png' );
这让我相信我需要将$alt
变量添加到我的自定义iconButton
函数中以清除此错误。我自己尝试了几种变体,但还没有破解代码。关于清除此问题的简单方法的任何想法?