Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 3.11.x will end 14 Nov 2022 (12 months plus 6 months extension).
  • Bug fixes for security issues in 3.11.x will end 13 Nov 2023 (18 months plus 12 months extension).
  • PHP version: minimum PHP 7.3.0 Note: minimum PHP version has increased since Moodle 3.10. PHP 7.4.x is supported too.

Differences Between: [Versions 310 and 311] [Versions 39 and 311]

   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   * Privacy Subsystem implementation for qtype_ddmarker.
  19   *
  20   * @package    qtype_ddmarker
  21   * @copyright  2018 Andrew Nicols <andrew@nicols.co.uk>
  22   * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  23   */
  24  
  25  namespace qtype_ddmarker\privacy;
  26  
  27  use core_privacy\local\metadata\collection;
  28  use core_privacy\local\request\transform;
  29  use core_privacy\local\request\writer;
  30  
  31  defined('MOODLE_INTERNAL') || die();
  32  
  33  /**
  34   * Privacy Subsystem for qtype_ddmarker implementing user_preference_provider.
  35   *
  36   * @copyright  2018 Andrew Nicols <andrew@nicols.co.uk>
  37   * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  38   */
  39  class provider implements
  40          // This component has data.
  41          // We need to return default options that have been set a user preferences.
  42          \core_privacy\local\metadata\provider,
  43          \core_privacy\local\request\user_preference_provider
  44  {
  45  
  46      /**
  47       * Returns meta data about this system.
  48       *
  49       * @param   collection     $collection The initialised collection to add items to.
  50       * @return  collection     A listing of user data stored through this system.
  51       */
  52      public static function get_metadata(collection $collection) : collection {
  53          $collection->add_user_preference('qtype_ddmarker_defaultmark', 'privacy:preference:defaultmark');
  54          $collection->add_user_preference('qtype_ddmarker_penalty', 'privacy:preference:penalty');
  55          $collection->add_user_preference('qtype_ddmarker_shuffleanswers', 'privacy:preference:shuffleanswers');
  56          return $collection;
  57      }
  58  
  59      /**
  60       * Export all user preferences for the plugin.
  61       *
  62       * @param int $userid The userid of the user whose data is to be exported.
  63       */
  64      public static function export_user_preferences(int $userid) {
  65          $preference = get_user_preferences('qtype_ddmarker_defaultmark', null, $userid);
  66          if (null !== $preference) {
  67              $desc = get_string('privacy:preference:defaultmark', 'qtype_ddmarker');
  68              writer::export_user_preference('qtype_ddmarker', 'defaultmark', $preference, $desc);
  69          }
  70  
  71          $preference = get_user_preferences('qtype_ddmarker_penalty', null, $userid);
  72          if (null !== $preference) {
  73              $desc = get_string('privacy:preference:penalty', 'qtype_ddmarker');
  74              writer::export_user_preference('qtype_ddmarker', 'penalty', transform::percentage($preference), $desc);
  75          }
  76  
  77          $preference = get_user_preferences('qtype_ddmarker_shuffleanswers', null, $userid);
  78          if (null !== $preference) {
  79              $desc = get_string('privacy:preference:shuffleanswers', 'qtype_ddmarker');
  80              writer::export_user_preference('qtype_ddmarker', 'shuffleanswers', transform::yesno($preference), $desc);
  81          }
  82      }
  83  }