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]

   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  namespace mod_data\output;
  18  
  19  use templatable;
  20  use renderable;
  21  
  22  /**
  23   * Renderable class for the action bar elements in the template pages in the database activity.
  24   *
  25   * @package    mod_data
  26   * @copyright  2021 Mihail Geshoski <mihail@moodle.com>
  27   * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  28   */
  29  class templates_action_bar implements templatable, renderable {
  30  
  31      /** @var int $id The database module id. */
  32      private $id;
  33  
  34      /** @var \url_select $urlselect The URL selector object. */
  35      private $urlselect;
  36  
  37      /** @var \single_button|null $urlselect The save as preset single button object. */
  38      private $saveaspresetbutton;
  39  
  40      /** @var \single_button|null $urlselect The export preset single button object. */
  41      private $exportpresetbutton;
  42  
  43      /**
  44       * The class constructor.
  45       *
  46       * @param int $id The database module id.
  47       * @param \url_select $urlselect The URL selector object.
  48       * @param \single_button|null $saveaspresetbutton The save as preset single button object or null.
  49       * @param \single_button|null $exportpresetbutton The export preset single button object or null.
  50       */
  51      public function __construct(int $id, \url_select $urlselect, ?\single_button $saveaspresetbutton,
  52              ?\single_button $exportpresetbutton) {
  53          $this->id = $id;
  54          $this->urlselect = $urlselect;
  55          $this->saveaspresetbutton = $saveaspresetbutton;
  56          $this->exportpresetbutton = $exportpresetbutton;
  57      }
  58  
  59      /**
  60       * Export the data for the mustache template.
  61       *
  62       * @param \renderer_base $output renderer to be used to render the action bar elements.
  63       * @return array
  64       */
  65      public function export_for_template(\renderer_base $output): array {
  66  
  67          $data = [
  68              'd' => $this->id,
  69              'urlselect' => $this->urlselect->export_for_template($output),
  70          ];
  71  
  72          $data['saveaspreset'] = $this->saveaspresetbutton;
  73  
  74          if ($this->exportpresetbutton) {
  75              $data['exportpreset'] = $this->exportpresetbutton->export_for_template($output);
  76          }
  77  
  78          return $data;
  79      }
  80  }