2004-09-12 12:21:27 +00:00
|
|
|
<?php // $Id$
|
2003-08-11 07:48:03 +00:00
|
|
|
|
|
|
|
/// Displays external information about a course
|
|
|
|
|
|
|
|
require_once("../config.php");
|
|
|
|
require_once("lib.php");
|
|
|
|
|
2005-11-18 10:57:36 +00:00
|
|
|
$id = optional_param('id', false, PARAM_INT); // Course id
|
|
|
|
$name = optional_param('name', false, PARAM_RAW); // Course short name
|
2003-08-11 07:48:03 +00:00
|
|
|
|
|
|
|
if (!$id and !$name) {
|
|
|
|
error("Must specify course id or short name");
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($name) {
|
|
|
|
if (! $course = get_record("course", "shortname", $name) ) {
|
|
|
|
error("That's an invalid short course name");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (! $course = get_record("course", "id", $id) ) {
|
|
|
|
error("That's an invalid course id");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$site = get_site();
|
|
|
|
|
2004-05-16 10:26:04 +00:00
|
|
|
if ($CFG->forcelogin) {
|
|
|
|
require_login();
|
|
|
|
}
|
|
|
|
|
2007-11-20 02:32:09 +00:00
|
|
|
if (!(course_parent_visible($course) || $course->visible) && !has_capability('moodle/course:viewhiddencourses', $context)) {
|
|
|
|
error(get_string('coursehidden'), $CFG->wwwroot .'/');
|
|
|
|
}
|
|
|
|
|
2003-08-11 07:48:03 +00:00
|
|
|
print_header(get_string("summaryof", "", $course->fullname));
|
|
|
|
|
2007-03-05 05:36:43 +00:00
|
|
|
print_heading(format_string($course->fullname) . '<br />(' . format_string($course->shortname) . ')');
|
2003-08-11 07:48:03 +00:00
|
|
|
|
2007-03-05 05:36:43 +00:00
|
|
|
if ($course->guest || $course->password) {
|
|
|
|
print_box_start('generalbox icons');
|
|
|
|
if ($course->guest) {
|
|
|
|
$strallowguests = get_string('allowguests');
|
|
|
|
echo "<div><img alt=\"\" class=\"icon guest\" src=\"$CFG->pixpath/i/guest.gif\" /> $strallowguests</div>";
|
|
|
|
}
|
|
|
|
if ($course->password) {
|
|
|
|
$strrequireskey = get_string('requireskey');
|
|
|
|
echo "<div><img alt=\"\" class=\"icon key\" src=\"$CFG->pixpath/i/key.gif\" /> $strrequireskey</div>";
|
|
|
|
}
|
|
|
|
print_box_end();
|
2003-08-11 07:48:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-03-05 05:36:43 +00:00
|
|
|
print_box_start('generalbox info');
|
|
|
|
|
|
|
|
echo filter_text(text_to_html($course->summary),$course->id);
|
|
|
|
|
|
|
|
$context = get_context_instance(CONTEXT_COURSE, $course->id);
|
|
|
|
if ($managerroles = get_config('', 'coursemanager')) {
|
|
|
|
$coursemanagerroles = split(',', $managerroles);
|
|
|
|
foreach ($coursemanagerroles as $roleid) {
|
|
|
|
$role = get_record('role','id',$roleid);
|
2007-09-19 07:09:50 +00:00
|
|
|
$canseehidden = has_capability('moodle/role:viewhiddenassigns', $context);
|
2007-11-19 02:25:22 +00:00
|
|
|
$roleid = (int) $roleid;
|
2007-09-19 07:09:50 +00:00
|
|
|
if ($users = get_role_users($roleid, $context, true, '', 'u.lastname ASC', $canseehidden)) {
|
2007-03-05 05:36:43 +00:00
|
|
|
foreach ($users as $teacher) {
|
|
|
|
$fullname = fullname($teacher, has_capability('moodle/site:viewfullnames', $context));
|
|
|
|
$namesarray[] = format_string($role->name).': <a href="'.$CFG->wwwroot.'/user/view.php?id='.
|
|
|
|
$teacher->id.'&course='.SITEID.'">'.$fullname.'</a>';
|
2003-08-11 07:48:03 +00:00
|
|
|
}
|
2007-03-05 05:36:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($namesarray)) {
|
|
|
|
echo "<ul class=\"teachers\">\n<li>";
|
|
|
|
echo implode('</li><li>', $namesarray);
|
|
|
|
echo "</li></ul>";
|
2003-08-11 07:48:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-03-05 05:39:49 +00:00
|
|
|
require_once("$CFG->dirroot/enrol/enrol.class.php");
|
|
|
|
$enrol = enrolment_factory::factory($course->enrol);
|
|
|
|
echo $enrol->get_access_icons($course);
|
|
|
|
|
2007-03-05 05:36:43 +00:00
|
|
|
print_box_end();
|
2003-08-11 07:48:03 +00:00
|
|
|
|
|
|
|
echo "<br />";
|
|
|
|
|
|
|
|
close_window_button();
|
|
|
|
|
2007-03-05 05:36:43 +00:00
|
|
|
print_footer();
|
2003-08-11 07:48:03 +00:00
|
|
|
|
2007-03-05 05:36:43 +00:00
|
|
|
?>
|