';
echo '
';
echo '';
echo '';
glossary_print_entry_approval($cm, $entry, $mode);
glossary_print_entry_attachment($entry,'html','right');
echo ' | ';
echo '
';
echo "\n";
echo '';
echo ''.get_string('answer','glossary').': ';
glossary_print_entry_definition($entry);
echo ' |
';
echo '';
$return = glossary_print_entry_lower_section($course, $cm, $glossary, $entry, $mode, $hook, $printicons, $ratings, $aliases);
echo ' |
';
} else {
echo '';
print_string('noentry', 'glossary');
echo '
';
}
return $return;
}
function glossary_print_entry_faq($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 = ''.$entry->definition.'';
//Call to view function (without icons, ratings and aliases) and return its result
return glossary_show_entry_faq($course, $cm, $glossary, $entry, $mode, $hook, false, false, false);
}
?>