123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293 |
- <?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/>.
- /**
- * Library of interface functions and constants.
- *
- * @package colab
- * @copyright 2020 Your Name <you@example.com>
- * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
- */
- defined('MOODLE_INTERNAL') || die();
- /**
- * Return if the plugin supports $feature.
- *
- * @param string $feature Constant representing the feature.
- * @return true | null True if the feature is supported, null otherwise.
- */
- function colab_supports($feature) {
- switch ($feature) {
- case FEATURE_GRADE_HAS_GRADE:
- return true;
- case FEATURE_MOD_INTRO:
- return true;
- default:
- return null;
- }
- }
- /**
- * Saves a new instance of the colab into the database.
- *
- * Given an object containing all the necessary data, (defined by the form
- * in mod_form.php) this function will create a new instance and return the id
- * number of the instance.
- *
- * @param object $moduleinstance An object from the form.
- * @param mod_colab_mod_form $mform The form.
- * @return int The id of the newly inserted record.
- */
- function colab_add_instance($moduleinstance, $mform = null) {
- global $DB;
- $moduleinstance->timecreated = time();
- $id = $DB->insert_record('colab', $moduleinstance);
- return $id;
- }
- /**
- * Updates an instance of the colab in the database.
- *
- * Given an object containing all the necessary data (defined in mod_form.php),
- * this function will update an existing instance with new data.
- *
- * @param object $moduleinstance An object from the form in mod_form.php.
- * @param mod_colab_mod_form $mform The form.
- * @return bool True if successful, false otherwise.
- */
- function colab_update_instance($moduleinstance, $mform = null) {
- global $DB;
- $moduleinstance->timemodified = time();
- $moduleinstance->id = $moduleinstance->instance;
- return $DB->update_record('colab', $moduleinstance);
- }
- /**
- * Removes an instance of the colab from the database.
- *
- * @param int $id Id of the module instance.
- * @return bool True if successful, false on failure.
- */
- function colab_delete_instance($id) {
- global $DB;
- $exists = $DB->get_record('colab', array('id' => $id));
- if (!$exists) {
- return false;
- }
- $DB->delete_records('colab', array('id' => $id));
- return true;
- }
- /**
- * Is a given scale used by the instance of colab?
- *
- * This function returns if a scale is being used by one colab
- * if it has support for grading and scales.
- *
- * @param int $moduleinstanceid ID of an instance of this module.
- * @param int $scaleid ID of the scale.
- * @return bool True if the scale is used by the given colab instance.
- */
- function colab_scale_used($moduleinstanceid, $scaleid) {
- global $DB;
- if ($scaleid && $DB->record_exists('colab', array('id' => $moduleinstanceid, 'grade' => -$scaleid))) {
- return true;
- } else {
- return false;
- }
- }
- /**
- * Checks if scale is being used by any instance of colab.
- *
- * This is used to find out if scale used anywhere.
- *
- * @param int $scaleid ID of the scale.
- * @return bool True if the scale is used by any colab instance.
- */
- function colab_scale_used_anywhere($scaleid) {
- global $DB;
- if ($scaleid and $DB->record_exists('colab', array('grade' => -$scaleid))) {
- return true;
- } else {
- return false;
- }
- }
- /**
- * Creates or updates grade item for the given colab instance.
- *
- * Needed by {@link grade_update_mod_grades()}.
- *
- * @param stdClass $moduleinstance Instance object with extra cmidnumber and modname property.
- * @param bool $reset Reset grades in the gradebook.
- * @return void.
- */
- function colab_grade_item_update($moduleinstance, $reset=false) {
- global $CFG;
- require_once($CFG->libdir.'/gradelib.php');
- $item = array();
- $item['itemname'] = clean_param($moduleinstance->name, PARAM_NOTAGS);
- $item['gradetype'] = GRADE_TYPE_VALUE;
- if ($moduleinstance->grade > 0) {
- $item['gradetype'] = GRADE_TYPE_VALUE;
- $item['grademax'] = $moduleinstance->grade;
- $item['grademin'] = 0;
- } else if ($moduleinstance->grade < 0) {
- $item['gradetype'] = GRADE_TYPE_SCALE;
- $item['scaleid'] = -$moduleinstance->grade;
- } else {
- $item['gradetype'] = GRADE_TYPE_NONE;
- }
- if ($reset) {
- $item['reset'] = true;
- }
- grade_update('/mod/colab', $moduleinstance->course, 'mod', 'colab', $moduleinstance->id, 0, null, $item);
- }
- /**
- * Delete grade item for given colab instance.
- *
- * @param stdClass $moduleinstance Instance object.
- * @return grade_item.
- */
- function colab_grade_item_delete($moduleinstance) {
- global $CFG;
- require_once($CFG->libdir.'/gradelib.php');
- return grade_update('/mod/colab', $moduleinstance->course, 'mod', 'colab',
- $moduleinstance->id, 0, null, array('deleted' => 1));
- }
- /**
- * Update colab grades in the gradebook.
- *
- * Needed by {@link grade_update_mod_grades()}.
- *
- * @param stdClass $moduleinstance Instance object with extra cmidnumber and modname property.
- * @param int $userid Update grade of specific user only, 0 means all participants.
- */
- function colab_update_grades($moduleinstance, $userid = 0) {
- global $CFG, $DB;
- require_once($CFG->libdir.'/gradelib.php');
- // Populate array of grade objects indexed by userid.
- $grades = array();
- grade_update('/mod/colab', $moduleinstance->course, 'mod', 'colab', $moduleinstance->id, 0, $grades);
- }
- /**
- * Returns the lists of all browsable file areas within the given module context.
- *
- * The file area 'intro' for the activity introduction field is added automatically
- * by {@link file_browser::get_file_info_context_module()}.
- *
- * @package colab
- * @category files
- *
- * @param stdClass $course.
- * @param stdClass $cm.
- * @param stdClass $context.
- * @return string[].
- */
- function colab_get_file_areas($course, $cm, $context) {
- return array();
- }
- /**
- * File browsing support for colab file areas.
- *
- * @package colab
- * @category files
- *
- * @param file_browser $browser.
- * @param array $areas.
- * @param stdClass $course.
- * @param stdClass $cm.
- * @param stdClass $context.
- * @param string $filearea.
- * @param int $itemid.
- * @param string $filepath.
- * @param string $filename.
- * @return file_info Instance or null if not found.
- */
- function colab_get_file_info($browser, $areas, $course, $cm, $context, $filearea, $itemid, $filepath, $filename) {
- return null;
- }
- /**
- * Serves the files from the colab file areas.
- *
- * @package colab
- * @category files
- *
- * @param stdClass $course The course object.
- * @param stdClass $cm The course module object.
- * @param stdClass $context The colab's context.
- * @param string $filearea The name of the file area.
- * @param array $args Extra arguments (itemid, path).
- * @param bool $forcedownload Whether or not force download.
- * @param array $options Additional options affecting the file serving.
- */
- function colab_pluginfile($course, $cm, $context, $filearea, $args, $forcedownload, $options = array()) {
- global $DB, $CFG;
- if ($context->contextlevel != CONTEXT_MODULE) {
- send_file_not_found();
- }
- require_login($course, true, $cm);
- send_file_not_found();
- }
- /**
- * Extends the global navigation tree by adding colab nodes if there is a relevant content.
- *
- * This can be called by an AJAX request so do not rely on $PAGE as it might not be set up properly.
- *
- * @param navigation_node $colabnode An object representing the navigation tree node.
- * @param stdClass $course.
- * @param stdClass $module.
- * @param cm_info $cm.
- */
- function colab_extend_navigation($colabnode, $course, $module, $cm) {
- }
- /**
- * Extends the settings navigation with the colab settings.
- *
- * This function is called when the context for the page is a colab module.
- * This is not called by AJAX so it is safe to rely on the $PAGE.
- *
- * @param settings_navigation $settingsnav {@link settings_navigation}
- * @param navigation_node $colabnode {@link navigation_node}
- */
- function colab_extend_settings_navigation($settingsnav, $colabnode = null) {
- }
|