1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
<?PHP // $Id: continuous_format.php,v 1.2.2.1 2004/11/09 18:36:59 stronk7 Exp $
function glossary_show_entry_continuous($course, $cm, $glossary, $entry, $mode="", $hook="", $printicons=1, $ratings=NULL, $aliases=false) {
global $THEME, $USER;
$colour = $THEME->cellheading2;
echo "\n<table border=0 width=95% cellspacing=0 valign=top cellpadding=0 align=center>\n";
echo "<tr>\n";
echo "<td width=\"100%\" valign=\"top\"\n";
glossary_print_entry_approval($cm, $entry, $mode);
glossary_print_entry_attachment($entry,"html","right");
echo "<b>";
glossary_print_entry_concept($entry);
echo ":</b> ";
glossary_print_entry_definition($entry);
$entry->alias = "";
$return = glossary_print_entry_lower_section($course, $cm, $glossary, $entry, $mode, $hook, $printicons, $ratings, $aliases);
echo "</td>\n";
echo "</tr>\n";
echo "</table>\n";
return $return;
}
function glossary_print_entry_continuous($course, $cm, $glossary, $entry, $mode="", $hook="", $printicons=1, $ratings=NULL) {
//The print view for this format is exactly the normal view, so we use it
//Take out autolinking in definitions un print view
$entry->definition = '<nolink>'.$entry->definition.'</nolink>';
//Call to view function (without icons, ratings and aliases) and return its result
return glossary_show_entry_continuous($course, $cm, $glossary, $entry, $mode, $hook, false, false, false);
}
?>
|