3 declare(strict_types=1);
35 $where_part =
'WHERE obj_fi = ' . $this->db->quote($obj_fi,
'integer');
41 $where_part =
'WHERE test_id = ' . $this->db->quote($test_id,
'integer');
47 $query =
'SELECT ' . PHP_EOL
48 .
'test_id,' . PHP_EOL
49 .
'count_system, score_cutting, pass_scoring,' . PHP_EOL
50 .
'score_reporting, reporting_date,' . PHP_EOL
51 .
'show_grading_status, show_grading_mark, pass_deletion_allowed,' . PHP_EOL
52 .
'print_bs_with_res,' . PHP_EOL
53 .
'examid_in_test_res,' . PHP_EOL
54 .
'results_presentation,' . PHP_EOL
55 .
'exportsettings,' . PHP_EOL
56 .
'highscore_enabled, highscore_anon, highscore_achieved_ts, highscore_score, highscore_percentage, highscore_hints, highscore_wtime, highscore_own_table, highscore_top_table, highscore_top_num,' . PHP_EOL
57 .
'result_tax_filters' . PHP_EOL
58 .
'FROM ' . self::TABLE_NAME . PHP_EOL
63 if ($this->db->numRows(
$res) == 0) {
64 throw new \Exception(
'no score settings: ' . $where_part);
67 $row = $this->db->fetchAssoc(
$res);
69 $reporting_date = $row[
'reporting_date'];
70 if ($reporting_date) {
71 $reporting_date = \DateTimeImmutable::createFromFormat(
72 self::STORAGE_DATE_FORMAT,
77 $reporting_date = null;
80 $test_id = (
int) $row[
'test_id'];
81 $tax_filter_ids = unserialize((
string) ($row[
'result_tax_filters']));
82 if ($tax_filter_ids ===
false) {
89 ->withCountSystem((
int) $row[
'count_system'])
90 ->withScoreCutting((
int) $row[
'score_cutting'])
91 ->withPassScoring((
int) $row[
'pass_scoring']),
93 ->withScoreReporting((
int) $row[
'score_reporting'])
94 ->withReportingDate($reporting_date)
95 ->withShowGradingStatusEnabled((
bool) $row[
'show_grading_status'])
96 ->withShowGradingMarkEnabled((
bool) $row[
'show_grading_mark'])
97 ->withPassDeletionAllowed((
bool) $row[
'pass_deletion_allowed']),
100 ->withResultsPresentation((
int)$row[
'results_presentation'])
101 ->withPrintBestSolutionWithResult((
bool) $row[
'print_bs_with_res'])
102 ->withShowExamIdInTestResults((
bool) $row[
'examid_in_test_res'])
103 ->withExportSettings((
int) $row[
'exportsettings'])
104 ->withTaxonomyFilterIds($tax_filter_ids),
106 ->withHighscoreEnabled((
bool) $row[
'highscore_enabled'])
107 ->withHighscoreAnon((
bool) $row[
'highscore_anon'])
108 ->withHighscoreAchievedTS((
bool) $row[
'highscore_achieved_ts'])
109 ->withHighscoreScore((
bool) $row[
'highscore_score'])
110 ->withHighscorePercentage((
bool) $row[
'highscore_percentage'])
111 ->withHighscoreHints((
bool) $row[
'highscore_hints'])
112 ->withHighscoreWTime((
bool) $row[
'highscore_wtime'])
113 ->withHighscoreOwnTable((
bool) $row[
'highscore_own_table'])
114 ->withHighscoreTopTable((
bool) $row[
'highscore_top_table'])
115 ->withHighscoreTopNum((
int) $row[
'highscore_top_num'])
123 $values = array_merge(
135 [
'test_id' => [
'integer', $settings->
getTestId()]]
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
doSelect(string $where_part)
store(ilObjTestScoreSettings $settings)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const STORAGE_DATE_FORMAT
getGamificationSettings()
getResultDetailsSettings()
getResultSummarySettings()
__construct(ilDBInterface $db)