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.
   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  declare(strict_types=1);
  18  
  19  namespace core_reportbuilder\output\dynamictabs;
  20  
  21  use core\output\dynamic_tabs\base;
  22  use core_reportbuilder\local\models\report;
  23  use core_reportbuilder\output\custom_report;
  24  use core_reportbuilder\permission;
  25  use renderer_base;
  26  use stdClass;
  27  
  28  /**
  29   * Editor dynamic tab
  30   *
  31   * @package     core_reportbuilder
  32   * @copyright   2021 David Matamoros <davidmc@moodle.com>
  33   * @license     http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  34   */
  35  class editor extends base {
  36  
  37      /**
  38       * Export this for use in a mustache template context.
  39       *
  40       * @param renderer_base $output
  41       * @return stdClass
  42       */
  43      public function export_for_template(renderer_base $output) {
  44          global $PAGE;
  45  
  46          /** @var \core_reportbuilder\output\renderer $renderer */
  47          $renderer = $PAGE->get_renderer('core_reportbuilder');
  48  
  49          $reportpersistent = new report((int)$this->data['reportid']);
  50          return (new custom_report($reportpersistent))->export_for_template($renderer);
  51      }
  52  
  53      /**
  54       * The label to be displayed on the tab
  55       *
  56       * @return string
  57       */
  58      public function get_tab_label(): string {
  59          return get_string('editor', 'core_reportbuilder');
  60      }
  61  
  62      /**
  63       * Check permission of the current user to access this tab
  64       *
  65       * @return bool
  66       */
  67      public function is_available(): bool {
  68          $reportpersistent = new report((int)$this->data['reportid']);
  69          return permission::can_edit_report($reportpersistent);
  70      }
  71  
  72      /**
  73       * Template to use to display tab contents
  74       *
  75       * @return string
  76       */
  77      public function get_template(): string {
  78          return 'core_reportbuilder/local/dynamictabs/editor';
  79      }
  80  }