mirror of
https://github.com/moodle/moodle.git
synced 2025-01-21 07:28:31 +01:00
74 lines
2.8 KiB
PHP
74 lines
2.8 KiB
PHP
<? // $Id$
|
|
// social.php - course format featuring social forum
|
|
// included from view.php
|
|
|
|
require_once("$CFG->dirroot/mod/forum/lib.php");
|
|
require_once("$CFG->dirroot/mod/resource/lib.php");
|
|
|
|
$leftwidth = 210;
|
|
?>
|
|
|
|
<TABLE WIDTH="100%" BORDER="0" CELLSPACING="5" CELLPADDING="5">
|
|
<TR>
|
|
<TD WIDTH="<?=$leftwidth?>" VALIGN="TOP">
|
|
<?
|
|
$moddata[]="<a title=\"".get_string("listofallpeople")."\" href=\"../user/index.php?id=$course->id\">".get_string("participants")."</a>";
|
|
$modicon[]="<img src=\"$pixpath/i/users.gif\" height=16 width=16 alt=\"\">";
|
|
$editmyprofile = "<a title=\"$USER->firstname $USER->lastname\" href=\"../user/edit.php?id=$USER->id&course=$course->id\">".
|
|
get_string("editmyprofile")."</A>";
|
|
if ($USER->description) {
|
|
$moddata[]= $editmyprofile;
|
|
} else {
|
|
$moddata[]= $editmyprofile." <blink>*</blink>";
|
|
}
|
|
$modicon[]="<img src=\"$pixpath/i/user.gif\" height=16 width=16 alt=\"\">";
|
|
print_side_block(get_string("people"), "", $moddata, $modicon, "", $leftwidth);
|
|
|
|
|
|
|
|
/// Then, print all the available resources (Section 0)
|
|
print_section_block(get_string("activities"), $course, $sections[0],
|
|
$mods, $modnames, $modnamesused, true, "100%", isediting($course->id));
|
|
|
|
|
|
/// Print all the recent activity
|
|
// Print all the recent activity
|
|
if ($course->showrecent) {
|
|
print_side_block_start(get_string("recentactivity"), $leftwidth, "sideblockrecentactivity");
|
|
print_recent_activity($course);
|
|
print_side_block_end();
|
|
}
|
|
|
|
|
|
/// Print a form to search forums
|
|
$searchform = forum_print_search_form($course, "", true);
|
|
$searchform = "<div align=\"center\">$searchform</div>";
|
|
print_side_block(get_string("search","forum"), $searchform, "", "", "", $leftwidth);
|
|
|
|
/// Admin links and controls
|
|
print_course_admin_links($course);
|
|
|
|
echo "</td>";
|
|
|
|
echo "<td width=\"*\" valign=\"top\">";
|
|
if ($social = forum_get_course_forum($course->id, "social")) {
|
|
if (forum_is_subscribed($USER->id, $social->id)) {
|
|
$subtext = get_string("unsubscribe", "forum");
|
|
} else {
|
|
$subtext = get_string("subscribe", "forum");
|
|
}
|
|
$headertext = "<table border=0 width=100% cellpadding=0 cellspacing=0><tr><td>".get_string("socialheadline")."</td><td align=right><font size=1><a href=\"../mod/forum/subscribe.php?id=$social->id\">$subtext</a></td></tr></table>";
|
|
print_heading_block($headertext);
|
|
echo "<img alt=\"\" height=7 src=\"../pix/spacer.gif\"><br>";
|
|
|
|
forum_print_latest_discussions($social->id, 10, "plain", "", false);
|
|
|
|
} else {
|
|
notify("Could not find or create a social forum here");
|
|
}
|
|
?>
|
|
</TD>
|
|
</TR>
|
|
</TABLE>
|
|
|