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.
   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 block_timeline.
  19   *
  20   * @package    block_timeline
  21   * @copyright  2018 Ryan Wyllie <ryan@moodle.com>
  22   * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  23   */
  24  
  25  namespace block_timeline\privacy;
  26  
  27  defined('MOODLE_INTERNAL') || die();
  28  use \core_privacy\local\metadata\collection;
  29  
  30  /**
  31   * Privacy Subsystem for block_timeline.
  32   *
  33   * @copyright  2018 Ryan Wyllie <ryan@moodle.com>
  34   * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  35   */
  36  class provider implements \core_privacy\local\metadata\provider, \core_privacy\local\request\user_preference_provider {
  37  
  38      /**
  39       * Returns meta-data information about the myoverview block.
  40       *
  41       * @param  \core_privacy\local\metadata\collection $collection A collection of meta-data.
  42       * @return \core_privacy\local\metadata\collection Return the collection of meta-data.
  43       */
  44      public static function get_metadata(collection $collection) : collection {
  45          $collection->add_user_preference('block_timeline_user_sort_preference', 'privacy:metadata:timelinesortpreference');
  46          $collection->add_user_preference('block_timeline_user_filter_preference', 'privacy:metadata:timelinefilterpreference');
  47          $collection->add_user_preference('block_timeline_user_limit_preference', 'privacy:metadata:timelinelimitpreference');
  48          return $collection;
  49      }
  50  
  51      /**
  52       * Export all user preferences for the myoverview block
  53       *
  54       * @param int $userid The userid of the user whose data is to be exported.
  55       */
  56      public static function export_user_preferences(int $userid) {
  57          $preference = get_user_preferences('block_timeline_user_sort_preference', null, $userid);
  58          if (isset($preference)) {
  59              \core_privacy\local\request\writer::export_user_preference('block_timeline', 'block_timeline_user_sort_preference',
  60                      get_string($preference, 'block_timeline'),
  61                      get_string('privacy:metadata:timelinesortpreference', 'block_timeline')
  62              );
  63          }
  64  
  65          $preference = get_user_preferences('block_timeline_user_filter_preference', null, $userid);
  66          if (isset($preference)) {
  67              \core_privacy\local\request\writer::export_user_preference('block_timeline', 'block_timeline_user_filter_preference',
  68                      get_string($preference, 'block_timeline'),
  69                      get_string('privacy:metadata:timelinefilterpreference', 'block_timeline')
  70              );
  71          }
  72  
  73          $preference = get_user_preferences('block_timeline_user_limit_preference', null, $userid);
  74          if (isset($preference)) {
  75              \core_privacy\local\request\writer::export_user_preference('block_timeline', 'block_timeline_user_limit_preference',
  76                      $preference,
  77                      get_string('privacy:metadata:timelinelimitpreference', 'block_timeline')
  78              );
  79          }
  80      }
  81  }