2023-05-17 21:19:14 +02:00
|
|
|
<?php
|
2023-08-24 23:02:41 +02:00
|
|
|
// This file is part of the Studyplan plugin for Moodle
|
|
|
|
//
|
|
|
|
// 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 <https://www.gnu.org/licenses/>.
|
|
|
|
/**
|
2023-08-27 15:12:54 +02:00
|
|
|
* Aggregate course results based on failed/completed states for grades
|
2023-08-24 23:02:41 +02:00
|
|
|
* @package local_treestudyplan
|
|
|
|
* @copyright 2023 P.M. Kuipers
|
|
|
|
* @license https://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
|
*/
|
|
|
|
|
2023-05-17 21:19:14 +02:00
|
|
|
namespace local_treestudyplan\local\aggregators;
|
|
|
|
|
2024-06-02 18:47:23 +02:00
|
|
|
use local_treestudyplan\courseinfo;
|
|
|
|
use local_treestudyplan\gradeinfo;
|
|
|
|
use local_treestudyplan\studyitem;
|
|
|
|
use local_treestudyplan\completion;
|
2023-05-17 21:19:14 +02:00
|
|
|
|
2023-08-27 15:12:54 +02:00
|
|
|
/**
|
|
|
|
* Aggregate course results based on failed/completed states for grades
|
|
|
|
*/
|
2023-05-17 21:19:14 +02:00
|
|
|
class bistate_aggregator extends \local_treestudyplan\aggregator {
|
2023-08-27 15:12:54 +02:00
|
|
|
/** @var bool */
|
2023-05-17 21:19:14 +02:00
|
|
|
public const DEPRECATED = false;
|
2023-08-27 15:12:54 +02:00
|
|
|
/** @var stdClass */
|
2023-08-25 17:33:20 +02:00
|
|
|
private $agcfg = null;
|
|
|
|
|
2023-08-27 15:12:54 +02:00
|
|
|
/**
|
|
|
|
* Retrieve or initialize current config object
|
|
|
|
* @return stdClass
|
|
|
|
*/
|
2023-08-25 17:33:20 +02:00
|
|
|
private function cfg() {
|
|
|
|
if (empty($this->agcfg)) {
|
|
|
|
$this->agcfg = (object)[
|
|
|
|
'thresh_excellent' => 1.0, // Minimum fraction that must be completed to aggregate as excellent (usually 1.0).
|
|
|
|
'thresh_good' => 0.8, // Minimum fraction that must be completed to aggregate as good.
|
|
|
|
'thresh_completed' => 0.66, // Minimum fraction that must be completed to aggregate as completed.
|
|
|
|
'use_failed' => true, // Support failed completion yes/no.
|
|
|
|
'thresh_progress' => 0.33, // Deprecated!
|
|
|
|
'accept_pending_as_submitted' => false, // Also count ungraded but submitted .
|
|
|
|
];
|
|
|
|
}
|
|
|
|
return $this->agcfg;
|
|
|
|
}
|
2023-05-17 21:19:14 +02:00
|
|
|
|
2023-08-27 15:12:54 +02:00
|
|
|
/**
|
|
|
|
* Create new instance of aggregation method
|
|
|
|
* @param string $configstr Aggregation configuration string
|
|
|
|
*/
|
2023-05-17 21:19:14 +02:00
|
|
|
public function __construct($configstr) {
|
2023-08-25 09:44:34 +02:00
|
|
|
// Allow public constructor for testing purposes.
|
2023-05-17 21:19:14 +02:00
|
|
|
$this->initialize($configstr);
|
|
|
|
}
|
|
|
|
|
2023-08-27 15:12:54 +02:00
|
|
|
/**
|
|
|
|
* Initialize the aggregation method
|
|
|
|
* @param string $configstr Aggregation configuration string
|
|
|
|
*/
|
2023-05-17 21:19:14 +02:00
|
|
|
protected function initialize($configstr) {
|
2023-08-24 23:02:41 +02:00
|
|
|
// First initialize with the defaults.
|
2024-06-02 19:23:40 +02:00
|
|
|
foreach (["thresh_excellent", "thresh_good", "thresh_completed", "thresh_progress" ] as $key) {
|
2023-05-17 21:19:14 +02:00
|
|
|
$val = intval(get_config('local_treestudyplan', "bistate_{$key}"));
|
2023-08-24 23:02:41 +02:00
|
|
|
if ($val >= 0 && $val <= 100) {
|
2023-08-25 17:33:20 +02:00
|
|
|
$this->cfg()->$key = floatval($val) / 100;
|
2023-05-17 21:19:14 +02:00
|
|
|
}
|
|
|
|
}
|
2023-08-24 23:02:41 +02:00
|
|
|
foreach (["use_failed", "accept_pending_as_submitted"] as $key) {
|
2023-08-25 17:33:20 +02:00
|
|
|
$this->cfg()->$key = boolval(get_config('local_treestudyplan', "bistate_{$key}"));
|
2023-05-17 21:19:14 +02:00
|
|
|
}
|
|
|
|
|
2023-08-24 23:02:41 +02:00
|
|
|
// Next, decode json.
|
|
|
|
$config = \json_decode($configstr, true);
|
2023-05-17 21:19:14 +02:00
|
|
|
|
2023-08-24 23:02:41 +02:00
|
|
|
if (is_array($config)) {
|
2023-08-25 09:44:34 +02:00
|
|
|
// Copy all valid config settings to this item.
|
2024-06-02 19:23:40 +02:00
|
|
|
foreach (["thresh_excellent", "thresh_good", "thresh_completed", "thresh_progress" ] as $key) {
|
2023-08-24 23:02:41 +02:00
|
|
|
if (array_key_exists($key, $config)) {
|
2023-05-17 21:19:14 +02:00
|
|
|
$val = $config[$key];
|
2023-08-24 23:02:41 +02:00
|
|
|
if ($val >= 0 && $val <= 100) {
|
2023-08-25 17:33:20 +02:00
|
|
|
$this->cfg()->$key = floatval($val) / 100;
|
2023-05-17 21:19:14 +02:00
|
|
|
}
|
2023-08-24 23:02:41 +02:00
|
|
|
}
|
2023-05-17 21:19:14 +02:00
|
|
|
}
|
2023-08-24 23:02:41 +02:00
|
|
|
foreach (["use_failed", "accept_pending_as_submitted"] as $key) {
|
|
|
|
if (array_key_exists($key, $config)) {
|
2023-08-25 17:33:20 +02:00
|
|
|
$this->cfg()->$key = boolval($config[$key]);
|
2023-05-17 21:19:14 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-27 15:12:54 +02:00
|
|
|
/**
|
|
|
|
* Return the current configuration string.
|
|
|
|
* @return string Configuration string
|
2023-08-27 22:20:17 +02:00
|
|
|
*/
|
2023-05-17 21:19:14 +02:00
|
|
|
public function config_string() {
|
|
|
|
return json_encode([
|
2023-08-25 17:33:20 +02:00
|
|
|
"thresh_excellent" => 100 * $this->cfg()->thresh_excellent,
|
|
|
|
"thresh_good" => 100 * $this->cfg()->thresh_good,
|
|
|
|
"thresh_completed" => 100 * $this->cfg()->thresh_completed,
|
|
|
|
"thresh_progress" => 100 * $this->cfg()->thresh_progress,
|
|
|
|
"use_failed" => $this->cfg()->use_failed,
|
|
|
|
"accept_pending_as_submitted" => $this->cfg()->accept_pending_as_submitted,
|
2023-05-17 21:19:14 +02:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2023-08-27 15:12:54 +02:00
|
|
|
/**
|
|
|
|
* Determine if aggregation method wants to select gradables
|
|
|
|
* @return bool True if aggregation method needs gradables to be selected
|
|
|
|
*/
|
2023-08-25 13:34:31 +02:00
|
|
|
public function select_gradables() {
|
2023-08-25 12:16:51 +02:00
|
|
|
return true;
|
|
|
|
}
|
2023-08-27 15:12:54 +02:00
|
|
|
/**
|
|
|
|
* Determine if aggregation method is deprecated
|
|
|
|
* @return bool True if aggregation method is deprecated
|
|
|
|
*/
|
2023-08-25 13:34:31 +02:00
|
|
|
public function deprecated() {
|
2023-08-25 12:16:51 +02:00
|
|
|
return self::DEPRECATED;
|
|
|
|
}
|
2023-08-27 15:12:54 +02:00
|
|
|
|
|
|
|
/**
|
2023-11-23 07:44:04 +01:00
|
|
|
* Determine if the aggregation method uses manual activity selection,
|
|
|
|
* @return bool True if the aggregation method uses manual activity selection
|
2023-08-27 15:12:54 +02:00
|
|
|
*/
|
2023-11-23 07:44:04 +01:00
|
|
|
public function use_manualactivityselection() {
|
2023-08-25 12:16:51 +02:00
|
|
|
return true;
|
|
|
|
}
|
2023-08-27 15:12:54 +02:00
|
|
|
|
2023-11-27 23:11:17 +01:00
|
|
|
/**
|
|
|
|
* Determine if Aggregation method makes use of "required grades" in a course/module.
|
|
|
|
* @return bool True if Aggregation method makes use of "required grades" in a course/module.
|
|
|
|
*/
|
2024-06-02 19:23:40 +02:00
|
|
|
public function use_required_grades() {
|
2023-11-27 23:11:17 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2023-08-27 15:12:54 +02:00
|
|
|
/**
|
|
|
|
* Aggregate completed/failed goals into one outcome
|
|
|
|
* @param int[] $completions List of completions (completion class constants)
|
|
|
|
* @param array $required List of completions indexes that are marked as required
|
|
|
|
* @return int Aggregated completion as completion class constant
|
|
|
|
*/
|
2023-08-24 23:02:41 +02:00
|
|
|
public function aggregate_binary_goals(array $completions, array $required = []) {
|
2023-08-25 09:44:34 +02:00
|
|
|
// Function is public to allow access for the testing code.
|
2023-05-17 21:19:14 +02:00
|
|
|
|
2023-08-25 09:44:34 +02:00
|
|
|
// Return te following conditions.
|
2023-08-24 23:02:41 +02:00
|
|
|
// Possible states:.
|
2023-08-25 09:33:42 +02:00
|
|
|
// - completion::EXCELLENT - At least $threshexcellent fraction of goals are complete and all required goals are met.
|
|
|
|
// - completion::GOOD - At least $threshgood fraction of goals are complete and all required goals are met.
|
|
|
|
// - completion::COMPLETED - At least $threshcomplete fraction of goals are completed and all required goals are met.
|
|
|
|
// - completion::FAILED - At least $threshprogress fraction of goals is not failed.
|
2023-08-24 23:02:41 +02:00
|
|
|
// - completion::INCOMPLETE - No goals have been started.
|
|
|
|
// - completion::PROGRESS - All other states.
|
2023-05-17 21:19:14 +02:00
|
|
|
|
|
|
|
$total = count($completions);
|
|
|
|
$completed = 0;
|
|
|
|
$progress = 0;
|
|
|
|
$failed = 0;
|
|
|
|
$started = 0;
|
|
|
|
|
2023-08-25 09:33:42 +02:00
|
|
|
$totalrequired = 0;
|
|
|
|
$requiredmet = 0;
|
2023-05-17 21:19:14 +02:00
|
|
|
|
2024-06-02 23:23:32 +02:00
|
|
|
$minprogress = ($this->cfg()->accept_pending_as_submitted) ? completion::PENDING : completion::PROGRESS;
|
2023-05-17 21:19:14 +02:00
|
|
|
|
2023-08-24 23:02:41 +02:00
|
|
|
foreach ($completions as $index => $c) {
|
2023-05-17 21:19:14 +02:00
|
|
|
|
2023-08-25 12:16:51 +02:00
|
|
|
$completed += ($c >= completion::COMPLETED) ? 1 : 0;
|
2023-08-25 17:33:20 +02:00
|
|
|
$progress += ($c >= $minprogress) ? 1 : 0;
|
2023-08-25 12:16:51 +02:00
|
|
|
$failed += ($c <= completion::FAILED) ? 1 : 0;
|
2023-11-12 23:49:50 +01:00
|
|
|
|
2024-06-02 19:23:40 +02:00
|
|
|
if (in_array($index, $required)) {
|
2023-11-12 23:49:50 +01:00
|
|
|
// Not using count($required) to prevent nonexistant indices in the required list from messing things up.
|
|
|
|
$totalrequired += 1;
|
|
|
|
if ($c >= completion::COMPLETED) {
|
|
|
|
$requiredmet += 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-17 21:19:14 +02:00
|
|
|
}
|
|
|
|
$started = $progress + $failed;
|
2023-08-25 09:33:42 +02:00
|
|
|
$allrequiredmet = ($requiredmet >= $totalrequired);
|
2023-05-17 21:19:14 +02:00
|
|
|
|
2024-06-02 23:23:32 +02:00
|
|
|
$fractioncompleted = ($total > 0) ? (floatval($completed) / floatval($total)) : 0.0;
|
|
|
|
$fractionprogress = ($total > 0) ? (floatval($progress) / floatval($total)) : 0.0;
|
|
|
|
$fractionfailed = ($total > 0) ? (floatval($failed) / floatval($total)) : 0.0;
|
|
|
|
$fractionstarted = ($total > 0) ? (floatval($started) / floatval($total)) : 0.0;
|
2023-05-17 21:19:14 +02:00
|
|
|
|
2023-08-24 23:02:41 +02:00
|
|
|
if ($total == 0) {
|
2023-05-17 21:19:14 +02:00
|
|
|
return completion::INCOMPLETE;
|
|
|
|
}
|
2023-11-12 23:49:50 +01:00
|
|
|
if ($fractioncompleted >= $this->cfg()->thresh_excellent && $allrequiredmet) {
|
2023-05-17 21:19:14 +02:00
|
|
|
return completion::EXCELLENT;
|
2023-11-12 23:49:50 +01:00
|
|
|
} else if ($fractioncompleted >= $this->cfg()->thresh_good && $allrequiredmet) {
|
2023-05-17 21:19:14 +02:00
|
|
|
return completion::GOOD;
|
2023-11-12 23:49:50 +01:00
|
|
|
} else if ($fractioncompleted >= $this->cfg()->thresh_completed && $allrequiredmet) {
|
2023-05-17 21:19:14 +02:00
|
|
|
return completion::COMPLETED;
|
2023-08-24 23:09:20 +02:00
|
|
|
} else if ($started == 0) {
|
2023-05-17 21:19:14 +02:00
|
|
|
return completion::INCOMPLETE;
|
2023-08-24 23:09:20 +02:00
|
|
|
} else {
|
2023-05-17 21:19:14 +02:00
|
|
|
return completion::PROGRESS;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-27 15:12:54 +02:00
|
|
|
/**
|
|
|
|
* Aggregate all completions in a course into one final course completion
|
|
|
|
* Possible states:
|
|
|
|
* completion::EXCELLENT - Completed with excellent results
|
|
|
|
* completion::GOOD - Completed with good results
|
|
|
|
* completion::COMPLETED - Completed
|
|
|
|
* completion::PROGRESS - Started, but not completed yey
|
|
|
|
* completion::FAILED - Failed
|
|
|
|
* completion::INCOMPLETE - Not yet started
|
|
|
|
* @param courseinfo $courseinfo Courseinfo object for the course to check
|
|
|
|
* @param studyitem $studyitem Studyitem object for the course to check
|
|
|
|
* @param int $userid Id of user to check this course for
|
|
|
|
* @return int Aggregated completion as completion class constant
|
|
|
|
*/
|
2023-08-24 23:02:41 +02:00
|
|
|
public function aggregate_course(courseinfo $courseinfo, studyitem $studyitem, $userid) {
|
2023-08-08 23:29:01 +02:00
|
|
|
$course = $courseinfo->course();
|
2024-06-02 23:23:32 +02:00
|
|
|
$coursefinished = ($course->enddate) ? ($course->enddate < time()) : false;
|
2023-05-17 21:19:14 +02:00
|
|
|
// Note: studyitem condition config is not used in this aggregator.
|
2023-08-25 09:44:34 +02:00
|
|
|
// Loop through all associated gradables and count the totals, completed, etc..
|
2023-05-17 21:19:14 +02:00
|
|
|
$completions = [];
|
|
|
|
$required = [];
|
2023-08-24 23:02:41 +02:00
|
|
|
foreach (gradeinfo::list_studyitem_gradables($studyitem) as $gi) {
|
|
|
|
$completions[] = $this->grade_completion($gi, $userid);
|
|
|
|
if ($gi->is_required()) {
|
2023-08-25 09:44:34 +02:00
|
|
|
// If it's a required grade .
|
|
|
|
// Also add it's index in the completion list to the list of required grades .
|
2023-05-17 21:19:14 +02:00
|
|
|
$required[] = count($completions) - 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-24 23:02:41 +02:00
|
|
|
// Combine the aquired completions into one.
|
2023-08-25 10:41:56 +02:00
|
|
|
$result = self::aggregate_binary_goals($completions, $required);
|
2023-11-12 23:49:50 +01:00
|
|
|
if ($this->cfg()->use_failed && $result == completion::PROGRESS && $coursefinished) {
|
2023-08-08 23:29:01 +02:00
|
|
|
return completion::FAILED;
|
|
|
|
} else {
|
|
|
|
return $result;
|
|
|
|
}
|
2023-05-17 21:19:14 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2023-08-27 15:12:54 +02:00
|
|
|
/**
|
|
|
|
* Aggregate juncton/filter inputs into one final junction outcome
|
|
|
|
* @param int[] $completion List of completion inputs
|
|
|
|
* @param studyitem $studyitem Studyitem object for the junction
|
|
|
|
* @param int $userid Id of user to check completion for
|
|
|
|
* @return int Aggregated completion as completion class constant
|
|
|
|
*/
|
2023-09-02 22:07:51 +02:00
|
|
|
public function aggregate_junction(array $completion, studyitem $studyitem, $userid = 0) {
|
2023-05-17 21:19:14 +02:00
|
|
|
// Aggregate multiple incoming states into one junction or finish.
|
2023-08-24 23:02:41 +02:00
|
|
|
// Possible states:.
|
|
|
|
// - completion::EXCELLENT - All incoming states are excellent.
|
|
|
|
// - completion::GOOD - All incoming states are at least good.
|
|
|
|
// - completion::COMPLETED - All incoming states are at least completed.
|
|
|
|
// - completion::FAILED - All incoming states are failed.
|
|
|
|
// - completion::INCOMPLETE - All incoming states are incomplete.
|
|
|
|
// - completion::PROGRESS - All other states.
|
|
|
|
|
2023-09-08 12:47:29 +02:00
|
|
|
$method = strtoupper($studyitem->conditions()); // One of ANY or ALL.
|
2023-09-02 22:07:51 +02:00
|
|
|
|
2023-08-24 23:02:41 +02:00
|
|
|
// First count all states.
|
2023-05-17 21:19:14 +02:00
|
|
|
$statecount = completion::count_states($completion);
|
|
|
|
$total = count($completion);
|
|
|
|
|
2023-09-08 12:47:29 +02:00
|
|
|
if ($method == "ANY") {
|
2024-06-02 23:23:32 +02:00
|
|
|
if ($statecount[completion::EXCELLENT] >= 1) {
|
2023-09-02 22:07:51 +02:00
|
|
|
return completion::EXCELLENT;
|
2024-06-02 23:23:32 +02:00
|
|
|
} else if ($statecount[completion::GOOD] >= 1) {
|
2023-09-02 22:07:51 +02:00
|
|
|
return completion::GOOD;
|
2024-06-02 23:23:32 +02:00
|
|
|
} else if ($statecount[completion::COMPLETED] >= 1) {
|
2023-09-02 22:07:51 +02:00
|
|
|
return completion::COMPLETED;
|
2024-06-02 23:23:32 +02:00
|
|
|
} else if ($statecount[completion::PROGRESS] >= 1) {
|
2023-09-02 22:07:51 +02:00
|
|
|
return completion::PROGRESS;
|
2024-06-02 23:23:32 +02:00
|
|
|
} else if ($statecount[completion::FAILED] >= 1) {
|
2023-09-02 22:07:51 +02:00
|
|
|
return completion::FAILED;
|
|
|
|
} else {
|
|
|
|
return completion::INCOMPLETE;
|
|
|
|
}
|
2023-09-08 12:47:29 +02:00
|
|
|
} else { /* default value of ALL */
|
2024-06-02 23:23:32 +02:00
|
|
|
if ($total == $statecount[completion::EXCELLENT]) {
|
2023-09-02 22:07:51 +02:00
|
|
|
return completion::EXCELLENT;
|
2024-06-02 23:23:32 +02:00
|
|
|
} else if ($total == ( $statecount[completion::EXCELLENT]
|
2023-09-02 22:07:51 +02:00
|
|
|
+ $statecount[completion::GOOD]) ) {
|
|
|
|
return completion::GOOD;
|
2024-06-02 23:23:32 +02:00
|
|
|
} else if ($total == ( $statecount[completion::EXCELLENT]
|
2023-09-02 22:07:51 +02:00
|
|
|
+ $statecount[completion::GOOD]
|
|
|
|
+ $statecount[completion::COMPLETED]) ) {
|
|
|
|
return completion::COMPLETED;
|
2024-06-02 23:23:32 +02:00
|
|
|
} else if ($statecount[completion::FAILED]) {
|
2023-09-02 22:07:51 +02:00
|
|
|
return completion::FAILED;
|
2024-06-02 23:23:32 +02:00
|
|
|
} else if ($total == $statecount[completion::INCOMPLETE]) {
|
2023-09-02 22:07:51 +02:00
|
|
|
return completion::INCOMPLETE;
|
|
|
|
} else {
|
|
|
|
return completion::PROGRESS;
|
|
|
|
}
|
2023-05-17 21:19:14 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-27 15:12:54 +02:00
|
|
|
/**
|
|
|
|
* Determine completion for a single grade and user
|
|
|
|
* @param gradeinfo $gradeinfo Gradeinfo object for grade to check
|
|
|
|
* @param mixed $userid Id of user to check completion for
|
|
|
|
* @return int Aggregated completion as completion class constant
|
|
|
|
*/
|
2023-05-17 21:19:14 +02:00
|
|
|
public function grade_completion(gradeinfo $gradeinfo, $userid) {
|
|
|
|
global $DB;
|
|
|
|
$table = "local_treestudyplan_gradecfg";
|
2023-08-25 17:33:20 +02:00
|
|
|
$gradeitem = $gradeinfo->get_gradeitem();
|
2023-05-17 21:19:14 +02:00
|
|
|
$grade = $gradeitem->get_final($userid);
|
2023-08-24 23:02:41 +02:00
|
|
|
$course = \get_course($gradeitem->courseid); // Fetch course from cache.
|
2024-06-02 23:23:32 +02:00
|
|
|
$coursefinished = ($course->enddate) ? ($course->enddate < time()) : false;
|
2023-05-17 21:19:14 +02:00
|
|
|
|
2023-08-24 23:02:41 +02:00
|
|
|
if (empty($grade)) {
|
2023-05-17 21:19:14 +02:00
|
|
|
return completion::INCOMPLETE;
|
2023-08-25 12:16:51 +02:00
|
|
|
} else if ($grade->finalgrade === null) {
|
2024-06-02 19:23:40 +02:00
|
|
|
// On assignments, grade NULL means a submission has not yet been graded, .
|
2023-08-25 09:44:34 +02:00
|
|
|
// But on quizes this can also mean a quiz might have been started.
|
2023-08-24 23:02:41 +02:00
|
|
|
// Therefor, we treat a NULL result as a reason to check the relevant gradingscanner for presence of pending items.
|
2023-05-17 21:19:14 +02:00
|
|
|
|
|
|
|
// Since we want old results to be visible until a pending item was graded, we only use this state here.
|
2023-08-24 23:02:41 +02:00
|
|
|
// Pending items are otherwise expressly indicated by the "pendingsubmission" field in the user model.
|
2023-08-25 17:33:20 +02:00
|
|
|
if ($gradeinfo->get_gradingscanner()->pending($userid)) {
|
2023-05-17 21:19:14 +02:00
|
|
|
return completion::PENDING;
|
|
|
|
} else {
|
|
|
|
return completion::INCOMPLETE;
|
|
|
|
}
|
2023-08-24 23:09:20 +02:00
|
|
|
} else {
|
2023-06-16 23:12:17 +02:00
|
|
|
$grade = $gradeitem->get_final($userid);
|
2023-08-25 09:44:34 +02:00
|
|
|
// First determine if we have a grade_config for this scale or this maximum grade.
|
2023-05-17 21:19:14 +02:00
|
|
|
$finalgrade = $grade->finalgrade;
|
2023-08-25 17:33:20 +02:00
|
|
|
$scale = $gradeinfo->get_scale();
|
2024-06-02 23:23:32 +02:00
|
|
|
if (isset($scale)) {
|
2023-08-25 10:41:56 +02:00
|
|
|
$gradecfg = $DB->get_record($table, ["scale_id" => $scale->id]);
|
2023-08-24 23:09:20 +02:00
|
|
|
} else if ($gradeitem->grademin == 0) {
|
2023-08-25 10:41:56 +02:00
|
|
|
$gradecfg = $DB->get_record($table, ["grade_points" => $gradeitem->grademax]);
|
2023-08-25 09:33:42 +02:00
|
|
|
} else {
|
2023-05-17 21:19:14 +02:00
|
|
|
$gradecfg = null;
|
|
|
|
}
|
|
|
|
|
2023-08-25 09:44:34 +02:00
|
|
|
// For point grades, a provided grade pass overrides the defaults in the gradeconfig.
|
|
|
|
// For scales, the configuration in the gradeconfig is leading.
|
2023-06-16 23:12:17 +02:00
|
|
|
|
2023-08-24 23:02:41 +02:00
|
|
|
if ($gradecfg && (isset($scale) || $gradeitem->gradepass == 0)) {
|
2023-08-25 09:44:34 +02:00
|
|
|
// If so, we need to know if the grade is .
|
2023-08-24 23:02:41 +02:00
|
|
|
if ($finalgrade >= $gradecfg->min_completed) {
|
2023-08-25 09:44:34 +02:00
|
|
|
// Return completed if completed.
|
2023-05-17 21:19:14 +02:00
|
|
|
return completion::COMPLETED;
|
2024-05-31 20:41:18 +02:00
|
|
|
} else if ($this->cfg()->use_failed && $coursefinished) {
|
2023-08-25 09:44:34 +02:00
|
|
|
// Return failed if failed is enabled and the grade is less than the minimum grade for progress.
|
2023-05-17 21:19:14 +02:00
|
|
|
return completion::FAILED;
|
2023-08-24 23:09:20 +02:00
|
|
|
} else {
|
2023-05-17 21:19:14 +02:00
|
|
|
return completion::PROGRESS;
|
|
|
|
}
|
2023-08-24 23:09:20 +02:00
|
|
|
} else if ($gradeitem->gradepass > 0) {
|
2023-05-17 21:19:14 +02:00
|
|
|
$range = floatval($gradeitem->grademax - $gradeitem->grademin);
|
2023-08-25 09:44:34 +02:00
|
|
|
// If no gradeconfig and gradepass is set, use that one to determine config.
|
2023-08-24 23:02:41 +02:00
|
|
|
if ($finalgrade >= $gradeitem->gradepass) {
|
2023-05-17 21:19:14 +02:00
|
|
|
return completion::COMPLETED;
|
2024-05-31 20:41:18 +02:00
|
|
|
} else if ($this->cfg()->use_failed && $coursefinished) {
|
2023-08-25 09:44:34 +02:00
|
|
|
// Return failed if failed is enabled and the grade is 1, while there are at leas 3 states.
|
2023-05-17 21:19:14 +02:00
|
|
|
return completion::FAILED;
|
2023-08-24 23:09:20 +02:00
|
|
|
} else {
|
2023-05-17 21:19:14 +02:00
|
|
|
return completion::PROGRESS;
|
|
|
|
}
|
2023-08-24 23:09:20 +02:00
|
|
|
} else {
|
2023-08-24 23:02:41 +02:00
|
|
|
// Blind assumptions if nothing is provided.
|
2023-08-25 09:44:34 +02:00
|
|
|
// Over 55% of range is completed.
|
|
|
|
// If range >= 3 and failed is enabled, assume that this means failed.
|
2023-05-17 21:19:14 +02:00
|
|
|
$g = floatval($finalgrade - $gradeitem->grademin);
|
|
|
|
$range = floatval($gradeitem->grademax - $gradeitem->grademin);
|
|
|
|
$score = $g / $range;
|
|
|
|
|
2023-08-24 23:02:41 +02:00
|
|
|
if ($score > 0.55) {
|
2023-05-17 21:19:14 +02:00
|
|
|
return completion::COMPLETED;
|
2023-08-24 23:09:20 +02:00
|
|
|
} else if ($this->use_failed && $coursefinished) {
|
2023-08-25 09:44:34 +02:00
|
|
|
// Return failed if failed is enabled and the grade is 1, while there are at leas 3 states.
|
2023-05-17 21:19:14 +02:00
|
|
|
return completion::FAILED;
|
2023-08-24 23:09:20 +02:00
|
|
|
} else {
|
2023-05-17 21:19:14 +02:00
|
|
|
return completion::PROGRESS;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-08-25 11:52:05 +02:00
|
|
|
}
|