4a1544cfdc
* Removed dpa * Plugin remains disabled by default
46 lines
1.7 KiB
PHP
46 lines
1.7 KiB
PHP
<?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/>.
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace mod_bigbluebuttonbn\task;
|
|
|
|
use core\task\adhoc_task;
|
|
use core\message\message;
|
|
use mod_bigbluebuttonbn\local\config;
|
|
|
|
/**
|
|
* Deprecated Ad-hoc task to send a notification related to the disabling of the BigBlueButton activity module.
|
|
*
|
|
* The ad-hoc tasks sends a notification to the administrator informing that the BigBlueButton activity module has
|
|
* been disabled and they are required to confirm their acceptance of the data processing agreement prior to
|
|
* re-enabling it.
|
|
*
|
|
* @package mod_bigbluebuttonbn
|
|
* @copyright 2022 Mihail Geshoski <mihail@moodle.com>
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
class send_bigbluebutton_module_disabled_notification extends adhoc_task {
|
|
/**
|
|
* Execute the task.
|
|
*/
|
|
public function execute() {
|
|
// Log the debug message.
|
|
$message = "Attempted to run deprecated send_bigbluebutton_module_disabled_notification task.";
|
|
debugging($message, DEBUG_DEVELOPER);
|
|
}
|
|
}
|