41 lines
1.4 KiB
PHP
41 lines
1.4 KiB
PHP
<?php // $Id$
|
|
|
|
function glossary_show_entry_continuous($course, $cm, $glossary, $entry, $mode='', $hook='', $printicons=1, $ratings=NULL, $aliases=false) {
|
|
|
|
global $USER;
|
|
|
|
echo '<table class="glossarypost continuous" cellspacing="0">';
|
|
echo '<tr valign="top">';
|
|
echo '<td class="entry">';
|
|
glossary_print_entry_approval($cm, $entry, $mode);
|
|
glossary_print_entry_attachment($entry,'html','right');
|
|
echo '<span class="concept">';
|
|
glossary_print_entry_concept($entry);
|
|
echo ':</span> ';
|
|
glossary_print_entry_definition($entry);
|
|
$entry->alias = '';
|
|
echo '</td></tr>';
|
|
|
|
echo '<tr valign="top"><td class="entrylowersection">';
|
|
$return = glossary_print_entry_lower_section($course, $cm, $glossary, $entry, $mode, $hook, $printicons, $ratings, $aliases);
|
|
echo '</td>';
|
|
echo '</tr>';
|
|
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 = '<span class="nolink">'.$entry->definition.'</span>';
|
|
|
|
//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);
|
|
|
|
}
|
|
|
|
?>
|