X7ROOT File Manager
Current Path:
/home/cbholdings/pasukulu/mod/assign
home
/
cbholdings
/
pasukulu
/
mod
/
assign
/
📁
..
📄
adminlib.php
(12.05 KB)
📄
adminmanageplugins.php
(1.41 KB)
📁
amd
📄
assignmentplugin.php
(23.71 KB)
📁
backup
📄
batchsetallocatedmarkerform.php
(2.33 KB)
📄
batchsetmarkingworkflowstateform.php
(3.73 KB)
📁
classes
📁
db
📄
deprecatedlib.php
(2.23 KB)
📄
extensionform.php
(5.67 KB)
📄
externallib.php
(131.74 KB)
📁
feedback
📄
feedbackplugin.php
(6.95 KB)
📄
gradeform.php
(3.69 KB)
📄
gradingbatchoperationsform.php
(4.33 KB)
📄
gradingoptionsform.php
(5.04 KB)
📄
gradingtable.php
(67.96 KB)
📄
index.php
(1.84 KB)
📁
lang
📄
lib.php
(64.76 KB)
📄
locallib.php
(409.32 KB)
📄
mod_form.php
(15.38 KB)
📄
module.js
(9.34 KB)
📄
override_form.php
(14.89 KB)
📄
overridedelete.php
(3.8 KB)
📄
overrideedit.php
(9.12 KB)
📄
overrides.php
(12.85 KB)
📁
pix
📄
quickgradingform.php
(2.39 KB)
📄
renderable.php
(29.41 KB)
📄
renderer.php
(1.11 KB)
📄
settings.php
(18.33 KB)
📄
styles.css
(32.78 KB)
📁
submission
📄
submission_form.php
(2.19 KB)
📄
submissionconfirmform.php
(2.32 KB)
📄
submissionplugin.php
(4.79 KB)
📁
templates
📁
tests
📄
upgrade.txt
(11.63 KB)
📄
version.php
(1.13 KB)
📄
view.php
(1.9 KB)
📁
yui
Editing: deprecatedlib.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/>. /** * List of deprecated mod_assign functions. * * @package mod_assign * @copyright 2021 Jun Pataleta * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ /** * Obtains the automatic completion state for this module based on any conditions * in assign settings. * * @deprecated since Moodle 3.11 * @todo MDL-71196 Final deprecation in Moodle 4.3 * @see \mod_assign\completion\custom_completion * @param object $course Course * @param object $cm Course-module * @param int $userid User ID * @param bool $type Type of comparison (or/and; can be used as return value if no conditions) * @return bool True if completed, false if not, $type if conditions not set. */ function assign_get_completion_state($course, $cm, $userid, $type) { global $CFG; // No need to call debugging here. Deprecation debugging notice already being called in \completion_info::internal_get_state(). require_once($CFG->dirroot . '/mod/assign/locallib.php'); $assign = new assign(null, $cm, $course); // If completion option is enabled, evaluate it and return true/false. if ($assign->get_instance()->completionsubmit) { if ($assign->get_instance()->teamsubmission) { $submission = $assign->get_group_submission($userid, 0, false); } else { $submission = $assign->get_user_submission($userid, false); } return $submission && $submission->status == ASSIGN_SUBMISSION_STATUS_SUBMITTED; } else { // Completion option is not enabled so just return $type. return $type; } }
Upload File
Create Folder