Commit | Line | Data |
---|---|---|
2be4d090 | 1 | <?php |
2be4d090 MD |
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. | |
13 | // | |
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/>. | |
16 | ||
17 | ||
18 | /** | |
19 | * Course completion critieria aggregation | |
20 | * | |
836375ec SH |
21 | * @package core_completion |
22 | * @category completion | |
2be4d090 | 23 | * @copyright 2009 Catalyst IT Ltd |
836375ec SH |
24 | * @author Aaron Barnes <aaronb@catalyst.net.nz> |
25 | * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | |
2be4d090 | 26 | */ |
836375ec SH |
27 | |
28 | defined('MOODLE_INTERNAL') || die(); | |
75342343 | 29 | require_once($CFG->dirroot.'/completion/data_object.php'); |
2be4d090 MD |
30 | |
31 | /** | |
32 | * Course completion critieria aggregation | |
836375ec SH |
33 | * |
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 | |
2be4d090 MD |
39 | */ |
40 | class completion_aggregation extends data_object { | |
41 | ||
95dd54ee | 42 | /* @var string Database table name that stores completion aggregation information */ |
2be4d090 MD |
43 | public $table = 'course_completion_aggr_methd'; |
44 | ||
45 | /** | |
46 | * Array of required table fields, must start with 'id'. | |
836375ec SH |
47 | * Defaults to id, course, criteriatype, method, value |
48 | * @var array | |
2be4d090 MD |
49 | */ |
50 | public $required_fields = array('id', 'course', 'criteriatype', 'method', 'value'); | |
51 | ||
dbfcf440 AB |
52 | /* @var array Array of unique fields, used in where clauses */ |
53 | public $unique_fields = array('course', 'criteriatype'); | |
54 | ||
95dd54ee | 55 | /* @var int Course id */ |
2be4d090 MD |
56 | public $course; |
57 | ||
95dd54ee | 58 | /* @var int Criteria type this aggregation method applies to, or NULL for overall course aggregation */ |
2be4d090 MD |
59 | public $criteriatype; |
60 | ||
dbfcf440 | 61 | /* @var int Aggregation method (COMPLETION_AGGREGATION_* constant) */ |
2be4d090 MD |
62 | public $method; |
63 | ||
95dd54ee | 64 | /* @var mixed Method value */ |
2be4d090 MD |
65 | public $value; |
66 | ||
67 | ||
68 | /** | |
69 | * Finds and returns a data_object instance based on params. | |
2be4d090 MD |
70 | * |
71 | * @param array $params associative arrays varname=>value | |
836375ec | 72 | * @return data_object instance of data_object or false if none found. |
2be4d090 MD |
73 | */ |
74 | public static function fetch($params) { | |
75 | return self::fetch_helper('course_completion_aggr_methd', __CLASS__, $params); | |
76 | } | |
77 | ||
78 | ||
79 | /** | |
80 | * Finds and returns all data_object instances based on params. | |
2be4d090 MD |
81 | * |
82 | * @param array $params associative arrays varname=>value | |
83 | * @return array array of data_object insatnces or false if none found. | |
84 | */ | |
85 | public static function fetch_all($params) {} | |
86 | ||
87 | /** | |
88 | * Set the aggregation method | |
836375ec SH |
89 | * |
90 | * @param int $method One of COMPLETION_AGGREGATION_ALL or COMPLETION_AGGREGATION_ANY | |
2be4d090 MD |
91 | */ |
92 | public function setMethod($method) { | |
93 | $methods = array( | |
94 | COMPLETION_AGGREGATION_ALL, | |
95 | COMPLETION_AGGREGATION_ANY, | |
96 | ); | |
97 | ||
98 | if (in_array($method, $methods)) { | |
99 | $this->method = $method; | |
100 | } else { | |
101 | $this->method = COMPLETION_AGGREGATION_ALL; | |
102 | } | |
103 | } | |
dbfcf440 AB |
104 | |
105 | ||
106 | /** | |
107 | * Save aggregation method to database | |
108 | * | |
109 | * @access public | |
110 | * @return boolean | |
111 | */ | |
112 | public function save() { | |
113 | if ($this->id) { | |
114 | return $this->update(); | |
115 | } else { | |
116 | return $this->insert(); | |
117 | } | |
118 | } | |
95dd54ee | 119 | } |