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]

   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\external;
  20  
  21  use renderer_base;
  22  use core\external\exporter;
  23  use core_reportbuilder\datasource;
  24  use core_reportbuilder\form\card_view;
  25  
  26  /**
  27   * Custom report card view exporter class
  28   *
  29   * @package     core_reportbuilder
  30   * @copyright   2021 Mikel Martín <mikel@moodle.com>
  31   * @license     http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  32   */
  33  class custom_report_card_view_exporter extends exporter {
  34  
  35      /**
  36       * Return a list of objects that are related to the exporter
  37       *
  38       * @return array
  39       */
  40      protected static function define_related(): array {
  41          return [
  42              'report' => datasource::class,
  43          ];
  44      }
  45  
  46      /**
  47       * Return the list of additional properties for read structure and export
  48       *
  49       * @return array[]
  50       */
  51      protected static function define_other_properties(): array {
  52          return [
  53              'form' => [
  54                  'type' => PARAM_RAW,
  55              ],
  56              'helpicon' => [
  57                  'type' => PARAM_RAW,
  58              ],
  59          ];
  60      }
  61  
  62      /**
  63       * Get the additional values to inject while exporting
  64       *
  65       * @param renderer_base $output
  66       * @return array
  67       */
  68      protected function get_other_values(renderer_base $output): array {
  69          /** @var datasource $report */
  70          $report = $this->related['report'];
  71  
  72          $reportid = $report->get_report_persistent()->get('id');
  73  
  74          $reportsettings = $report->get_settings_values();
  75          $cardviewsettings = [
  76              'showfirsttitle' => $reportsettings['cardview_showfirsttitle'] ?? 0,
  77              'visiblecolumns' => $reportsettings['cardview_visiblecolumns'] ?? 1,
  78          ];
  79          $cardviewform = new card_view(null, null, 'post', '', [], true,
  80              array_merge(['reportid' => $reportid], $cardviewsettings));
  81          $cardviewform->set_data_for_dynamic_submission();
  82  
  83          return [
  84              'form' => $cardviewform->render(),
  85              'helpicon' => $output->help_icon('cardview', 'core_reportbuilder'),
  86          ];
  87      }
  88  }