19 declare(strict_types=1);
59 public function setId(
int $id): void
126 $this->original_taxonomy_filter = $filter;
132 return empty($this->original_taxonomy_filter) ?
null : serialize($this->original_taxonomy_filter);
138 $this->original_taxonomy_filter = empty($value) ? [] : unserialize($value);
156 $this->mapped_taxonomy_filter = $filter;
161 return empty($this->mapped_taxonomy_filter) ?
null : serialize($this->mapped_taxonomy_filter);
166 $this->mapped_taxonomy_filter = empty($value) ? [] : unserialize($value);
171 $this->mapped_taxonomy_filter = [];
172 foreach ($this->original_taxonomy_filter as $tax_id => $node_ids) {
173 $mapped_node_ids = [];
176 if ($mapped_taxonomy_id ===
null) {
180 foreach ($node_ids as $node_id) {
182 if ($mapped_node_id !==
null) {
183 $mapped_node_ids[] = $mapped_node_id;
186 $this->mapped_taxonomy_filter[] = $mapped_node_ids;
205 return empty($this->type_filter) ?
null : serialize($this->type_filter);
213 $this->type_filter = empty($value) ? [] : unserialize($value);
228 return empty($this->lifecycle_filter) ?
null : serialize($this->lifecycle_filter);
233 $this->lifecycle_filter = empty($db_value) ? [] : unserialize($db_value);
244 $map[$row[
'question_type_id']] = $row[
'type_tag'];
248 foreach ($this->type_filter as $type_id) {
249 if (isset($map[$type_id])) {
250 $tags[] = $map[$type_id];
265 $map[$row[
'type_tag']] = $row[
'question_type_id'];
268 $this->type_filter = [];
269 foreach ($tags as $type_tag) {
270 if (isset($map[$type_tag])) {
271 $this->type_filter[] = $map[$type_tag];
300 foreach ($data_array as $field => $value) {
303 $this->
setId($value);
317 case 'pool_quest_count':
320 case 'origin_tax_filter':
323 case 'mapped_tax_filter':
329 case 'lifecycle_filter':
345 $res = $this->db->queryF(
346 "SELECT * FROM tst_rnd_quest_set_qpls WHERE def_id = %s",
351 while ($row = $this->db->fetchAssoc(
$res)) {
362 if ($this->
getId()) {
377 $this->db->manipulateF(
378 "DELETE FROM tst_rnd_quest_set_qpls WHERE def_id = %s",
387 'tst_rnd_quest_set_qpls',
389 'test_fi' => [
'integer', $test_id],
390 'pool_fi' => [
'integer', $this->
getPoolId()],
403 'def_id' => [
'integer', $this->
getId()]
410 $next_id = $this->db->nextId(
'tst_rnd_quest_set_qpls');
412 $this->db->insert(
'tst_rnd_quest_set_qpls', [
413 'def_id' => [
'integer', $next_id],
414 'test_fi' => [
'integer', $test_id],
415 'pool_fi' => [
'integer', $this->
getPoolId()],
428 $this->
setId($next_id);
438 $path->enableTextOnly(
true);
442 $poolInfoLabel = sprintf(
443 $lng->
txt(
'tst_random_question_set_source_questionpool_summary_string'),
449 return $poolInfoLabel;
mapTaxonomyFilter(ilQuestionPoolDuplicatedTaxonomiesKeysMap $taxonomies_keys_map)
updateDbRecord(int $test_id)
setLifecycleFilterFromDbValue(?string $db_value)
setOriginalTaxonomyFilter(array $filter=[])
getPoolInfoLabel(ilLanguage $lng)
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
setPoolTitle(string $pool_title)
setPoolQuestionCount(?int $pool_question_count)
setOriginalTaxonomyFilterFromDbValue(?string $value)
setQuestionAmount(?int $question_amount)
getTypeFilterAsTypeTags()
Get the type filter as a list of type tags.
setTypeFilterFromDbValue(?string $value)
get the question type filter from database value
static _lookupObjId(int $ref_id)
setMappedTaxonomyFilter(array $filter=[])
set the original taxonomy filter condition
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
__construct(protected ilDBInterface $db, protected ilObjTest $test_obj)
getOriginalTaxonomyFilterForDbValue()
initFromArray(array $data_array)
insertDbRecord(int $test_id)
array $original_taxonomy_filter
setSequencePosition(int $sequence_position)
array $mapped_taxonomy_filter
setPoolPath(?string $pool_path)
setMappedTaxonomyFilterFromDbValue(?string $value)
cloneToDbForTestId(int $test_id)
getMappedTaxonomyId(int $original_taxonomy_id)
setTypeFilter(array $type_filter=[])
setLifecycleFilter(array $lifecycle_filter)
getTypeFilterForDbValue()
get the question type filter for insert into the database
getMappedTaxNodeId(int $original_tax_node_id)
setPoolRefId(?int $pool_ref_id)
getMappedTaxonomyFilterForDbValue()
setTypeFilterFromTypeTags(array $tags)
Set the type filter from a list of type tags.
getMappedTaxonomyFilter()
get the mapped taxonomy filter conditions
getLifecycleFilterForDbValue()
static _getQuestionTypes($all_tags=false, $fixOrder=false, $withDeprecatedTypes=true)
getOriginalTaxonomyFilter()