blob: f66789fc04421357e6fb0b8d891d6eb9101bd984 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
<?php
/**
* SemesterOfStudyCondition.php
*
* All conditions concerning the semester of study in Stud.IP can be specified here.
*
* This program 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 2 of
* the License, or (at your option) any later version.
*
* @author Thomas Hackl <thomas.hackl@uni-passau.de>
* @license http://www.gnu.org/licenses/gpl-2.0.html GPL version 2
* @category Stud.IP
*/
namespace UserFilterFields;
class SemesterOfStudyCondition extends \UserFilterField
{
// --- ATTRIBUTES ---
public $valuesDbTable = 'user_studiengang';
public $valuesDbIdField = 'semester';
public $userDataDbTable = 'user_studiengang';
public $userDataDbField = 'semester';
public static $sortOrder = 4;
// --- OPERATIONS ---
/**
* @see UserFilterField::__construct
*/
public function __construct($fieldId='')
{
parent::__construct($fieldId);
$this->validValues = [];
$this->relations = [
'DegreeCondition' => [
'local_field' => 'abschluss_id',
'foreign_field' => 'abschluss_id'
],
'SubjectCondition' => [
'local_field' => 'fach_id',
'foreign_field' => 'fach_id'
]
];
$this->validCompareOperators = [
'>=' => _('mindestens'),
'<=' => _('höchstens'),
'=' => _('ist'),
'!=' => _('ist nicht')
];
if (isset(self::$cached_valid_values[static::class])) {
$this->validValues = self::$cached_valid_values[static::class];
} else {
// Initialize to some value in case there are no semester numbers.
$maxsem = 15;
// Calculate the maximal available semester.
$stmt = \DBManager::get()->query("SELECT MAX(" . $this->valuesDbIdField . ") AS maxsem " .
"FROM `" . $this->valuesDbTable . "`");
if ($current = $stmt->fetch(\PDO::FETCH_ASSOC)) {
if ($current['maxsem']) {
$maxsem = $current['maxsem'];
}
}
for ($i = 1; $i <= $maxsem; $i++) {
$this->validValues[$i] = $i;
}
self::$cached_valid_values[static::class] = $this->validValues;
}
}
/**
* Get this field's display name.
*
* @return String
*/
public function getName()
{
return _('Fachsemester');
}
}
|