forked from moodle/moodle
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MDL-63352 block_timeline: Persist user preference on timeline
* Persist sort preference to the user table * Persist filter preferences to the user table * Add behat tests to test persistence * Add the gdpr exports for the user preferences as well as unit tests for the same * Updated view_nav.min
- Loading branch information
Peter
committed
Oct 15, 2018
1 parent
129783b
commit 9e95193
Showing
16 changed files
with
488 additions
and
39 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,22 +25,48 @@ | |
namespace block_timeline\privacy; | ||
|
||
defined('MOODLE_INTERNAL') || die(); | ||
use \core_privacy\local\metadata\collection; | ||
|
||
/** | ||
* Privacy Subsystem for block_timeline. | ||
* | ||
* @copyright 2018 Ryan Wyllie <[email protected]> | ||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | ||
*/ | ||
class provider implements \core_privacy\local\metadata\null_provider { | ||
class provider implements \core_privacy\local\metadata\provider, \core_privacy\local\request\user_preference_provider { | ||
|
||
/** | ||
* Get the language string identifier with the component's language | ||
* file to explain why this plugin stores no data. | ||
* Returns meta-data information about the myoverview block. | ||
* | ||
* @return string | ||
* @param \core_privacy\local\metadata\collection $collection A collection of meta-data. | ||
* @return \core_privacy\local\metadata\collection Return the collection of meta-data. | ||
*/ | ||
public static function get_reason() : string { | ||
return 'privacy:metadata'; | ||
public static function get_metadata(collection $collection) : collection { | ||
$collection->add_user_preference('block_timeline_user_sort_preference', 'privacy:metadata:timelinesortpreference'); | ||
$collection->add_user_preference('block_timeline_user_filter_preference', 'privacy:metadata:timelinefilterpreference'); | ||
return $collection; | ||
} | ||
|
||
/** | ||
* Export all user preferences for the myoverview block | ||
* | ||
* @param int $userid The userid of the user whose data is to be exported. | ||
*/ | ||
public static function export_user_preferences(int $userid) { | ||
$preference = get_user_preferences('block_timeline_user_sort_preference', null, $userid); | ||
if (isset($preference)) { | ||
\core_privacy\local\request\writer::export_user_preference('block_timeline', 'block_timeline_user_sort_preference', | ||
get_string($preference, 'block_timeline'), | ||
get_string('privacy:metadata:timelinesortpreference', 'block_timeline') | ||
); | ||
} | ||
|
||
$preference = get_user_preferences('block_timeline_user_filter_preference', null, $userid); | ||
if (isset($preference)) { | ||
\core_privacy\local\request\writer::export_user_preference('block_timeline', 'block_timeline_user_filter_preference', | ||
get_string($preference, 'block_timeline'), | ||
get_string('privacy:metadata:timelinefilterpreference', 'block_timeline') | ||
); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
<?php | ||
// This file is part of Moodle - http://moodle.org/ | ||
// | ||
// Moodle is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU General Public License as published by | ||
// the Free Software Foundation, either version 3 of the License, or | ||
// (at your option) any later version. | ||
// | ||
// Moodle is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU General Public License for more details. | ||
// | ||
// You should have received a copy of the GNU General Public License | ||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
/** | ||
* Library functions for timeline | ||
* | ||
* @package block_timeline | ||
* @copyright 2018 Peter Dias | ||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | ||
*/ | ||
defined('MOODLE_INTERNAL') || die(); | ||
|
||
/** | ||
* Define constants to store the SORT user preference | ||
*/ | ||
define('BLOCK_TIMELINE_SORT_BY_DATES', 'sortbydates'); | ||
define('BLOCK_TIMELINE_SORT_BY_COURSES', 'sortbycourses'); | ||
|
||
/** | ||
* Define constants to store the FILTER user preference | ||
*/ | ||
define('BLOCK_TIMELINE_FILTER_BY_NONE', 'all'); | ||
define('BLOCK_TIMELINE_FILTER_BY_OVERDUE', 'overdue'); | ||
define('BLOCK_TIMELINE_FILTER_BY_7_DAYS', 'next7days'); | ||
define('BLOCK_TIMELINE_FILTER_BY_30_DAYS', 'next30days'); | ||
define('BLOCK_TIMELINE_FILTER_BY_3_MONTHS', 'next3months'); | ||
define('BLOCK_TIMELINE_FILTER_BY_6_MONTHS', 'next6months'); | ||
|
||
/** | ||
* Returns the name of the user preferences as well as the details this plugin uses. | ||
* | ||
* @return array | ||
*/ | ||
function block_timeline_user_preferences() { | ||
$preferences['block_timeline_user_sort_preference'] = array( | ||
'null' => NULL_NOT_ALLOWED, | ||
'default' => BLOCK_TIMELINE_SORT_BY_DATES, | ||
'type' => PARAM_ALPHA, | ||
'choices' => array(BLOCK_TIMELINE_SORT_BY_DATES, BLOCK_TIMELINE_SORT_BY_COURSES) | ||
); | ||
|
||
$preferences['block_timeline_user_filter_preference'] = array( | ||
'null' => NULL_NOT_ALLOWED, | ||
'default' => BLOCK_TIMELINE_FILTER_BY_30_DAYS, | ||
'type' => PARAM_ALPHANUM, | ||
'choices' => array( | ||
BLOCK_TIMELINE_FILTER_BY_NONE, | ||
BLOCK_TIMELINE_FILTER_BY_OVERDUE, | ||
BLOCK_TIMELINE_FILTER_BY_7_DAYS, | ||
BLOCK_TIMELINE_FILTER_BY_30_DAYS, | ||
BLOCK_TIMELINE_FILTER_BY_3_MONTHS, | ||
BLOCK_TIMELINE_FILTER_BY_6_MONTHS | ||
) | ||
); | ||
|
||
return $preferences; | ||
} |
Oops, something went wrong.