2004-09-12 12:21:27 +00:00
|
|
|
<?php // $Id$
|
2002-05-31 09:34:50 +00:00
|
|
|
// Display the whole course as "weeks" made of of modules
|
|
|
|
// Included from "view.php"
|
2007-11-13 17:16:54 +00:00
|
|
|
/**
|
|
|
|
* Evaluation weekly format for course display - NO layout tables, for accessibility, etc.
|
|
|
|
*
|
|
|
|
* A duplicate course format to enable the Moodle development team to evaluate
|
|
|
|
* CSS for the multi-column layout in place of layout tables.
|
|
|
|
* Less risk for the Moodle 1.6 beta release.
|
|
|
|
* 1. Straight copy of weeks/format.php
|
|
|
|
* 2. Replace <table> and <td> with DIVs; inline styles.
|
|
|
|
* 3. Reorder columns so that in linear view content is first then blocks;
|
|
|
|
* styles to maintain original graphical (side by side) view.
|
|
|
|
*
|
|
|
|
* Target: 3-column graphical view using relative widths for pixel screen sizes
|
|
|
|
* 800x600, 1024x768... on IE6, Firefox. Below 800 columns will shift downwards.
|
|
|
|
*
|
|
|
|
* http://www.maxdesign.com.au/presentation/em/ Ideal length for content.
|
|
|
|
* http://www.svendtofte.com/code/max_width_in_ie/ Max width in IE.
|
|
|
|
*
|
|
|
|
* @copyright © 2006 The Open University
|
|
|
|
* @author N.D.Freear@open.ac.uk, and others.
|
|
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU Public License
|
|
|
|
* @package
|
|
|
|
*/
|
|
|
|
//TODO (nfreear): Accessibility: evaluation, lang/en_utf8/moodle.php: $string['formatweekscss']
|
2001-11-22 06:23:56 +00:00
|
|
|
|
2006-09-23 14:38:01 +00:00
|
|
|
require_once($CFG->libdir.'/ajax/ajaxlib.php');
|
2007-11-13 17:16:54 +00:00
|
|
|
|
2006-04-11 21:41:21 +00:00
|
|
|
$week = optional_param('week', -1, PARAM_INT);
|
|
|
|
|
|
|
|
if ($week != -1) {
|
2003-04-28 13:29:26 +00:00
|
|
|
$displaysection = course_set_display($course->id, $week);
|
|
|
|
} else {
|
|
|
|
if (isset($USER->display[$course->id])) {
|
|
|
|
$displaysection = $USER->display[$course->id];
|
2002-05-31 09:34:50 +00:00
|
|
|
} else {
|
2003-04-28 13:29:26 +00:00
|
|
|
$displaysection = course_set_display($course->id, 0);
|
2002-05-31 09:34:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-02-12 13:09:18 +00:00
|
|
|
$streditsummary = get_string('editsummary');
|
|
|
|
$stradd = get_string('add');
|
|
|
|
$stractivities = get_string('activities');
|
|
|
|
$strshowallweeks = get_string('showallweeks');
|
|
|
|
$strweek = get_string('week');
|
|
|
|
$strgroups = get_string('groups');
|
|
|
|
$strgroupmy = get_string('groupmy');
|
|
|
|
$editing = $PAGE->user_is_editing();
|
|
|
|
|
2004-04-18 23:20:53 +00:00
|
|
|
if ($editing) {
|
2003-05-04 15:10:25 +00:00
|
|
|
$strstudents = moodle_strtolower($course->students);
|
2005-02-14 16:02:32 +00:00
|
|
|
$strweekhide = get_string('weekhide', '', $strstudents);
|
|
|
|
$strweekshow = get_string('weekshow', '', $strstudents);
|
|
|
|
$strmoveup = get_string('moveup');
|
|
|
|
$strmovedown = get_string('movedown');
|
2003-05-04 15:10:25 +00:00
|
|
|
}
|
2002-11-07 09:30:41 +00:00
|
|
|
|
2006-09-05 08:50:23 +00:00
|
|
|
$context = get_context_instance(CONTEXT_COURSE, $course->id);
|
2007-11-13 17:16:54 +00:00
|
|
|
/* Internet Explorer min-width fix. (See theme/standard/styles_layout.css: min-width for Firefox.)
|
|
|
|
Window width: 800px, Firefox 763px, IE 752px. (Window width: 640px, Firefox 602px, IE 588px.)
|
|
|
|
*/
|
|
|
|
?>
|
|
|
|
|
|
|
|
<!--[if IE]>
|
|
|
|
<style type="text/css">
|
|
|
|
.weeks-format { width: expression(document.body.clientWidth < 800 ? "752px" : "auto"); }
|
|
|
|
</style>
|
|
|
|
<![endif]-->
|
|
|
|
<?php
|
|
|
|
/// Layout the whole page as three big columns (was, id="layout-table")
|
|
|
|
echo '<div class="weeks-format">';
|
|
|
|
|
2004-04-18 23:20:53 +00:00
|
|
|
/// The left column ...
|
2003-12-30 17:18:06 +00:00
|
|
|
|
2005-03-02 05:56:24 +00:00
|
|
|
if (blocks_have_content($pageblocks, BLOCK_POS_LEFT) || $editing) {
|
2007-11-23 16:49:51 +00:00
|
|
|
print_container_start();
|
2007-11-13 17:16:54 +00:00
|
|
|
echo '<div id="left-column">';
|
2005-03-02 05:47:39 +00:00
|
|
|
blocks_print_group($PAGE, $pageblocks, BLOCK_POS_LEFT);
|
2007-11-13 17:16:54 +00:00
|
|
|
echo '</div>';
|
2007-11-23 16:49:51 +00:00
|
|
|
print_container_end();
|
2002-08-10 13:42:12 +00:00
|
|
|
}
|
2007-11-13 17:16:54 +00:00
|
|
|
|
|
|
|
/// The right column, BEFORE the middle-column.
|
|
|
|
if (blocks_have_content($pageblocks, BLOCK_POS_RIGHT) || $editing) {
|
2007-11-23 16:49:51 +00:00
|
|
|
print_container_start();
|
2007-11-13 17:16:54 +00:00
|
|
|
echo '<div id="right-column">';
|
|
|
|
blocks_print_group($PAGE, $pageblocks, BLOCK_POS_RIGHT);
|
|
|
|
echo '</div>';
|
2007-11-23 16:49:51 +00:00
|
|
|
print_container_end();
|
2007-11-13 17:16:54 +00:00
|
|
|
}
|
|
|
|
|
2002-11-07 09:30:41 +00:00
|
|
|
/// Start main column
|
2007-11-13 17:16:54 +00:00
|
|
|
echo '<div id="middle-column">';
|
2007-11-23 16:49:51 +00:00
|
|
|
print_container_start();
|
2005-02-12 12:40:04 +00:00
|
|
|
|
2007-11-13 17:16:54 +00:00
|
|
|
echo skip_main_destination();
|
|
|
|
|
2005-02-12 12:40:04 +00:00
|
|
|
print_heading_block(get_string('weeklyoutline'), 'outline');
|
2002-11-07 09:30:41 +00:00
|
|
|
|
2007-11-13 17:16:54 +00:00
|
|
|
// Note, an ordered list would confuse - "1" could be the clipboard or summary.
|
|
|
|
echo "<ul class='weeks'>\n";
|
2002-11-07 09:30:41 +00:00
|
|
|
|
2003-07-14 13:08:38 +00:00
|
|
|
/// If currently moving a file then show the current clipboard
|
|
|
|
if (ismoving($course->id)) {
|
2008-06-09 16:53:30 +00:00
|
|
|
$stractivityclipboard = strip_tags(get_string('activityclipboard', '', $USER->activitycopyname));
|
2005-02-14 16:02:32 +00:00
|
|
|
$strcancel= get_string('cancel');
|
2007-11-13 17:16:54 +00:00
|
|
|
echo '<li class="clipboard">';
|
2005-02-14 16:02:32 +00:00
|
|
|
echo $stractivityclipboard.' (<a href="mod.php?cancelcopy=true&sesskey='.$USER->sesskey.'">'.$strcancel.'</a>)';
|
2007-11-13 17:16:54 +00:00
|
|
|
echo "</li>\n";
|
2005-03-06 14:57:23 +00:00
|
|
|
}
|
2003-07-14 13:08:38 +00:00
|
|
|
|
2003-05-04 15:10:25 +00:00
|
|
|
/// Print Section 0 with general activities
|
2002-11-07 09:30:41 +00:00
|
|
|
|
2003-05-04 15:10:25 +00:00
|
|
|
$section = 0;
|
|
|
|
$thissection = $sections[$section];
|
2002-11-07 09:30:41 +00:00
|
|
|
|
2003-05-04 15:10:25 +00:00
|
|
|
if ($thissection->summary or $thissection->sequence or isediting($course->id)) {
|
2007-11-13 17:16:54 +00:00
|
|
|
|
|
|
|
// Note, 'right side' is BEFORE content.
|
|
|
|
echo '<li id="section-0" class="section main" >';
|
|
|
|
echo '<div class="left side"> </div>';
|
|
|
|
echo '<div class="right side" > </div>';
|
|
|
|
echo '<div class="content">';
|
2005-05-12 07:02:56 +00:00
|
|
|
|
|
|
|
echo '<div class="summary">';
|
2004-09-03 12:44:11 +00:00
|
|
|
$summaryformatoptions->noclean = true;
|
|
|
|
echo format_text($thissection->summary, FORMAT_HTML, $summaryformatoptions);
|
2004-03-19 08:18:13 +00:00
|
|
|
|
2007-02-22 03:07:10 +00:00
|
|
|
if (isediting($course->id) && has_capability('moodle/course:update', get_context_instance(CONTEXT_COURSE, $course->id))) {
|
2007-11-13 17:16:54 +00:00
|
|
|
echo '<p><a title="'.$streditsummary.'" '.
|
2005-02-14 16:02:32 +00:00
|
|
|
' href="editsection.php?id='.$thissection->id.'"><img src="'.$CFG->pixpath.'/t/edit.gif" '.
|
2007-11-13 17:16:54 +00:00
|
|
|
' class="icon edit" alt="'.$streditsummary.'" /></a></p>';
|
2002-11-07 09:30:41 +00:00
|
|
|
}
|
2005-05-12 07:02:56 +00:00
|
|
|
echo '</div>';
|
|
|
|
|
2003-05-04 15:10:25 +00:00
|
|
|
print_section($course, $thissection, $mods, $modnamesused);
|
2002-11-07 09:30:41 +00:00
|
|
|
|
|
|
|
if (isediting($course->id)) {
|
2004-07-25 14:00:29 +00:00
|
|
|
print_section_add_menus($course, $section, $modnames);
|
2002-11-07 09:30:41 +00:00
|
|
|
}
|
|
|
|
|
2007-11-13 17:16:54 +00:00
|
|
|
echo '</div>';
|
|
|
|
echo "</li>\n";
|
2002-11-07 09:30:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-02-14 16:02:32 +00:00
|
|
|
/// Now all the normal modules by week
|
|
|
|
/// Everything below uses "section" terminology - each "section" is a week.
|
|
|
|
|
2001-11-22 06:23:56 +00:00
|
|
|
$timenow = time();
|
|
|
|
$weekdate = $course->startdate; // this should be 0:00 Monday of that week
|
2008-04-07 12:16:10 +00:00
|
|
|
$weekdate += 7200; // Add two hours to avoid possible DST problems
|
2003-05-04 15:10:25 +00:00
|
|
|
$section = 1;
|
2003-06-14 12:17:13 +00:00
|
|
|
$sectionmenu = array();
|
2008-04-07 12:16:10 +00:00
|
|
|
$weekofseconds = 604800;
|
2002-06-25 11:49:06 +00:00
|
|
|
$course->enddate = $course->startdate + ($weekofseconds * $course->numsections);
|
2001-11-22 06:23:56 +00:00
|
|
|
|
2005-02-14 16:02:32 +00:00
|
|
|
$strftimedateshort = ' '.get_string('strftimedateshort');
|
2003-01-15 10:55:54 +00:00
|
|
|
|
2002-06-25 12:08:38 +00:00
|
|
|
while ($weekdate < $course->enddate) {
|
2001-11-22 06:23:56 +00:00
|
|
|
|
|
|
|
$nextweekdate = $weekdate + ($weekofseconds);
|
2003-05-04 15:10:25 +00:00
|
|
|
$weekday = userdate($weekdate, $strftimedateshort);
|
2008-04-07 12:16:10 +00:00
|
|
|
$endweekday = userdate($weekdate+518400, $strftimedateshort);
|
2002-05-31 09:34:50 +00:00
|
|
|
|
2003-05-04 15:10:25 +00:00
|
|
|
if (!empty($sections[$section])) {
|
|
|
|
$thissection = $sections[$section];
|
2001-11-22 06:23:56 +00:00
|
|
|
|
2003-05-04 15:10:25 +00:00
|
|
|
} else {
|
|
|
|
unset($thissection);
|
|
|
|
$thissection->course = $course->id; // Create a new week structure
|
|
|
|
$thissection->section = $section;
|
2005-02-14 16:02:32 +00:00
|
|
|
$thissection->summary = '';
|
2003-05-04 15:10:25 +00:00
|
|
|
$thissection->visible = 1;
|
2008-06-01 17:59:13 +00:00
|
|
|
if (!$thissection->id = $DB->insert_record('course_sections', $thissection)) {
|
2005-02-14 16:02:32 +00:00
|
|
|
notify('Error inserting new week!');
|
2003-05-04 15:10:25 +00:00
|
|
|
}
|
|
|
|
}
|
2001-11-22 06:23:56 +00:00
|
|
|
|
2006-09-05 08:50:23 +00:00
|
|
|
$showsection = (has_capability('moodle/course:viewhiddensections', $context) or $thissection->visible or !$course->hiddensections);
|
2001-11-22 06:23:56 +00:00
|
|
|
|
2005-02-13 22:23:45 +00:00
|
|
|
if (!empty($displaysection) and $displaysection != $section) { // Check this week is visible
|
|
|
|
if ($showsection) {
|
2005-02-14 16:02:32 +00:00
|
|
|
$sectionmenu['week='.$section] = s("$strweek $section | $weekday - $endweekday");
|
2005-02-13 22:23:45 +00:00
|
|
|
}
|
|
|
|
$section++;
|
|
|
|
$weekdate = $nextweekdate;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2004-04-30 12:17:49 +00:00
|
|
|
if ($showsection) {
|
2001-11-22 06:23:56 +00:00
|
|
|
|
2004-04-30 12:17:49 +00:00
|
|
|
$currentweek = (($weekdate <= $timenow) && ($timenow < $nextweekdate));
|
2001-11-22 06:23:56 +00:00
|
|
|
|
2007-09-25 12:00:51 +00:00
|
|
|
$currenttext = '';
|
2004-04-30 12:17:49 +00:00
|
|
|
if (!$thissection->visible) {
|
2005-02-14 16:02:32 +00:00
|
|
|
$sectionstyle = ' hidden';
|
2004-04-30 12:17:49 +00:00
|
|
|
} else if ($currentweek) {
|
2005-02-14 16:02:32 +00:00
|
|
|
$sectionstyle = ' current';
|
2007-09-25 12:00:51 +00:00
|
|
|
$currenttext = get_accesshide(get_string('currentweek','access'));
|
2004-04-30 12:17:49 +00:00
|
|
|
} else {
|
2005-02-14 16:02:32 +00:00
|
|
|
$sectionstyle = '';
|
2003-05-04 15:10:25 +00:00
|
|
|
}
|
|
|
|
|
2007-11-13 17:16:54 +00:00
|
|
|
echo '<li id="section-'.$section.'" class="section main'.$sectionstyle.'" >';
|
2005-01-18 11:11:26 +00:00
|
|
|
|
2007-11-13 17:16:54 +00:00
|
|
|
echo '<div class="left side"> '.$currenttext.'</div>';
|
2003-06-10 15:27:09 +00:00
|
|
|
|
2007-11-13 17:16:54 +00:00
|
|
|
// Note, 'right side' is BEFORE content.
|
|
|
|
echo '<div class="right side">';
|
|
|
|
|
2004-04-30 12:17:49 +00:00
|
|
|
if ($displaysection == $section) {
|
2006-04-11 21:41:21 +00:00
|
|
|
echo '<a href="view.php?id='.$course->id.'&week=0#section-'.$section.'" title="'.$strshowallweeks.'">'.
|
2006-03-15 10:23:09 +00:00
|
|
|
'<img src="'.$CFG->pixpath.'/i/all.gif" class="icon wkall" alt="'.$strshowallweeks.'" /></a><br />';
|
2004-04-30 12:17:49 +00:00
|
|
|
} else {
|
|
|
|
$strshowonlyweek = get_string("showonlyweek", "", $section);
|
2005-02-14 16:02:32 +00:00
|
|
|
echo '<a href="view.php?id='.$course->id.'&week='.$section.'" title="'.$strshowonlyweek.'">'.
|
2006-03-15 10:26:56 +00:00
|
|
|
'<img src="'.$CFG->pixpath.'/i/one.gif" class="icon wkone" alt="'.$strshowonlyweek.'" /></a><br />';
|
2003-06-10 15:27:09 +00:00
|
|
|
}
|
2005-01-18 11:11:26 +00:00
|
|
|
|
2007-02-16 07:57:19 +00:00
|
|
|
if (isediting($course->id) && has_capability('moodle/course:update', get_context_instance(CONTEXT_COURSE, $course->id))) {
|
2004-04-30 12:17:49 +00:00
|
|
|
if ($thissection->visible) { // Show the hide/show eye
|
2005-11-23 23:14:25 +00:00
|
|
|
echo '<a href="view.php?id='.$course->id.'&hide='.$section.'&sesskey='.$USER->sesskey.'#section-'.$section.'" title="'.$strweekhide.'">'.
|
2007-01-09 10:20:59 +00:00
|
|
|
'<img src="'.$CFG->pixpath.'/i/hide.gif" class="icon hide" alt="'.$strweekhide.'" /></a><br />';
|
2004-04-30 12:17:49 +00:00
|
|
|
} else {
|
2006-05-18 16:15:04 +00:00
|
|
|
echo '<a href="view.php?id='.$course->id.'&show='.$section.'&sesskey='.$USER->sesskey.'#section-'.$section.'" title="'.$strweekshow.'">'.
|
2007-01-09 10:20:59 +00:00
|
|
|
'<img src="'.$CFG->pixpath.'/i/show.gif" class="icon hide" alt="'.$strweekshow.'" /></a><br />';
|
2004-04-30 12:17:49 +00:00
|
|
|
}
|
|
|
|
if ($section > 1) { // Add a arrow to move section up
|
2006-07-19 12:52:06 +00:00
|
|
|
echo '<a href="view.php?id='.$course->id.'&random='.rand(1,10000).'&section='.$section.'&move=-1&sesskey='.$USER->sesskey.'#section-'.($section-1).'" title="'.$strmoveup.'">'.
|
2007-11-13 17:16:54 +00:00
|
|
|
'<img src="'.$CFG->pixpath.'/t/up.gif" class="icon up" alt="'.$strmoveup.'" /></a><br />';
|
2004-04-30 12:17:49 +00:00
|
|
|
}
|
2005-01-18 11:11:26 +00:00
|
|
|
|
2004-04-30 12:17:49 +00:00
|
|
|
if ($section < $course->numsections) { // Add a arrow to move section down
|
2006-07-19 12:52:06 +00:00
|
|
|
echo '<a href="view.php?id='.$course->id.'&random='.rand(1,10000).'&section='.$section.'&move=1&sesskey='.$USER->sesskey.'#section-'.($section+1).'" title="'.$strmovedown.'">'.
|
2007-11-13 17:16:54 +00:00
|
|
|
'<img src="'.$CFG->pixpath.'/t/down.gif" class="icon down" alt="'.$strmovedown.'" /></a><br />';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
echo '</div>';
|
|
|
|
|
2007-12-11 15:25:07 +00:00
|
|
|
$weekperiod = $weekday.' - '.$endweekday;
|
|
|
|
|
2007-11-13 17:16:54 +00:00
|
|
|
echo '<div class="content">';
|
|
|
|
if (!has_capability('moodle/course:viewhiddensections', $context) and !$thissection->visible) { // Hidden for students
|
2007-12-11 15:25:07 +00:00
|
|
|
print_heading($currenttext.$weekperiod.' ('.get_string('notavailable').')', null, 3, 'weekdates');
|
2007-11-13 17:16:54 +00:00
|
|
|
|
|
|
|
} else {
|
2007-12-11 15:25:07 +00:00
|
|
|
print_heading($currenttext.$weekperiod, null, 3, 'weekdates');
|
2007-11-13 17:16:54 +00:00
|
|
|
|
|
|
|
echo '<div class="summary">';
|
|
|
|
$summaryformatoptions->noclean = true;
|
|
|
|
echo format_text($thissection->summary, FORMAT_HTML, $summaryformatoptions);
|
|
|
|
|
|
|
|
if (isediting($course->id) && has_capability('moodle/course:update', get_context_instance(CONTEXT_COURSE, $course->id))) {
|
|
|
|
echo ' <a title="'.$streditsummary.'" href="editsection.php?id='.$thissection->id.'">'.
|
|
|
|
'<img src="'.$CFG->pixpath.'/t/edit.gif" class="icon edit" alt="'.$streditsummary.'" /></a><br /><br />';
|
|
|
|
}
|
|
|
|
echo '</div>';
|
|
|
|
|
|
|
|
print_section($course, $thissection, $mods, $modnamesused);
|
|
|
|
|
|
|
|
if (isediting($course->id)) {
|
|
|
|
print_section_add_menus($course, $section, $modnames);
|
2004-04-30 12:17:49 +00:00
|
|
|
}
|
2003-06-10 15:27:09 +00:00
|
|
|
}
|
2005-01-18 11:11:26 +00:00
|
|
|
|
2007-11-13 17:16:54 +00:00
|
|
|
echo '</div>';
|
|
|
|
echo "</li>\n";
|
2003-05-04 15:10:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$section++;
|
2001-11-22 06:23:56 +00:00
|
|
|
$weekdate = $nextweekdate;
|
|
|
|
}
|
2007-11-13 17:16:54 +00:00
|
|
|
echo "</ul>\n";
|
2003-06-14 12:17:13 +00:00
|
|
|
|
|
|
|
if (!empty($sectionmenu)) {
|
2005-02-14 16:02:32 +00:00
|
|
|
echo '<div align="center" class="jumpmenu">';
|
2006-03-15 09:42:37 +00:00
|
|
|
echo popup_form($CFG->wwwroot.'/course/view.php?id='.$course->id.'&', $sectionmenu,
|
2005-02-14 16:02:32 +00:00
|
|
|
'sectionmenu', '', get_string('jumpto'), '', '', true);
|
|
|
|
echo '</div>';
|
2003-06-14 12:17:13 +00:00
|
|
|
}
|
2004-04-18 23:20:53 +00:00
|
|
|
|
2007-11-23 16:49:51 +00:00
|
|
|
print_container_end();
|
2008-01-22 20:38:12 +00:00
|
|
|
echo '</div>';
|
2007-02-06 21:31:04 +00:00
|
|
|
|
2007-11-13 17:16:54 +00:00
|
|
|
echo '</div>';
|
|
|
|
echo '<div class="clearer"></div>';
|
2005-02-14 16:02:32 +00:00
|
|
|
|
2007-01-03 15:37:07 +00:00
|
|
|
?>
|