~ubuntu-branches/ubuntu/hoary/moodle/hoary

« back to all changes in this revision

Viewing changes to mod/glossary/formats/encyclopedia/encyclopedia_format.php

  • Committer: Bazaar Package Importer
  • Author(s): Isaac Clerencia
  • Date: 2004-12-29 00:49:52 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20041229004952-gliyqzpj2w3e7clx
Tags: 1.4.3-1
* Urgency high as upstream release fixes several security bugs
* New upstream release
* Write database creation errors and warn the user about it, 
closes: #285842, #285842

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?PHP  // $Id: encyclopedia_format.php,v 1.2.2.2 2004/11/26 01:16:16 stronk7 Exp $
 
2
 
 
3
function glossary_show_entry_encyclopedia($course, $cm, $glossary, $entry, $mode="",$hook="",$printicons=1,$ratings=NULL, $aliases=true) {
 
4
    global $THEME, $CFG, $USER;
 
5
 
 
6
    $colour = $THEME->cellheading2;
 
7
 
 
8
    $user = get_record("user", "id", $entry->userid);
 
9
    $strby = get_string("writtenby", "glossary");
 
10
 
 
11
    echo "\n<br /><table border=0 width=95% cellspacing=0 valign=top cellpadding=3 class=forumpost align=center>";
 
12
 
 
13
    echo "\n<tr>";
 
14
    echo "\n<td bgcolor=\"$colour\" width=35 valign=top class=\"forumpostpicture\">";
 
15
    $return = false;
 
16
    if ($entry) {
 
17
        print_user_picture($user->id, $course->id, $user->picture);
 
18
    
 
19
        echo "</td>";
 
20
        echo "<td valign=\"top\" width=100% bgcolor=\"$THEME->cellheading\" class=\"forumpostheader\">";
 
21
        echo "<b>";
 
22
        glossary_print_entry_concept($entry);
 
23
        echo "</b><br />";
 
24
    
 
25
        echo "<font size=\"2\">$strby " . fullname($user, isteacher($course->id)) . "</font>";
 
26
        echo "&nbsp;&nbsp;<font size=1>(".get_string("lastedited").": ".
 
27
             userdate($entry->timemodified).")</font>";
 
28
        echo "</td>";
 
29
        echo "\n<td bgcolor=\"$THEME->cellheading\" width=35 valign=top class=\"forumpostheader\">";
 
30
 
 
31
        glossary_print_entry_approval($cm, $entry, $mode);
 
32
        echo "</td>";
 
33
        
 
34
        echo "</tr>";
 
35
 
 
36
        echo "\n<tr>";
 
37
        echo "\n<td bgcolor=\"$colour\" width=35 valign=top class=\"forumpostside\">&nbsp;</td>";
 
38
        echo "\n<td width=100% colspan=\"2\" bgcolor=\"$THEME->cellcontent\" class=\"forumpostmessage\">";
 
39
        echo "<table width=\"100%\" border=\"0\"><tr><td>";
 
40
 
 
41
        if ($entry->attachment) {
 
42
            $entry->course = $course->id;
 
43
            if (strlen($entry->definition)%2) {
 
44
                $align = "right";
 
45
            } else {
 
46
                $align = "left";
 
47
            }
 
48
            glossary_print_entry_attachment($entry,"",$align,false);
 
49
        }
 
50
        glossary_print_entry_definition($entry);
 
51
        echo "</td></tr></table>";
 
52
 
 
53
        if ($printicons or $ratings or $aliases) {
 
54
            $return = glossary_print_entry_lower_section($course, $cm, $glossary, $entry,$mode,$hook,$printicons,$ratings, $aliases);
 
55
            echo ' ';
 
56
        }
 
57
    } else {
 
58
        echo "<center>";
 
59
        print_string("noentry", "glossary");
 
60
        echo "</center>";
 
61
    }
 
62
    echo "</td></tr>";
 
63
 
 
64
    echo "</table>\n";
 
65
    
 
66
    return $return;
 
67
}
 
68
 
 
69
function glossary_print_entry_encyclopedia($course, $cm, $glossary, $entry, $mode="", $hook="", $printicons=1, $ratings=NULL) {
 
70
 
 
71
    //The print view for this format is exactly the normal view, so we use it
 
72
 
 
73
    //Take out autolinking in definitions un print view
 
74
    $entry->definition = '<nolink>'.$entry->definition.'</nolink> ';
 
75
 
 
76
    //Call to view function (without icons, ratings and aliases) and return its result
 
77
    return glossary_show_entry_encyclopedia($course, $cm, $glossary, $entry, $mode, $hook, false, false, false);
 
78
 
 
79
}
 
80
 
 
81
?>