|
ILIAS
release_9 Revision v9.13-25-g2c18ec4c24f
|
A class defining marks for assessment test objects. More...
Collaboration diagram for ASS_Mark:Public Member Functions | |
| __construct (string $short_name="", string $official_name="", float $minimum_level=0, int $passed=0) | |
| __unserialize (array $data) | |
| Stephan Kergomard, 2023-11-08: We need an explicit __unserialize function here because of changes to the corresponding classes with ILIAS 8. More... | |
| getShortName () | |
| getPassed () | |
| getOfficialName () | |
| getMinimumLevel () | |
| setShortName (string $short_name="") | |
| setPassed ($passed=0) | |
| setOfficialName (string $official_name="") | |
| setMinimumLevel ($minimum_level) | |
Data Fields | |
| string | $short_name |
| The short name of the mark, e.g. More... | |
| string | $official_name |
| The official name of the mark, e.g. More... | |
| float | $minimum_level = 0 |
| The minimum percentage level reaching the mark. More... | |
| int | $passed |
| The passed status of the mark. More... | |
A class defining marks for assessment test objects.
Definition at line 31 of file class.assMark.php.
| ASS_Mark::__construct | ( | string | $short_name = "", |
| string | $official_name = "", |
||
| float | $minimum_level = 0, |
||
| int | $passed = 0 |
||
| ) |
Definition at line 53 of file class.assMark.php.
References setMinimumLevel(), setOfficialName(), setPassed(), and setShortName().
Here is the call graph for this function:| ASS_Mark::__unserialize | ( | array | $data | ) |
Stephan Kergomard, 2023-11-08: We need an explicit __unserialize function here because of changes to the corresponding classes with ILIAS 8.
Definition at line 69 of file class.assMark.php.
References ILIAS\Repository\int().
Here is the call graph for this function:| ASS_Mark::getMinimumLevel | ( | ) |
Definition at line 92 of file class.assMark.php.
References $minimum_level.
| ASS_Mark::getOfficialName | ( | ) |
Definition at line 87 of file class.assMark.php.
References $official_name.
| ASS_Mark::getPassed | ( | ) |
| ASS_Mark::getShortName | ( | ) |
Definition at line 77 of file class.assMark.php.
References $short_name.
| ASS_Mark::setMinimumLevel | ( | $minimum_level | ) |
Definition at line 112 of file class.assMark.php.
References $minimum_level.
Referenced by __construct().
Here is the caller graph for this function:| ASS_Mark::setOfficialName | ( | string | $official_name = "" | ) |
Definition at line 107 of file class.assMark.php.
References $official_name.
Referenced by __construct().
Here is the caller graph for this function:| ASS_Mark::setPassed | ( | $passed = 0 | ) |
Definition at line 102 of file class.assMark.php.
References $passed.
Referenced by __construct().
Here is the caller graph for this function:| ASS_Mark::setShortName | ( | string | $short_name = "" | ) |
Definition at line 97 of file class.assMark.php.
References $short_name.
Referenced by __construct().
Here is the caller graph for this function:| float ASS_Mark::$minimum_level = 0 |
The minimum percentage level reaching the mark.
A float value between 0 and 100
Definition at line 46 of file class.assMark.php.
Referenced by getMinimumLevel(), and setMinimumLevel().
| string ASS_Mark::$official_name |
The official name of the mark, e.g.
failed, passed, befriedigend
Definition at line 41 of file class.assMark.php.
Referenced by getOfficialName(), and setOfficialName().
| int ASS_Mark::$passed |
The passed status of the mark.
0 indicates that the mark is failed, 1 indicates that the mark is passed
Definition at line 51 of file class.assMark.php.
Referenced by getPassed(), and setPassed().
| string ASS_Mark::$short_name |
The short name of the mark, e.g.
F or 3 or 1,3
Definition at line 36 of file class.assMark.php.
Referenced by getShortName(), and setShortName().