Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make course output stuff protected (MDL-72526) #202

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion classes/output/courseformat/content.php
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ protected function export_sections(\renderer_base $output): array {
* @param course_modinfo $modinfo the current course modinfo object
* @return section_info[] an array of section_info to display
*/
private function get_sections_to_display(course_modinfo $modinfo): array {
protected function get_sections_to_display(course_modinfo $modinfo): array {
$sections = [];
$singlesection = $this->format->get_sectionnum();
$sections[] = $modinfo->get_section_info($singlesection);
Expand Down
2 changes: 1 addition & 1 deletion classes/output/courseformat/content/section/summary.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class summary extends summary_base {
protected $format;

/** @var section_info the course section class */
private $section;
protected $section;

/** @var \renderer_base the renderer output class */
private $output;
Expand Down
2 changes: 1 addition & 1 deletion classes/output/courseformat/content/sectionnavigation.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
class sectionnavigation extends sectionnavigation_base {

/** @var stdClass the calculated data to prevent calculations when rendered several times */
private $data = null;
protected $data = null;

/**
* Export this data so it can be used as the context for a mustache template.
Expand Down
Loading