[ Index ] |
PHP Cross Reference of moodle-2.8 |
[Summary view] [Print] [Text view]
1 <?php 2 3 // This file is part of Moodle - http://moodle.org/ 4 // 5 // Moodle is free software: you can redistribute it and/or modify 6 // it under the terms of the GNU General Public License as published by 7 // the Free Software Foundation, either version 3 of the License, or 8 // (at your option) any later version. 9 // 10 // Moodle is distributed in the hope that it will be useful, 11 // but WITHOUT ANY WARRANTY; without even the implied warranty of 12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 // GNU General Public License for more details. 14 // 15 // You should have received a copy of the GNU General Public License 16 // along with Moodle. If not, see <http://www.gnu.org/licenses/>. 17 18 /** 19 * lib.php - Contains Plagiarism base class used by plugins. 20 * 21 * @since Moodle 2.0 22 * @package moodlecore 23 * @subpackage plagiarism 24 * @copyright 2010 Dan Marsden http://danmarsden.com 25 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later 26 */ 27 28 if (!defined('MOODLE_INTERNAL')) { 29 die('Direct access to this script is forbidden.'); /// It must be included from a Moodle page 30 } 31 32 //dummy class - all plugins should be based off this. 33 class plagiarism_plugin { 34 35 /** 36 * Return the list of form element names. 37 * 38 * @return array contains the form element names. 39 */ 40 public function get_configs() { 41 return array(); 42 } 43 44 /** 45 * hook to allow plagiarism specific information to be displayed beside a submission 46 * @param array $linkarraycontains all relevant information for the plugin to generate a link 47 * @return string 48 * 49 */ 50 public function get_links($linkarray) { 51 return ''; 52 } 53 /** 54 * hook to allow plagiarism specific information to be returned unformatted 55 * @param int $cmid 56 * @param int $userid 57 * @param $file file object 58 * @return array containing at least: 59 * - 'analyzed' - whether the file has been successfully analyzed 60 * - 'score' - similarity score - ('' if not known) 61 * - 'reporturl' - url of originality report - '' if unavailable 62 */ 63 public function get_file_results($cmid, $userid, $file) { 64 return array('analyzed' => '', 'score' => '', 'reporturl' => ''); 65 } 66 /** 67 * hook to add plagiarism specific settings to a module settings page 68 * @param object $mform - Moodle form 69 * @param object $context - current context 70 * @param string $modulename - Name of the module 71 */ 72 public function get_form_elements_module($mform, $context, $modulename = "") { 73 } 74 /* hook to save plagiarism specific settings on a module settings page 75 * @param object $data - data from an mform submission. 76 */ 77 public function save_form_elements($data) { 78 } 79 /** 80 * hook to allow a disclosure to be printed notifying users what will happen with their submission 81 * @param int $cmid - course module id 82 * @return string 83 */ 84 public function print_disclosure($cmid) { 85 } 86 /** 87 * hook to allow status of submitted files to be updated - called on grading/report pages. 88 * 89 * @param object $course - full Course object 90 * @param object $cm - full cm object 91 */ 92 public function update_status($course, $cm) { 93 } 94 /** 95 * hook for cron 96 * 97 */ 98 public function plagiarism_cron() { 99 } 100 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Fri Nov 28 20:29:05 2014 | Cross-referenced by PHPXref 0.7.1 |