$module = 'moodle';
}
- $linkobject = '<span class="helplink">';
//Accessibility: prefix the alt text/title with 'Help with', strip distracting dots '...'
// PLEASE DO NOT CHANGE. ('...' is VERY distracting for non-visual users)
$tooltip = get_string('helpprefix', '', trim($title, ". \t"));
+ $linkobject = '';
+
if ($image) {
if ($imagetext == '') {
$imagetext = '<img alt="'.$tooltip.'" src="'.
$linkobject .= $tooltip;
}
- $linkobject .= '</span>';
-
if ($text) {
$url = '/help.php?module='. $module .'&text='. s(urlencode($text));
} else {
$url = '/help.php?module='. $module .'&file='. $page .'.html';
}
- $link = link_to_popup_window ($url, 'popup', $linkobject, 400, 500, $tooltip, 'none', true);
+ $link = '<span class="helplink">'.
+ link_to_popup_window ($url, 'popup', $linkobject, 400, 500, $tooltip, 'none', true).
+ '</span>';
if ($return) {
return $link;