mirror of
https://github.com/PlagiarismCheck/moodle-plagiarism_pchkorg.git
synced 2024-12-22 12:10:08 +00:00
33 lines
1.1 KiB
PHP
33 lines
1.1 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/>.
|
||
|
|
||
|
defined('MOODLE_INTERNAL') || die();
|
||
|
|
||
|
class plagiarism_pchkorg_url_generator {
|
||
|
public function get_check_url($cmid, $fileid) {
|
||
|
return new moodle_url(sprintf(
|
||
|
'/plagiarism/pchkorg/page/report.php?cmid=%s&file=%s',
|
||
|
intval($cmid),
|
||
|
intval($fileid)
|
||
|
)
|
||
|
);
|
||
|
}
|
||
|
|
||
|
public function get_status_url() {
|
||
|
return new moodle_url('/plagiarism/pchkorg/page/status.php');
|
||
|
}
|
||
|
}
|