You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
79 lines
2.7 KiB
79 lines
2.7 KiB
<?php
|
|
|
|
function glossary_show_entry_encyclopedia($course, $cm, $glossary, $entry, $mode='',$hook='',$printicons=1, $aliases=true) {
|
|
global $CFG, $USER, $DB, $OUTPUT;
|
|
|
|
|
|
$user = $DB->get_record('user', array('id'=>$entry->userid));
|
|
$strby = get_string('writtenby', 'glossary');
|
|
|
|
if ($entry) {
|
|
echo '<table class="glossarypost encyclopedia" cellspacing="0">';
|
|
echo '<tr valign="top">';
|
|
echo '<td class="left picture">';
|
|
|
|
echo $OUTPUT->user_picture($user, array('courseid'=>$course->id));
|
|
|
|
echo '</td>';
|
|
echo '<th class="entryheader">';
|
|
echo '<div class="concept">';
|
|
glossary_print_entry_concept($entry);
|
|
echo '</div>';
|
|
|
|
$fullname = fullname($user);
|
|
$by = new stdClass();
|
|
$by->name = '<a href="'.$CFG->wwwroot.'/user/view.php?id='.$user->id.'&course='.$course->id.'">'.$fullname.'</a>';
|
|
$by->date = userdate($entry->timemodified);
|
|
echo '<span class="author">'.get_string('bynameondate', 'forum', $by).'</span>';
|
|
|
|
echo '</th>';
|
|
|
|
echo '<td class="entryapproval">';
|
|
glossary_print_entry_approval($cm, $entry, $mode);
|
|
echo '</td>';
|
|
|
|
echo '</tr>';
|
|
|
|
echo '<tr valign="top">';
|
|
echo '<td class="left side" rowspan="2"> </td>';
|
|
echo '<td colspan="2" class="entry">';
|
|
|
|
glossary_print_entry_definition($entry, $glossary, $cm);
|
|
glossary_print_entry_attachment($entry, $cm, null);
|
|
if (core_tag_tag::is_enabled('mod_glossary', 'glossary_entries')) {
|
|
echo $OUTPUT->tag_list(
|
|
core_tag_tag::get_item_tags('mod_glossary', 'glossary_entries', $entry->id), null, 'glossary-tags');
|
|
}
|
|
|
|
if ($printicons or $aliases) {
|
|
echo '</td></tr>';
|
|
echo '<tr>';
|
|
echo '<td colspan="2" class="entrylowersection">';
|
|
glossary_print_entry_lower_section($course, $cm, $glossary, $entry,$mode,$hook,$printicons,$aliases);
|
|
echo ' ';
|
|
}
|
|
|
|
echo '</td></tr>';
|
|
echo "</table>\n";
|
|
|
|
} else {
|
|
echo '<div style="text-align:center">';
|
|
print_string('noentry', 'glossary');
|
|
echo '</div>';
|
|
}
|
|
}
|
|
|
|
function glossary_print_entry_encyclopedia($course, $cm, $glossary, $entry, $mode='', $hook='', $printicons=1) {
|
|
|
|
//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_encyclopedia($course, $cm, $glossary, $entry, $mode, $hook, false, false);
|
|
|
|
}
|
|
|
|
|
|
|