2018-11-01 14:21:14 +00:00
|
|
|
<?php
|
2019-01-17 16:51:22 +00:00
|
|
|
// 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/>.
|
2018-11-01 14:21:14 +00:00
|
|
|
|
2019-02-06 13:38:23 +00:00
|
|
|
/**
|
|
|
|
* @package plagiarism_pchkorg
|
|
|
|
* @category plagiarism
|
|
|
|
* @copyright PlagiarismCheck.org, https://plagiarismcheck.org/
|
|
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
|
*/
|
|
|
|
|
2019-01-17 16:51:22 +00:00
|
|
|
defined('MOODLE_INTERNAL') || die();
|
2018-11-01 14:21:14 +00:00
|
|
|
|
2019-04-05 16:25:06 +00:00
|
|
|
$tasks = array(
|
|
|
|
array(
|
|
|
|
'classname' => 'plagiarism_pchkorg\task\update_reports',
|
|
|
|
'blocking' => 0,
|
2023-06-06 08:38:38 +00:00
|
|
|
'minute' => '*',
|
2019-04-05 16:25:06 +00:00
|
|
|
'hour' => '*',
|
|
|
|
'day' => '*',
|
|
|
|
'dayofweek' => '*',
|
|
|
|
'month' => '*'
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'classname' => 'plagiarism_pchkorg\task\send_submissions',
|
|
|
|
'blocking' => 0,
|
2023-06-06 08:38:38 +00:00
|
|
|
'minute' => '*',
|
2019-04-05 16:25:06 +00:00
|
|
|
'hour' => '*',
|
|
|
|
'day' => '*',
|
|
|
|
'dayofweek' => '*',
|
|
|
|
'month' => '*'
|
|
|
|
),
|
2024-07-31 11:19:43 +00:00
|
|
|
array(
|
|
|
|
'classname' => 'plagiarism_pchkorg\task\auto_registrate_teachers',
|
|
|
|
'blocking' => 0,
|
|
|
|
'minute' => '*',
|
|
|
|
'hour' => '*/1',
|
|
|
|
'day' => '*',
|
|
|
|
'dayofweek' => '*',
|
|
|
|
'month' => '*'
|
|
|
|
),
|
2019-04-05 16:25:06 +00:00
|
|
|
);
|