2004-09-12 13:21:01 +00:00
|
|
|
<?php // $Id$
|
2002-06-19 05:04:31 +00:00
|
|
|
// Display the whole course as "topics" made of of modules
|
|
|
|
// Included from "view.php"
|
2007-11-23 16:49:51 +00:00
|
|
|
/**
|
|
|
|
* Evaluation topics 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 topics/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['formattopicscss']
|
2002-06-19 05:04:31 +00:00
|
|
|
|
2006-08-28 06:49:19 +00:00
|
|
|
require_once($CFG->libdir.'/ajax/ajaxlib.php');
|
2009-02-17 16:18:05 +00:00
|
|
|
require_once($CFG->libdir.'/filelib.php');
|
2007-02-06 20:18:45 +00:00
|
|
|
|
2007-11-23 16:49:51 +00:00
|
|
|
$topic = optional_param('topic', -1, PARAM_INT);
|
2004-04-18 23:20:53 +00:00
|
|
|
|
2006-04-11 21:41:21 +00:00
|
|
|
if ($topic != -1) {
|
2003-04-28 13:29:26 +00:00
|
|
|
$displaysection = course_set_display($course->id, $topic);
|
|
|
|
} else {
|
2007-11-23 16:49:51 +00:00
|
|
|
if (isset($USER->display[$course->id])) {
|
2003-04-28 13:29:26 +00:00
|
|
|
$displaysection = $USER->display[$course->id];
|
2002-06-19 05:04:31 +00:00
|
|
|
} else {
|
2003-04-28 13:29:26 +00:00
|
|
|
$displaysection = course_set_display($course->id, 0);
|
2002-06-19 05:04:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-09-05 08:50:23 +00:00
|
|
|
$context = get_context_instance(CONTEXT_COURSE, $course->id);
|
|
|
|
|
|
|
|
if (($marker >=0) && has_capability('moodle/course:setcurrentsection', $context) && confirm_sesskey()) {
|
2007-11-23 16:49:51 +00:00
|
|
|
$course->marker = $marker;
|
2008-06-01 17:59:13 +00:00
|
|
|
if (! $DB->set_field("course", "marker", $marker, array("id"=>$course->id))) {
|
2008-05-13 06:15:20 +00:00
|
|
|
print_error("cannotmarktopic");
|
2007-11-23 16:49:51 +00:00
|
|
|
}
|
2002-06-19 05:04:31 +00:00
|
|
|
}
|
|
|
|
|
2007-11-23 16:49:51 +00:00
|
|
|
$streditsummary = get_string('editsummary');
|
|
|
|
$stradd = get_string('add');
|
|
|
|
$stractivities = get_string('activities');
|
2005-02-12 13:09:18 +00:00
|
|
|
$strshowalltopics = get_string('showalltopics');
|
|
|
|
$strtopic = get_string('topic');
|
2007-11-23 16:49:51 +00:00
|
|
|
$strgroups = get_string('groups');
|
|
|
|
$strgroupmy = get_string('groupmy');
|
|
|
|
$editing = $PAGE->user_is_editing();
|
2005-02-12 13:09:18 +00:00
|
|
|
|
2004-04-18 23:20:53 +00:00
|
|
|
if ($editing) {
|
2008-11-13 08:40:57 +00:00
|
|
|
$strtopichide = get_string('hidetopicfromothers');
|
|
|
|
$strtopicshow = get_string('showtopicfromothers');
|
|
|
|
$strmarkthistopic = get_string('markthistopic');
|
|
|
|
$strmarkedthistopic = get_string('markedthistopic');
|
2007-11-23 16:49:51 +00:00
|
|
|
$strmoveup = get_string('moveup');
|
2005-02-13 14:38:59 +00:00
|
|
|
$strmovedown = get_string('movedown');
|
2003-05-04 09:43:03 +00:00
|
|
|
}
|
2002-11-10 07:37:15 +00:00
|
|
|
|
2007-11-23 16:49:51 +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.)
|
|
|
|
*/
|
|
|
|
?>
|
2002-06-19 05:04:31 +00:00
|
|
|
|
2007-11-23 16:49:51 +00:00
|
|
|
<!--[if IE]>
|
|
|
|
<style type="text/css">
|
|
|
|
.topics-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="topics-format">';
|
2002-07-19 12:11:15 +00:00
|
|
|
|
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
|
|
|
echo '<div id="left-column">';
|
|
|
|
print_container_start();
|
2007-01-11 07:29:03 +00:00
|
|
|
blocks_print_group($PAGE, $pageblocks, BLOCK_POS_LEFT);
|
2007-11-23 16:49:51 +00:00
|
|
|
print_container_end();
|
|
|
|
echo '</div>';
|
|
|
|
}
|
|
|
|
|
|
|
|
/// The right column, BEFORE the middle-column.
|
|
|
|
if (blocks_have_content($pageblocks, BLOCK_POS_RIGHT) || $editing) {
|
|
|
|
echo '<div id="right-column">';
|
|
|
|
print_container_start();
|
|
|
|
blocks_print_group($PAGE, $pageblocks, BLOCK_POS_RIGHT);
|
|
|
|
print_container_end();
|
|
|
|
echo '</div>';
|
2002-06-19 05:04:31 +00:00
|
|
|
}
|
2003-08-09 17:17:21 +00:00
|
|
|
|
2002-11-07 09:30:41 +00:00
|
|
|
/// Start main column
|
2007-11-23 16:49:51 +00:00
|
|
|
echo '<div id="middle-column">';
|
|
|
|
print_container_start();
|
|
|
|
|
2007-10-22 06:43:00 +00:00
|
|
|
echo skip_main_destination();
|
2002-06-19 05:04:31 +00:00
|
|
|
|
2005-02-12 12:40:04 +00:00
|
|
|
print_heading_block(get_string('topicoutline'), 'outline');
|
2002-08-10 13:42:12 +00:00
|
|
|
|
2007-11-23 16:49:51 +00:00
|
|
|
// Note, an ordered list would confuse - "1" could be the clipboard or summary.
|
|
|
|
echo "<ul class='topics'>\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-13 14:38:59 +00:00
|
|
|
$strcancel= get_string('cancel');
|
2007-11-23 16:49:51 +00:00
|
|
|
echo '<li class="clipboard">';
|
2009-01-02 10:36:25 +00:00
|
|
|
echo $stractivityclipboard.' (<a href="mod.php?cancelcopy=true&sesskey='.sesskey().'">'.$strcancel.'</a>)';
|
2007-11-23 16:49:51 +00:00
|
|
|
echo "</li>\n";
|
2003-07-14 13:08:38 +00:00
|
|
|
}
|
|
|
|
|
2007-11-23 16:49:51 +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-23 16:49:51 +00:00
|
|
|
|
|
|
|
// Note, no need for a 'left side' cell or DIV.
|
|
|
|
// 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">';
|
2009-02-17 16:18:05 +00:00
|
|
|
|
|
|
|
$coursecontext = get_context_instance(CONTEXT_COURSE, $course->id);
|
|
|
|
$summarytext = file_convert_relative_pluginfiles($thissection->summary, 'pluginfile.php', "$coursecontext->id/course_section/$thissection->id/");
|
|
|
|
$summaryformatoptions = new object();
|
2004-09-03 12:44:11 +00:00
|
|
|
$summaryformatoptions->noclean = true;
|
2009-02-17 16:18:05 +00:00
|
|
|
echo format_text($summarytext, FORMAT_HTML, $summaryformatoptions);
|
2004-03-19 08:18:13 +00:00
|
|
|
|
2009-02-17 16:18:05 +00:00
|
|
|
if (isediting($course->id) && has_capability('moodle/course:update', $coursecontext)) {
|
2005-01-25 14:18:51 +00:00
|
|
|
echo '<a title="'.$streditsummary.'" '.
|
|
|
|
' href="editsection.php?id='.$thissection->id.'"><img src="'.$CFG->pixpath.'/t/edit.gif" '.
|
2007-11-23 16:49:51 +00:00
|
|
|
' class="icon edit" alt="'.$streditsummary.'" /></a>';
|
2002-11-07 09:30:41 +00:00
|
|
|
}
|
2005-05-12 07:02:56 +00:00
|
|
|
echo '</div>';
|
2007-11-23 16:49:51 +00:00
|
|
|
|
2003-05-04 15:10:25 +00:00
|
|
|
print_section($course, $thissection, $mods, $modnamesused);
|
2004-04-18 23:20:53 +00:00
|
|
|
|
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
|
|
|
}
|
2004-04-18 23:20:53 +00:00
|
|
|
|
2007-11-23 16:49:51 +00:00
|
|
|
echo '</div>';
|
|
|
|
echo "</li>\n";
|
2002-11-07 09:30:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// Now all the normal modules by topic
|
|
|
|
/// Everything below uses "section" terminology - each "section" is a topic.
|
|
|
|
|
|
|
|
$timenow = time();
|
|
|
|
$section = 1;
|
2003-06-14 11:50:32 +00:00
|
|
|
$sectionmenu = array();
|
2002-11-07 09:30:41 +00:00
|
|
|
|
2002-06-25 11:49:06 +00:00
|
|
|
while ($section <= $course->numsections) {
|
2002-06-19 05:04:31 +00:00
|
|
|
|
2003-05-04 07:59:46 +00:00
|
|
|
if (!empty($sections[$section])) {
|
|
|
|
$thissection = $sections[$section];
|
|
|
|
|
|
|
|
} else {
|
|
|
|
unset($thissection);
|
2008-06-01 17:59:13 +00:00
|
|
|
$thissection->course = $course->id; // Create a new section structure
|
2003-05-04 07:59:46 +00:00
|
|
|
$thissection->section = $section;
|
2008-06-01 17:59:13 +00:00
|
|
|
$thissection->summary = '';
|
|
|
|
$thissection->visible = 1;
|
|
|
|
if (!$thissection->id = $DB->insert_record('course_sections', $thissection)) {
|
2005-02-13 14:38:59 +00:00
|
|
|
notify('Error inserting new topic!');
|
2003-05-04 07:59:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-09-05 08:50:23 +00:00
|
|
|
$showsection = (has_capability('moodle/course:viewhiddensections', $context) or $thissection->visible or !$course->hiddensections);
|
2002-06-19 05:04:31 +00:00
|
|
|
|
2007-11-23 16:49:51 +00:00
|
|
|
if (!empty($displaysection) and $displaysection != $section) { // Check this topic is visible
|
2005-02-13 22:23:45 +00:00
|
|
|
if ($showsection) {
|
2007-11-23 16:49:51 +00:00
|
|
|
$strsummary = strip_tags(format_string($thissection->summary,true));
|
|
|
|
if (strlen($strsummary) < 57) {
|
|
|
|
$strsummary = ' - '.$strsummary;
|
|
|
|
} else {
|
|
|
|
$strsummary = ' - '.substr($strsummary, 0, 60).'...';
|
|
|
|
}
|
2005-02-13 22:23:45 +00:00
|
|
|
$sectionmenu['topic='.$section] = s($section.$strsummary);
|
|
|
|
}
|
|
|
|
$section++;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2004-04-30 12:17:49 +00:00
|
|
|
if ($showsection) {
|
|
|
|
|
|
|
|
$currenttopic = ($course->marker == $section);
|
|
|
|
|
2007-09-25 12:00:51 +00:00
|
|
|
$currenttext = '';
|
2004-04-30 12:17:49 +00:00
|
|
|
if (!$thissection->visible) {
|
2005-02-14 15:36:46 +00:00
|
|
|
$sectionstyle = ' hidden';
|
2004-04-30 12:17:49 +00:00
|
|
|
} else if ($currenttopic) {
|
2005-02-14 15:36:46 +00:00
|
|
|
$sectionstyle = ' current';
|
2007-09-25 12:00:51 +00:00
|
|
|
$currenttext = get_accesshide(get_string('currenttopic','access'));
|
2004-04-30 12:17:49 +00:00
|
|
|
} else {
|
2005-02-14 15:36:46 +00:00
|
|
|
$sectionstyle = '';
|
2004-04-30 12:17:49 +00:00
|
|
|
}
|
2002-06-19 05:04:31 +00:00
|
|
|
|
2007-11-23 16:49:51 +00:00
|
|
|
echo '<li id="section-'.$section.'" class="section main'.$sectionstyle.'" >'; //'<div class="left side"> </div>';
|
2002-06-19 05:04:31 +00:00
|
|
|
|
2007-11-23 16:49:51 +00:00
|
|
|
echo '<div class="left side">'.$currenttext.$section.'</div>';
|
|
|
|
// Note, 'right side' is BEFORE content.
|
|
|
|
echo '<div class="right side">';
|
|
|
|
|
|
|
|
if ($displaysection == $section) { // Show the zoom boxes
|
2006-04-11 21:41:21 +00:00
|
|
|
echo '<a href="view.php?id='.$course->id.'&topic=0#section-'.$section.'" title="'.$strshowalltopics.'">'.
|
2007-11-23 16:49:51 +00:00
|
|
|
'<img src="'.$CFG->pixpath.'/i/all.gif" class="icon" alt="'.$strshowalltopics.'" /></a><br />';
|
2003-05-04 13:44:56 +00:00
|
|
|
} else {
|
2007-11-23 16:49:51 +00:00
|
|
|
$strshowonlytopic = get_string("showonlytopic", "", $section);
|
2005-02-13 14:38:59 +00:00
|
|
|
echo '<a href="view.php?id='.$course->id.'&topic='.$section.'" title="'.$strshowonlytopic.'">'.
|
2007-11-23 16:49:51 +00:00
|
|
|
'<img src="'.$CFG->pixpath.'/i/one.gif" class="icon" alt="'.$strshowonlytopic.'" /></a><br />';
|
2003-06-10 15:27:09 +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))) {
|
2007-11-23 16:49:51 +00:00
|
|
|
|
|
|
|
if ($course->marker == $section) { // Show the "light globe" on/off
|
2009-01-02 10:36:25 +00:00
|
|
|
echo '<a href="view.php?id='.$course->id.'&marker=0&sesskey='.sesskey().'#section-'.$section.'" title="'.$strmarkedthistopic.'">'.'<img src="'.$CFG->pixpath.'/i/marked.gif" alt="'.$strmarkedthistopic.'" /></a><br />';
|
2007-11-23 16:49:51 +00:00
|
|
|
} else {
|
2009-01-02 10:36:25 +00:00
|
|
|
echo '<a href="view.php?id='.$course->id.'&marker='.$section.'&sesskey='.sesskey().'#section-'.$section.'" title="'.$strmarkthistopic.'">'.'<img src="'.$CFG->pixpath.'/i/marker.gif" alt="'.$strmarkthistopic.'" /></a><br />';
|
2007-11-23 16:49:51 +00:00
|
|
|
}
|
2004-04-27 16:36:01 +00:00
|
|
|
|
|
|
|
if ($thissection->visible) { // Show the hide/show eye
|
2009-01-02 10:36:25 +00:00
|
|
|
echo '<a href="view.php?id='.$course->id.'&hide='.$section.'&sesskey='.sesskey().'#section-'.$section.'" title="'.$strtopichide.'">'.
|
2007-11-23 16:49:51 +00:00
|
|
|
'<img src="'.$CFG->pixpath.'/i/hide.gif" class="icon hide" alt="'.$strtopichide.'" /></a><br />';
|
2004-04-27 16:36:01 +00:00
|
|
|
} else {
|
2009-01-02 10:36:25 +00:00
|
|
|
echo '<a href="view.php?id='.$course->id.'&show='.$section.'&sesskey='.sesskey().'#section-'.$section.'" title="'.$strtopicshow.'">'.
|
2007-11-23 16:49:51 +00:00
|
|
|
'<img src="'.$CFG->pixpath.'/i/show.gif" class="icon hide" alt="'.$strtopicshow.'" /></a><br />';
|
2004-04-27 16:36:01 +00:00
|
|
|
}
|
|
|
|
if ($section > 1) { // Add a arrow to move section up
|
2009-01-02 10:36:25 +00:00
|
|
|
echo '<a href="view.php?id='.$course->id.'&random='.rand(1,10000).'&section='.$section.'&move=-1&sesskey='.sesskey().'#section-'.($section-1).'" title="'.$strmoveup.'">'.
|
2007-11-23 16:49:51 +00:00
|
|
|
'<img src="'.$CFG->pixpath.'/t/up.gif" class="icon up" alt="'.$strmoveup.'" /></a><br />';
|
2004-04-27 16:36:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($section < $course->numsections) { // Add a arrow to move section down
|
2009-01-02 10:36:25 +00:00
|
|
|
echo '<a href="view.php?id='.$course->id.'&random='.rand(1,10000).'&section='.$section.'&move=1&sesskey='.sesskey().'#section-'.($section+1).'" title="'.$strmovedown.'">'.
|
2007-11-23 16:49:51 +00:00
|
|
|
'<img src="'.$CFG->pixpath.'/t/down.gif" class="icon down" alt="'.$strmovedown.'" /></a><br />';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
echo '</div>';
|
|
|
|
|
|
|
|
echo '<div class="content">';
|
|
|
|
if (!has_capability('moodle/course:viewhiddensections', $context) and !$thissection->visible) { // Hidden for students
|
|
|
|
echo get_string('notavailable').'</div>';
|
|
|
|
} else {
|
|
|
|
echo '<div class="summary">';
|
|
|
|
$summaryformatoptions->noclean = true;
|
|
|
|
if ($thissection->summary) {
|
|
|
|
echo format_text($thissection->summary, FORMAT_HTML, $summaryformatoptions);
|
|
|
|
} else {
|
|
|
|
echo ' ';
|
|
|
|
}
|
|
|
|
|
|
|
|
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 />';
|
2004-04-27 16:36:01 +00:00
|
|
|
}
|
2007-11-23 16:49:51 +00:00
|
|
|
echo '</div>';
|
|
|
|
|
|
|
|
print_section($course, $thissection, $mods, $modnamesused);
|
2003-06-10 15:27:09 +00:00
|
|
|
|
2007-11-23 16:49:51 +00:00
|
|
|
if (isediting($course->id)) {
|
|
|
|
print_section_add_menus($course, $section, $modnames);
|
|
|
|
}
|
2003-05-04 07:59:46 +00:00
|
|
|
}
|
2002-06-19 05:04:31 +00:00
|
|
|
|
2007-11-23 16:49:51 +00:00
|
|
|
echo '</div>';
|
|
|
|
echo "</li>\n";
|
2002-06-19 05:04:31 +00:00
|
|
|
}
|
2003-05-04 13:44:56 +00:00
|
|
|
|
2002-06-25 11:49:06 +00:00
|
|
|
$section++;
|
2002-06-19 05:04:31 +00:00
|
|
|
}
|
2007-11-23 16:49:51 +00:00
|
|
|
echo "</ul>\n";
|
2003-06-14 11:50:32 +00:00
|
|
|
|
|
|
|
if (!empty($sectionmenu)) {
|
2008-12-10 06:48:54 +00:00
|
|
|
echo '<div class="jumpmenu">';
|
2006-04-21 13:08:03 +00:00
|
|
|
echo popup_form($CFG->wwwroot.'/course/view.php?id='.$course->id.'&', $sectionmenu,
|
2005-02-13 14:38:59 +00:00
|
|
|
'sectionmenu', '', get_string('jumpto'), '', '', true);
|
|
|
|
echo '</div>';
|
2003-06-14 11:50:32 +00:00
|
|
|
}
|
2002-06-19 05:04:31 +00:00
|
|
|
|
2007-11-23 16:49:51 +00:00
|
|
|
print_container_end();
|
2008-01-22 20:38:12 +00:00
|
|
|
echo '</div>';
|
2002-11-12 04:26:16 +00:00
|
|
|
|
2007-11-23 16:49:51 +00:00
|
|
|
echo '</div>';
|
|
|
|
echo '<div class="clearer"></div>';
|
2002-06-19 05:04:31 +00:00
|
|
|
|
2007-01-03 15:37:07 +00:00
|
|
|
?>
|