$anchortagcontents = glossary_print_entry_concept($entry, true);
- $link = "/mod/glossary/showentry.php?courseid={$course->id}&eid={$entry->id}&displayformat=dictionary";
- $action = new popup_action('click', $link.'&popup=1', 'entry',array('title'=>'entry','width'=>600,'height'=>450));
-
- $anchor = $OUTPUT->action_link($link, $anchortagcontents, $action);
+ $link = new moodle_url('/mod/glossary/showentry.php', array('courseid' => $course->id,
+ 'eid' => $entry->id, 'displayformat' => 'dictionary'));
+ $anchor = html_writer::link($link, $anchortagcontents);
echo "<div class=\"concept\">$anchor</div> ";
echo '</td><td align="right" class="entrylowersection">';
$courseid = optional_param('courseid', 0, PARAM_INT);
$eid = optional_param('eid', 0, PARAM_INT); // glossary entry id
$displayformat = optional_param('displayformat',-1, PARAM_SAFEDIR);
-$popup = optional_param('popup',0, PARAM_INT);
$url = new moodle_url('/mod/glossary/showentry.php');
$url->param('concept', $concept);
print_error('invalidelementid');
}
-if ($popup) {
- $PAGE->set_pagelayout('popup');
-} else {
- $PAGE->set_pagelayout('course');
-}
+$PAGE->set_pagelayout('course');
if ($entries) {
foreach ($entries as $key => $entry) {
continue;
}
}
- if (!$popup) {
- $entries[$key]->footer = "<p style=\"text-align:right\">» <a href=\"$CFG->wwwroot/mod/glossary/view.php?g=$entry->glossaryid\">".format_string($entry->glossaryname,true)."</a></p>";
- }
+ $entries[$key]->footer = "<p style=\"text-align:right\">» <a href=\"$CFG->wwwroot/mod/glossary/view.php?g=$entry->glossaryid\">".format_string($entry->glossaryname,true)."</a></p>";
add_to_log($entry->courseid, 'glossary', 'view entry', "showentry.php?eid=$entry->id", $entry->id, $entry->cmid);
}
}
glossary_print_dynaentry($courseid, $entries, $displayformat);
}
-if ($popup) {
- echo $OUTPUT->close_window_button();
-}
-
/// Show one reduced footer
echo $OUTPUT->footer();
\ No newline at end of file