Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 4.0.x will end 8 May 2023 (12 months).
  • Bug fixes for security issues in 4.0.x will end 13 November 2023 (18 months).
  • PHP version: minimum PHP 7.3.0 Note: the minimum PHP version has increased since Moodle 3.10. PHP 7.4.x is also supported.

Differences Between: [Versions 400 and 401] [Versions 400 and 402] [Versions 400 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: 188 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).

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

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

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

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.

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