moodle/mod/lesson/index.php

114 lines
3.7 KiB
PHP
Raw Normal View History

<?php // $Id$
/**
* This page lists all the instances of lesson in a particular course
*
* @version $Id$
* @license http://www.gnu.org/copyleft/gpl.html GNU Public License
* @package lesson
**/
require_once("../../config.php");
require_once($CFG->dirroot.'/mod/lesson/lib.php');
require_once($CFG->dirroot.'/mod/lesson/locallib.php');
2006-04-05 07:46:52 +00:00
$id = required_param('id', PARAM_INT); // course
if (!$course = get_record("course", "id", $id)) {
error("Course ID is incorrect");
}
require_login($course->id);
add_to_log($course->id, "lesson", "view all", "index.php?id=$course->id", "");
/// Get all required strings
$strlessons = get_string("modulenameplural", "lesson");
$strlesson = get_string("modulename", "lesson");
/// Print the header
if ($course->id != SITEID) {
$navigation = "<a href=\"$CFG->wwwroot/course/view.php?id=$course->id\">$course->shortname</a> ->";
} else {
$navigation = '';
}
print_header("$course->shortname: $strlessons", $course->fullname, "$navigation $strlessons", "", "", true, "", navmenu($course));
/// Get all the appropriate data
if (! $lessons = get_all_instances_in_course("lesson", $course)) {
notice("There are no lessons", "../../course/view.php?id=$course->id");
die;
}
/// Print the list of instances (your module will probably extend this)
$timenow = time();
$strname = get_string("name");
$strgrade = get_string("grade");
$strdeadline = get_string("deadline", "lesson");
$strweek = get_string("week");
$strtopic = get_string("topic");
2005-03-05 00:09:39 +00:00
$table = new stdClass;
if ($course->format == "weeks") {
$table->head = array ($strweek, $strname, $strgrade, $strdeadline);
$table->align = array ("center", "left", "center", "center");
} else if ($course->format == "topics") {
2004-02-16 12:02:08 +00:00
$table->head = array ($strtopic, $strname, $strgrade, $strdeadline);
$table->align = array ("center", "left", "center", "center");
} else {
2004-02-16 12:02:08 +00:00
$table->head = array ($strname, $strgrade, $strdeadline);
$table->align = array ("left", "center", "center");
}
foreach ($lessons as $lesson) {
if (!$lesson->visible) {
//Show dimmed if the mod is hidden
2005-04-24 16:46:51 +00:00
$link = "<a class=\"dimmed\" href=\"view.php?id=$lesson->coursemodule\">".format_string($lesson->name,true)."</a>";
} else {
//Show normal if the mod is visible
2005-04-24 16:46:51 +00:00
$link = "<a href=\"view.php?id=$lesson->coursemodule\">".format_string($lesson->name,true)."</a>";
}
$cm = get_coursemodule_from_instance('lesson', $lesson->id);
$context = get_context_instance(CONTEXT_MODULE, $cm->id);
if ($lesson->deadline > $timenow) {
$due = userdate($lesson->deadline);
} else {
$due = "<font color=\"red\">".userdate($lesson->deadline)."</font>";
}
if ($course->format == "weeks" or $course->format == "topics") {
if (has_capability('mod/lesson:manage', $context)) {
$grade_value = $lesson->grade;
} else {
// it's a student, show their grade
$grade_value = 0;
if ($return = lesson_grades($lesson->id)) {
2004-03-27 04:15:29 +00:00
// grades are stored as percentages
if (isset($return->grades[$USER->id])) {
$grade_value = $return->grades[$USER->id];
}
}
}
$table->data[] = array ($lesson->section, $link, $grade_value, $due);
} else {
$table->data[] = array ($link, $lesson->grade, $due);
}
}
echo "<br />";
print_table($table);
/// Finish the page
print_footer($course);
?>