static function getCategoryImage($catid)
{
$content = JCategories::getInstance('content');
$category = $content->get($catid);
$image = $category->getParams()->get('image');
$fullImagePath = '';
if($image)
{
$fullImagePath = SCArticleContent::_getImageLink($image);
}
return $fullImagePath;
}static function getCategoryImage($catid)
{
$content = JCategories::getInstance('content');
$category = $content->get($catid);
$fullImagePath = '';
if ($category)
{
$image = $category->getParams()->get('image');
if ($image)
{
$fullImagePath = SCArticleContent::_getImageLink($image);
}
}
return $fullImagePath;
}Join our newsletter to get alerts for Joomla releases, tips and tricks and extension updates.
