Merge branch 'MDL-62029-master-2' of git://github.com/snake/moodle
This commit is contained in:
@@ -0,0 +1,220 @@
|
||||
<?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/>.
|
||||
|
||||
/**
|
||||
* Privacy class for requesting user data.
|
||||
*
|
||||
* @package core_course
|
||||
* @copyright 2018 Adrian Greeve <[email protected]>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
namespace core_course\privacy;
|
||||
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
use \core_privacy\local\metadata\collection;
|
||||
use \core_privacy\local\request\contextlist;
|
||||
use \core_privacy\local\request\approved_contextlist;
|
||||
use \core_privacy\local\request\writer;
|
||||
use \core_privacy\local\request\transform;
|
||||
|
||||
/**
|
||||
* Privacy class for requesting user data.
|
||||
*
|
||||
* @copyright 2018 Adrian Greeve <[email protected]>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
class provider implements
|
||||
\core_privacy\local\metadata\provider,
|
||||
\core_privacy\local\request\context_aware_provider,
|
||||
\core_privacy\local\request\plugin\provider,
|
||||
\core_privacy\local\request\user_preference_provider {
|
||||
|
||||
/**
|
||||
* Returns meta data about this system.
|
||||
*
|
||||
* @param collection $collection The initialised collection to add items to.
|
||||
* @return collection A listing of user data stored through this system.
|
||||
*/
|
||||
public static function get_metadata(collection $collection) : collection {
|
||||
$collection->add_subsystem_link('core_completion', [], 'privacy:metadata:completionsummary');
|
||||
$collection->add_user_preference('coursecat_management_perpage', 'privacy:perpage');
|
||||
return $collection;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the list of contexts that contain user information for the specified user.
|
||||
*
|
||||
* @param int $userid The user to search.
|
||||
* @return contextlist $contextlist The contextlist containing the list of contexts used in this plugin.
|
||||
*/
|
||||
public static function get_contexts_for_userid(int $userid) : contextlist {
|
||||
list($join, $where, $params) = \core_completion\privacy\provider::get_course_completion_join_sql($userid, 'cc', 'c.id');
|
||||
$sql = "SELECT ctx.id
|
||||
FROM {context} ctx
|
||||
JOIN {course} c ON ctx.instanceid = c.id AND ctx.contextlevel = :contextcourse
|
||||
{$join}
|
||||
WHERE {$where}";
|
||||
$params['contextcourse'] = CONTEXT_COURSE;
|
||||
$contextlist = new contextlist();
|
||||
$contextlist->add_from_sql($sql, $params);
|
||||
return $contextlist;
|
||||
}
|
||||
|
||||
/**
|
||||
* Export all user data for the specified user, in the specified contexts.
|
||||
*
|
||||
* @param approved_contextlist $contextlist The approved contexts to export information for.
|
||||
*/
|
||||
public static function export_user_data(approved_contextlist $contextlist) {
|
||||
global $DB;
|
||||
|
||||
// Get the course.
|
||||
list($select, $params) = $DB->get_in_or_equal($contextlist->get_contextids(), SQL_PARAMS_NAMED);
|
||||
$params['contextcourse'] = CONTEXT_COURSE;
|
||||
|
||||
$sql = "SELECT c.*
|
||||
FROM {course} c
|
||||
JOIN {context} ctx ON c.id = ctx.instanceid AND ctx.contextlevel = :contextcourse
|
||||
WHERE ctx.id $select";
|
||||
|
||||
$courses = $DB->get_recordset_sql($sql, $params);
|
||||
foreach ($courses as $course) {
|
||||
$coursecompletion = \core_completion\privacy\provider::get_course_completion_info($contextlist->get_user(), $course);
|
||||
writer::with_context(\context_course::instance($course->id))->export_data(
|
||||
[get_string('privacy:completionpath', 'course')], (object) $coursecompletion);
|
||||
}
|
||||
$courses->close();
|
||||
}
|
||||
|
||||
/**
|
||||
* Give the component a chance to include any contextual information deemed relevant to any child contexts which are
|
||||
* exporting personal data.
|
||||
*
|
||||
* By giving the component access to the full list of contexts being exported across all components, it can determine whether a
|
||||
* descendant context is being exported, and decide whether to add relevant contextual information about itself. Having access
|
||||
* to the full list of contexts being exported is what makes this component a context aware provider.
|
||||
*
|
||||
* E.g.
|
||||
* If, during the core export process, a course module is included in the contextlist_collection but the course containing the
|
||||
* module is not (perhaps there's no longer a user enrolment), then the course should include general contextual information in
|
||||
* the export so we know basic details about which course the module belongs to. This method allows the course to make that
|
||||
* decision, based on the existence of any decendant module contexts in the collection.
|
||||
*
|
||||
* @param \core_privacy\local\request\contextlist_collection $contextlistcollection
|
||||
*/
|
||||
public static function export_context_data(\core_privacy\local\request\contextlist_collection $contextlistcollection) {
|
||||
global $DB;
|
||||
|
||||
$coursecontextids = $DB->get_records_menu('context', ['contextlevel' => CONTEXT_COURSE], '', 'id, instanceid');
|
||||
$courseids = [];
|
||||
foreach ($contextlistcollection as $component) {
|
||||
foreach ($component->get_contexts() as $context) {
|
||||
// All course contexts have been accounted for, so skip all checks.
|
||||
if (empty($coursecontextids)) {
|
||||
break;
|
||||
}
|
||||
// Only course, module, and block contexts are checked.
|
||||
if (in_array($context->contextlevel, [CONTEXT_USER, CONTEXT_SYSTEM, CONTEXT_COURSECAT])) {
|
||||
continue;
|
||||
}
|
||||
// If the context is a course, then we just add it without the need to check context path.
|
||||
if ($context->contextlevel == CONTEXT_COURSE) {
|
||||
$courseids[$context->id] = $context->instanceid;
|
||||
unset($coursecontextids[$context->id]);
|
||||
continue;
|
||||
}
|
||||
// Otherwise, we need to check all the course context paths, to see if this context is a descendant.
|
||||
foreach ($coursecontextids as $contextid => $instanceid) {
|
||||
if (stripos($context->path, '/' . $contextid . '/') !== false) {
|
||||
$courseids[$contextid] = $instanceid;
|
||||
unset($coursecontextids[$contextid]);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
if (empty($courseids)) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Export general data for these contexts.
|
||||
list($sql, $params) = $DB->get_in_or_equal($courseids);
|
||||
$sql = 'id ' . $sql;
|
||||
$coursedata = $DB->get_records_select('course', $sql, $params);
|
||||
|
||||
foreach ($coursedata as $course) {
|
||||
$context = \context_course::instance($course->id);
|
||||
$data = (object) [
|
||||
'fullname' => $course->fullname,
|
||||
'shortname' => $course->shortname,
|
||||
'idnumber' => $course->idnumber,
|
||||
'summary' => writer::with_context($context)->rewrite_pluginfile_urls([], 'course', 'summary', 0,
|
||||
format_string($course->summary)),
|
||||
'format' => get_string('pluginname', 'format_' . $course->format),
|
||||
'startdate' => transform::datetime($course->startdate),
|
||||
'enddate' => transform::datetime($course->enddate)
|
||||
];
|
||||
writer::with_context($context)
|
||||
->export_area_files([], 'course', 'summary', 0)
|
||||
->export_area_files([], 'course', 'overviewfiles', 0)
|
||||
->export_data([], $data);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Export all user preferences for the plugin.
|
||||
*
|
||||
* @param int $userid The userid of the user whose data is to be exported.
|
||||
*/
|
||||
public static function export_user_preferences(int $userid) {
|
||||
$perpage = get_user_preferences('coursecat_management_perpage', null, $userid);
|
||||
if (isset($perpage)) {
|
||||
writer::export_user_preference('core_course',
|
||||
'coursecat_management_perpage',
|
||||
$perpage,
|
||||
get_string('privacy:perpage', 'course')
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Delete all data for all users in the specified context.
|
||||
*
|
||||
* @param context $context The specific context to delete data for.
|
||||
*/
|
||||
public static function delete_data_for_all_users_in_context(\context $context) {
|
||||
// Check what context we've been delivered.
|
||||
if ($context->contextlevel == CONTEXT_COURSE) {
|
||||
// Delete course completion data.
|
||||
\core_completion\privacy\provider::delete_completion(null, $context->instanceid);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Delete all user data for the specified user, in the specified contexts.
|
||||
*
|
||||
* @param approved_contextlist $contextlist The approved contexts and user information to delete information for.
|
||||
*/
|
||||
public static function delete_data_for_user(approved_contextlist $contextlist) {
|
||||
foreach ($contextlist as $context) {
|
||||
if ($context->contextlevel == CONTEXT_COURSE) {
|
||||
// Delete course completion data.
|
||||
\core_completion\privacy\provider::delete_completion($contextlist->get_user(), $context->instanceid);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,178 @@
|
||||
<?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/>.
|
||||
/**
|
||||
* Privacy tests for core_course.
|
||||
*
|
||||
* @package core_course
|
||||
* @category test
|
||||
* @copyright 2018 Adrian Greeve <[email protected]>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
global $CFG;
|
||||
require_once($CFG->dirroot . '/completion/tests/fixtures/completion_creation.php');
|
||||
|
||||
/**
|
||||
* Unit tests for course/classes/privacy/policy
|
||||
*
|
||||
* @copyright 2018 Adrian Greeve <[email protected]>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
class core_course_privacy_testcase extends \core_privacy\tests\provider_testcase {
|
||||
|
||||
use completion_creation;
|
||||
|
||||
/**
|
||||
* Test getting the appropriate context for the userid. This should only ever
|
||||
* return the user context for the user id supplied.
|
||||
*/
|
||||
public function test_get_contexts_for_userid() {
|
||||
$this->resetAfterTest();
|
||||
$user = $this->getDataGenerator()->create_user();
|
||||
$this->create_course_completion();
|
||||
$this->complete_course($user);
|
||||
$contextlist = \core_course\privacy\provider::get_contexts_for_userid($user->id);
|
||||
$this->assertEquals($this->coursecontext->id, $contextlist->current()->id);
|
||||
}
|
||||
|
||||
/**
|
||||
* Test that user data is exported.
|
||||
*/
|
||||
public function test_export_user_data() {
|
||||
$this->resetAfterTest();
|
||||
$user = $this->getDataGenerator()->create_user();
|
||||
$this->create_course_completion();
|
||||
$this->complete_course($user);
|
||||
$approvedlist = new \core_privacy\local\request\approved_contextlist($user, 'core_course',
|
||||
[$this->coursecontext->id]);
|
||||
$writer = \core_privacy\local\request\writer::with_context($this->coursecontext);
|
||||
\core_course\privacy\provider::export_user_data($approvedlist);
|
||||
$completiondata = $writer->get_data([get_string('privacy:completionpath', 'course')]);
|
||||
$this->assertEquals('In progress', $completiondata->status);
|
||||
$this->assertCount(2, $completiondata->criteria);
|
||||
}
|
||||
|
||||
/**
|
||||
* Verify that if a module context is included in the contextlist_collection and its parent course is not, the
|
||||
* export_context_data() call picks this up, and that the contextual course information is included.
|
||||
*/
|
||||
public function test_export_context_data_module_context_only() {
|
||||
$this->resetAfterTest();
|
||||
|
||||
// Create a course and a single module.
|
||||
$course1 = $this->getDataGenerator()->create_course(['fullname' => 'Course 1', 'shortname' => 'C1']);
|
||||
$context1 = context_course::instance($course1->id);
|
||||
$modassign = $this->getDataGenerator()->create_module('assign', ['course' => $course1->id, 'name' => 'assign test 1']);
|
||||
$assigncontext = context_module::instance($modassign->cmid);
|
||||
|
||||
// Now, let's assume during user info export, only the coursemodule context is returned in the contextlist_collection.
|
||||
$user = $this->getDataGenerator()->create_user();
|
||||
$collection = new \core_privacy\local\request\contextlist_collection($user->id);
|
||||
$approvedlist = new \core_privacy\local\request\approved_contextlist($user, 'mod_assign', [$assigncontext->id]);
|
||||
$collection->add_contextlist($approvedlist);
|
||||
|
||||
// Now, verify that core_course will detect this, and add relevant contextual information.
|
||||
\core_course\privacy\provider::export_context_data($collection);
|
||||
$writer = \core_privacy\local\request\writer::with_context($context1);
|
||||
$this->assertTrue($writer->has_any_data());
|
||||
$writerdata = $writer->get_data();
|
||||
$this->assertObjectHasAttribute('fullname', $writerdata);
|
||||
$this->assertObjectHasAttribute('shortname', $writerdata);
|
||||
$this->assertObjectHasAttribute('idnumber', $writerdata);
|
||||
$this->assertObjectHasAttribute('summary', $writerdata);
|
||||
}
|
||||
|
||||
/**
|
||||
* Verify that if a module context and its parent course context are both included in the contextlist_collection, that course
|
||||
* contextual information is present in the export.
|
||||
*/
|
||||
public function test_export_context_data_course_and_module_contexts() {
|
||||
$this->resetAfterTest();
|
||||
|
||||
// Create a course and a single module.
|
||||
$course1 = $this->getDataGenerator()->create_course(['fullname' => 'Course 1', 'shortname' => 'C1']);
|
||||
$context1 = context_course::instance($course1->id);
|
||||
$modassign = $this->getDataGenerator()->create_module('assign', ['course' => $course1->id, 'name' => 'assign test 1']);
|
||||
$assigncontext = context_module::instance($modassign->cmid);
|
||||
|
||||
// Now, assume during user info export, that both module and course contexts are returned in the contextlist_collection.
|
||||
$user = $this->getDataGenerator()->create_user();
|
||||
$collection = new \core_privacy\local\request\contextlist_collection($user->id);
|
||||
$approvedlist = new \core_privacy\local\request\approved_contextlist($user, 'mod_assign', [$assigncontext->id]);
|
||||
$approvedlist2 = new \core_privacy\local\request\approved_contextlist($user, 'core_course', [$context1->id]);
|
||||
$collection->add_contextlist($approvedlist);
|
||||
$collection->add_contextlist($approvedlist2);
|
||||
|
||||
// Now, verify that core_course still adds relevant contextual information, even for courses which are explicitly listed in
|
||||
// the contextlist_collection.
|
||||
\core_course\privacy\provider::export_context_data($collection);
|
||||
$writer = \core_privacy\local\request\writer::with_context($context1);
|
||||
$this->assertTrue($writer->has_any_data());
|
||||
$writerdata = $writer->get_data();
|
||||
$this->assertObjectHasAttribute('fullname', $writerdata);
|
||||
$this->assertObjectHasAttribute('shortname', $writerdata);
|
||||
$this->assertObjectHasAttribute('idnumber', $writerdata);
|
||||
$this->assertObjectHasAttribute('summary', $writerdata);
|
||||
}
|
||||
|
||||
/**
|
||||
* Test deleting all user data for one context.
|
||||
*/
|
||||
public function test_delete_data_for_all_users_in_context() {
|
||||
global $DB;
|
||||
$this->resetAfterTest();
|
||||
$user1 = $this->getDataGenerator()->create_user();
|
||||
$user2 = $this->getDataGenerator()->create_user();
|
||||
$this->create_course_completion();
|
||||
$this->complete_course($user1);
|
||||
$this->complete_course($user2);
|
||||
$records = $DB->get_records('course_modules_completion');
|
||||
$this->assertCount(2, $records);
|
||||
$records = $DB->get_records('course_completion_crit_compl');
|
||||
$this->assertCount(2, $records);
|
||||
\core_course\privacy\provider::delete_data_for_all_users_in_context($this->coursecontext);
|
||||
$records = $DB->get_records('course_modules_completion');
|
||||
$this->assertCount(0, $records);
|
||||
$records = $DB->get_records('course_completion_crit_compl');
|
||||
$this->assertCount(0, $records);
|
||||
}
|
||||
|
||||
/**
|
||||
* Test deleting data for only one user.
|
||||
*/
|
||||
public function test_delete_data_for_user() {
|
||||
global $DB;
|
||||
$this->resetAfterTest();
|
||||
$user1 = $this->getDataGenerator()->create_user();
|
||||
$user2 = $this->getDataGenerator()->create_user();
|
||||
$this->create_course_completion();
|
||||
$this->complete_course($user1);
|
||||
$this->complete_course($user2);
|
||||
$records = $DB->get_records('course_modules_completion');
|
||||
$this->assertCount(2, $records);
|
||||
$records = $DB->get_records('course_completion_crit_compl');
|
||||
$this->assertCount(2, $records);
|
||||
$approvedlist = new \core_privacy\local\request\approved_contextlist($user1, 'core_course',
|
||||
[$this->coursecontext->id]);
|
||||
\core_course\privacy\provider::delete_data_for_user($approvedlist);
|
||||
$records = $DB->get_records('course_modules_completion');
|
||||
$this->assertCount(1, $records);
|
||||
$records = $DB->get_records('course_completion_crit_compl');
|
||||
$this->assertCount(1, $records);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,27 @@
|
||||
<?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/>.
|
||||
|
||||
/**
|
||||
* Strings for component 'course', language 'en', branch 'MOODLE_20_STABLE'
|
||||
*
|
||||
* @package core_course
|
||||
* @copyright 2018 Adrian Greeve <adriangreeve.com>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
$string['privacy:perpage'] = 'The number of courses to show per page.';
|
||||
$string['privacy:completionpath'] = 'Course completion';
|
||||
$string['privacy:metadata:completionsummary'] = 'The course contains completion information about the user.';
|
||||
@@ -0,0 +1,49 @@
|
||||
<?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/>.
|
||||
|
||||
/**
|
||||
* File containing the provider interface for plugins needing access to all approved contexts to fill in relevant contextual data.
|
||||
*
|
||||
* Plugins should implement this if they need access to all approved contexts.
|
||||
*
|
||||
* @package core_privacy
|
||||
* @copyright 2018 Adrian Greeve <adriangreeve.com>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
namespace core_privacy\local\request;
|
||||
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
/**
|
||||
* The provider interface for plugins which need access to all approved contexts to fill in relevant contextual data.
|
||||
*
|
||||
* @copyright 2018 Adrian Greeve <adriangreeve.com>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
interface context_aware_provider extends \core_privacy\local\request\core_data_provider {
|
||||
|
||||
/**
|
||||
* Give the component a chance to include any contextual information deemed relevant to any child contexts which are
|
||||
* exporting personal data.
|
||||
*
|
||||
* By giving the component access to the full list of contexts being exported across all components, it can determine whether a
|
||||
* descendant context is being exported, and decide whether to add relevant contextual information about itself. Having access
|
||||
* to the full list of contexts being exported is what makes this component a context aware provider.
|
||||
*
|
||||
* @param \core_privacy\local\request\contextlist_collection $contextcollection The collection of approved context lists.
|
||||
*/
|
||||
public static function export_context_data(\core_privacy\local\request\contextlist_collection $contextcollection);
|
||||
}
|
||||
@@ -216,7 +216,7 @@ class manager {
|
||||
// told to export.
|
||||
$this->get_provider_classname($component)::export_user_data($approvedcontextlist);
|
||||
}
|
||||
} else {
|
||||
} else if (!$this->component_implements($component, \core_privacy\local\request\context_aware_provider::class)) {
|
||||
// This plugin does not know that it has data - export the shared data it doesn't know about.
|
||||
local\request\helper::export_data_for_null_provider($approvedcontextlist);
|
||||
}
|
||||
@@ -228,6 +228,12 @@ class manager {
|
||||
if ($this->component_implements($component, \core_privacy\local\request\user_preference_provider::class)) {
|
||||
$this->get_provider_classname($component)::export_user_preferences($contextlistcollection->get_userid());
|
||||
}
|
||||
|
||||
// Contextual information providers. Give each component a chance to include context information based on the
|
||||
// existence of a child context in the contextlist_collection.
|
||||
if ($this->component_implements($component, \core_privacy\local\request\context_aware_provider::class)) {
|
||||
$this->get_provider_classname($component)::export_context_data($contextlistcollection);
|
||||
}
|
||||
}
|
||||
|
||||
return local\request\writer::with_context(\context_system::instance())->finalise_content();
|
||||
|
||||
Reference in New Issue
Block a user