Skip to content

Commit

Permalink
MDL-33937 Paged course view: Allows view of sections that are not vis…
Browse files Browse the repository at this point in the history
…ible
  • Loading branch information
sammarshallou authored and danpoltawski committed Jul 3, 2012
1 parent 741543e commit 60a72a0
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 4 deletions.
14 changes: 12 additions & 2 deletions course/view.php
Expand Up @@ -99,8 +99,18 @@
$infoid = $course->id;
if(!empty($section)) {
$loglabel = 'view section';
$sectionparams = array('course' => $course->id, 'section' => $section);
$coursesections = $DB->get_record('course_sections', $sectionparams, 'id', MUST_EXIST);

// Get section details and check it exists.
$modinfo = get_fast_modinfo($course);
$coursesections = $modinfo->get_section_info($section, MUST_EXIST);

// Check user is allowed to see it.
if (!$coursesections->uservisible) {
// Note: We actually already know they don't have this capability
// or uservisible would have been true; this is just to get the
// correct error message shown.
require_capability('moodle/course:viewhiddensections', $context);
}
$infoid = $coursesections->id;
$logparam .= '&sectionid='. $infoid;
}
Expand Down
12 changes: 10 additions & 2 deletions lib/modinfolib.php
Expand Up @@ -202,9 +202,17 @@ public function get_section_info_all() {
/**
* Gets data about specific numbered section.
* @param int $sectionnumber Number (not id) of section
* @return section_info Information for numbered section
* @param int $strictness Use MUST_EXIST to throw exception if it doesn't
* @return section_info Information for numbered section or null if not found
*/
public function get_section_info($sectionnumber) {
public function get_section_info($sectionnumber, $strictness = IGNORE_MISSING) {
if (!array_key_exists($sectionnumber, $this->sectioninfo)) {
if ($strictness === MUST_EXIST) {
throw new moodle_exception('sectionnotexist');
} else {
return null;
}
}
return $this->sectioninfo[$sectionnumber];
}

Expand Down

0 comments on commit 60a72a0

Please sign in to comment.