Search moodle.org's
Developer Documentation

See Release Notes
Long Term Support Release

  • Bug fixes for general core bugs in 4.1.x will end 13 November 2023 (12 months).
  • Bug fixes for security issues in 4.1.x will end 10 November 2025 (36 months).
  • PHP version: minimum PHP 7.4.0 Note: minimum PHP version has increased since Moodle 4.0. PHP 8.0.x is supported too.

Differences Between: [Versions 400 and 401] [Versions 401 and 402] [Versions 401 and 403]

Contains the main course format out class.

Copyright: 2020 Ferran Recio <ferran@moodle.com>
License: http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
File Size: 189 lines (7 kb)
Included or required:0 times
Referenced: 0 times
Includes or requires: 0 files

Defines 1 class

content:: (4 methods):
  __construct()
  export_for_template()
  export_sections()
  get_sections_to_display()


Class: content  - X-Ref

Base class to render a course format.

__construct(course_format $format)   X-Ref
Constructor.

param: course_format $format the coruse format

export_for_template(\renderer_base $output)   X-Ref
Export this data so it can be used as the context for a mustache template (core/inplace_editable).

param: renderer_base $output typically, the renderer that's calling this function
return: stdClass data context for a mustache template

export_sections(\renderer_base $output)   X-Ref
Export sections array data.

param: renderer_base $output typically, the renderer that's calling this function
return: array data context for a mustache template

get_sections_to_display(course_modinfo $modinfo)   X-Ref
Return an array of sections to display.

This method is used to differentiate between display a specific section
or a list of them.

param: course_modinfo $modinfo the current course modinfo object
return: section_info[] an array of section_info to display