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.
   1  <?php
   2  // This file is part of Moodle - http://moodle.org/
   3  //
   4  // Moodle is free software: you can redistribute it and/or modify
   5  // it under the terms of the GNU General Public License as published by
   6  // the Free Software Foundation, either version 3 of the License, or
   7  // (at your option) any later version.
   8  //
   9  // Moodle is distributed in the hope that it will be useful,
  10  // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11  // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12  // GNU General Public License for more details.
  13  //
  14  // You should have received a copy of the GNU General Public License
  15  // along with Moodle.  If not, see <http://www.gnu.org/licenses/>.
  16  
  17  /**
  18   * Contains the default section controls output class.
  19   *
  20   * @package   format_topics
  21   * @copyright 2020 Ferran Recio <ferran@moodle.com>
  22   * @license   http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  23   */
  24  
  25  namespace format_topics\output\courseformat\content;
  26  
  27  use core_courseformat\base as course_format;
  28  use core_courseformat\output\local\content\section as section_base;
  29  use stdClass;
  30  
  31  /**
  32   * Base class to render a course section.
  33   *
  34   * @package   format_topics
  35   * @copyright 2020 Ferran Recio <ferran@moodle.com>
  36   * @license   http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  37   */
  38  class section extends section_base {
  39  
  40      /** @var course_format the course format */
  41      protected $format;
  42  
  43      public function export_for_template(\renderer_base $output): stdClass {
  44          $format = $this->format;
  45  
  46          $data = parent::export_for_template($output);
  47  
  48          if (!$this->format->get_section_number()) {
  49              $addsectionclass = $format->get_output_classname('content\\addsection');
  50              $addsection = new $addsectionclass($format);
  51              $data->numsections = $addsection->export_for_template($output);
  52              $data->insertafter = true;
  53          }
  54  
  55          return $data;
  56      }
  57  }