Showing 64px icon in introduction tool see BT#7203

1.10.x
Julio Montoya 11 years ago
parent cdbb8083a5
commit 69b2ba102b
  1. 9
      main/inc/lib/course_home.lib.php

@ -787,14 +787,17 @@ class CourseHome
}
if (!empty($tool['custom_icon'])) {
//self::getCustomIconPath($courseInfo)
$icon = Display::img(
self::getCustomIconPath($courseInfo).$tool['image'],
$tool['image'],
null,
array('class' => 'tool-icon', 'id' => 'toolimage_'.$tool['id'])
);
} else {
$image = (substr($tool['image'], 0, strpos($tool['image'], '.'))).'.png';
$icon = Display::return_icon(
$tool['image'],
$image,
null,
array('class' => 'tool-icon', 'id' => 'toolimage_'.$tool['id']),
ICON_SIZE_BIG,
@ -1190,7 +1193,7 @@ class CourseHome
continue;
}
$toolName = $tool['tool']['name'];
$search = array("{{ ".$toolName." }}", "((".$toolName."}}");
$search = array("{{ ".$toolName." }}", "{{".$toolName."}}", "((".$toolName."))", "(( ".$toolName." ))");
$text = str_replace($search, $tool['icon'], $text);
}

Loading…
Cancel
Save