MDL-78116 core: Run tests against Windows on GHA
[moodle.git] / completion / completion_aggregation.php
blob0c4d457550504de1b6b455948307905e19e6ad74
1 <?php
2 // This file is part of Moodle - http://moodle.org/
3 //
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
8 //
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
18 /**
19 * Course completion critieria aggregation
21 * @package core_completion
22 * @category completion
23 * @copyright 2009 Catalyst IT Ltd
24 * @author Aaron Barnes <aaronb@catalyst.net.nz>
25 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
28 defined('MOODLE_INTERNAL') || die();
29 require_once($CFG->dirroot.'/completion/data_object.php');
31 /**
32 * Course completion critieria aggregation
34 * @package core_completion
35 * @category completion
36 * @copyright 2009 Catalyst IT Ltd
37 * @author Aaron Barnes <aaronb@catalyst.net.nz>
38 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
40 class completion_aggregation extends data_object {
42 /* @var string Database table name that stores completion aggregation information */
43 public $table = 'course_completion_aggr_methd';
45 /**
46 * Array of required table fields, must start with 'id'.
47 * Defaults to id, course, criteriatype, method, value
48 * @var array
50 public $required_fields = array('id', 'course', 'criteriatype', 'method', 'value');
52 /* @var array Array of unique fields, used in where clauses */
53 public $unique_fields = array('course', 'criteriatype');
55 /* @var int Course id */
56 public $course;
58 /* @var int Criteria type this aggregation method applies to, or NULL for overall course aggregation */
59 public $criteriatype;
61 /* @var int Aggregation method (COMPLETION_AGGREGATION_* constant) */
62 public $method;
64 /* @var mixed Method value */
65 public $value;
68 /**
69 * Finds and returns a data_object instance based on params.
71 * @param array $params associative arrays varname=>value
72 * @return data_object instance of data_object or false if none found.
74 public static function fetch($params) {
75 return self::fetch_helper('course_completion_aggr_methd', __CLASS__, $params);
79 /**
80 * Finds and returns all data_object instances based on params.
82 * @param array $params associative arrays varname=>value
83 * @return array array of data_object insatnces or false if none found.
85 public static function fetch_all($params) {}
87 /**
88 * Set the aggregation method
90 * @param int $method One of COMPLETION_AGGREGATION_ALL or COMPLETION_AGGREGATION_ANY
92 public function setMethod($method) {
93 $methods = array(
94 COMPLETION_AGGREGATION_ALL,
95 COMPLETION_AGGREGATION_ANY,
98 if (in_array($method, $methods)) {
99 $this->method = $method;
100 } else {
101 $this->method = COMPLETION_AGGREGATION_ALL;
107 * Save aggregation method to database
109 * @access public
110 * @return boolean
112 public function save() {
113 if ($this->id) {
114 return $this->update();
115 } else {
116 return $this->insert();