1
0
mirror of https://github.com/PlagiarismCheck/moodle-plagiarism_pchkorg.git synced 2024-09-19 09:00:08 +00:00
moodle-plagiarism_pchkorg/view/check_report.php
Jane Adelmann 7e31e7b49f
#14 - All Travis CI checks have been enabled.
#13 - A validation has been added.
 #12 - File with events has been deleted.
 #11 - A file access.php has been rewritten.
 #10 - install.xml file has been rewritten by xmldb tool.
 #9 - A Class with Privacy definition has been created.
 #8 - All urls and paths have been wrapped with build-in class  `moodle_url`.
 #7 - Check of `MOODLE_INTERNAL` constant has been added to each file where it was needed.
 #6 - All strings like this have been wrapped with `get_string` function.
 #5 - All native calls of `curl` have been replaced with moodle `curl` class.
 #4 - All classes have been renamed with moodle style naming. FileModel had been dropped.
 #3 - GPL License has been added to each file.
 #2 - Call of deprecated function has been replaced with a new one.
2022-01-04 16:11:53 +02:00

69 lines
2.2 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();
$ajaxurl = new moodle_url('/plagiarism/pchkorg/page/check.php');
$PAGE->requires->js_init_code("
var interval;
var data = {
'file': $('#plagcheck-loader').attr('data-file'),
'cmid': $('#plagcheck-loader').attr('data-cmid')
};
var checkStatus = function () {
$.post('{$ajaxurl}', data, function (response) {
if (!response || !response.success) {
$('#plagcheck-loader').hide();
clearInterval(interval);
} else if (response.checked) {
$('#plagcheck-loader').hide();
clearInterval(interval);
window.location.href = response.location;
}
}, 'JSON');
};
interval = setInterval(checkStatus, 1000);
", true);
echo $OUTPUT->header();
?>
<style>
.loader {
border: 16px solid #f3f3f3; /* Light grey */
border-top: 16px solid #3498db; /* Blue */
border-radius: 50%;
width: 120px;
height: 120px;
animation: spin 2s linear infinite;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
</style>
<div>
<div id="plagcheck-loader" data-cmid="<?php
echo intval($cmid) ?>" data-file="<?php
echo intval($fileid) ?>" class="loader"></div>
</div>
<?php
echo $OUTPUT->footer();