19 declare(strict_types=1);
54 ?
string $path_to_file =
'',
58 $this->db = $DIC[
'ilDB'];
59 $local_dic = TestDIC::dic();
60 $this->
logger = $local_dic[
'logging.logger'];
61 $this->questionrepository = $local_dic[
'question.general_properties.repository'];
62 $this->tree = $DIC[
'tree'];
63 $this->component_repository = $DIC[
'component.repository'];
99 case 'RandomQuestionSetConfig':
100 $this->in_random_question_set_config =
true;
103 case 'RandomQuestionSetSettings':
104 if ($this->in_random_question_set_config !==
null) {
105 $this->in_random_question_set_settings =
true;
107 $this->attr = $tag_attributes;
111 case 'RandomQuestionStage':
112 if ($this->in_random_question_set_config !==
null) {
113 $this->in_random_question_stage =
true;
117 case 'RandomQuestionStagingPool':
118 if ($this->in_random_question_stage !==
null) {
120 $this->attr = $tag_attributes;
124 case 'RandomQuestionSelectionDefinitions':
125 if ($this->in_random_question_set_config !==
null) {
126 $this->in_random_question_selection_definitions =
true;
130 case 'RandomQuestionSelectionDefinition':
131 if ($this->in_random_question_selection_definitions !==
null) {
134 $this->attr = $tag_attributes;
138 case 'RandomQuestionSourcePoolTitle':
139 case 'RandomQuestionSourcePoolPath':
140 if ($this->source_pool_definition !==
null) {
150 case 'RandomQuestionSetConfig':
151 $this->in_random_question_set_config =
false;
154 case 'RandomQuestionSetSettings':
155 if ($this->in_random_question_set_config) {
161 case 'RandomQuestionStage':
162 if ($this->in_random_question_set_config) {
163 $this->in_random_question_stage =
false;
167 case 'RandomQuestionStagingPool':
168 if ($this->in_random_question_set_config !==
null 169 && $this->in_random_question_stage !==
null) {
176 case 'RandomQuestionSelectionDefinitions':
177 if ($this->in_random_question_set_config) {
178 $this->in_random_question_selection_definitions =
false;
182 case 'RandomQuestionSelectionDefinition':
183 if ($this->in_random_question_set_config !==
null 184 && $this->in_random_question_selection_definitions !==
null) {
186 $this->source_pool_definition->saveToDb();
189 'components/ILIAS/Test',
191 (
string) $this->attr[
'id'],
192 (
string) $this->source_pool_definition->getId()
195 $this->source_pool_definition =
null;
200 case 'RandomQuestionSourcePoolTitle':
201 if ($this->source_pool_definition !==
null) {
202 $this->source_pool_definition->setPoolTitle($this->cdata);
207 case 'RandomQuestionSourcePoolPath':
208 if ($this->source_pool_definition !==
null) {
209 $this->source_pool_definition->setPoolPath($this->cdata);
218 if ($char_data !=
"\n") {
220 $char_data = preg_replace(
"/\t+/",
" ", $char_data);
222 $this->cdata .= $char_data;
233 $this->component_repository,
235 $this->questionrepository
238 if (!$question_set_config->isValidQuestionAmountConfigurationMode($attr[
'amountMode'])) {
240 'invalid random test question set config amount mode given: "' . $attr[
'amountMode'] .
'"' 244 $question_set_config->setQuestionAmountConfigurationMode($attr[
'amountMode']);
245 $question_set_config->setQuestionAmountPerTest((
int) $attr[
'questAmount']);
246 $question_set_config->setPoolsWithHomogeneousScoredQuestionsRequired((
bool) $attr[
'homogeneous']);
247 $question_set_config->setLastQuestionSyncTimestamp((
int) $attr[
'synctimestamp']);
249 $question_set_config->saveToDb();
254 $old_pool_id = $attr[
'poolId'];
255 $new_pool_id = $this->db->nextId(
'object_data');
258 'components/ILIAS/Test',
260 (
string) $old_pool_id,
261 (
string) $new_pool_id
264 $old_question_ids = explode(
',', $cdata);
266 foreach ($old_question_ids as $old_question_id) {
268 'components/ILIAS/Test',
274 $staging_question->setTestId($this->test_obj->getTestId());
275 $staging_question->setPoolId($new_pool_id);
276 $staging_question->setQuestionId($new_question_id);
278 $staging_question->saveQuestionStaging();
284 $source_pool_id = (
int) $attr[
'poolId'];
286 'components/ILIAS/Test',
288 (
string) $source_pool_id
290 $source_pool_definition->
setPoolId($effective_pool_id);
292 $derive_from_obj_id =
true;
294 if (isset($attr[
'ref_id']) && is_numeric($attr[
'ref_id'])) {
295 if ($source_pool_id === $effective_pool_id) {
296 $derive_from_obj_id =
false;
297 $source_pool_definition->
setPoolRefId((
int) $attr[
'ref_id']);
301 if ($derive_from_obj_id) {
311 if (isset($attr[
'typeFilter']) && strlen($attr[
'typeFilter']) > 0) {
316 if (isset($attr[
'tax']) && isset($attr[
'taxNode'])) {
318 (
int) $attr[
'tax'] => [
319 (
int) $attr[
'taxNode']
323 } elseif (isset($attr[
'taxFilter']) && strlen($attr[
'taxFilter']) > 0) {
324 $mappedTaxFilter = unserialize($attr[
'taxFilter']);
handlerCharacterData($xml_parser, string $char_data)
Readable part of repository interface to ilComponentDataDB.
handlerBeginTag( $xml_parser, string $tag_name, array $tag_attributes)
setPoolQuestionCount(?int $pool_question_count)
static _getAllReferences(int $id)
get all reference ids for object ID
readonly ilComponentRepository $component_repository
setQuestionAmount(?int $question_amount)
ilImportMapping $import_mapping
readonly TestLogger $logger
importRandomQuestionSetSettings($attr)
Base Exception for all Exceptions relating to Modules/Test.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setMappedTaxonomyFilter(array $filter=[])
set the original taxonomy filter condition
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
bool $in_random_question_selection_definitions
readonly ilDBInterface $db
bool $in_random_question_set_settings
importRandomQuestionStagingPool(array $attr, string $cdata)
setSequencePosition(int $sequence_position)
__construct(?string $path_to_file='', ?bool $throw_exception=false)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
bool $in_random_question_stage
handlerEndTag($xml_parser, string $tag_name)
__construct(Container $dic, ilPlugin $plugin)
bool $in_random_question_set_config
setPoolRefId(?int $pool_ref_id)
readonly GeneralQuestionPropertiesRepository $questionrepository
ilTestRandomQuestionSetSourcePoolDefinition $source_pool_definition
setTypeFilterFromTypeTags(array $tags)
Set the type filter from a list of type tags.
importRandomQuestionSourcePoolDefinition(ilTestRandomQuestionSetSourcePoolDefinition $source_pool_definition, $attr)
setImportMapping(\ilImportMapping $import_mapping)
setTestOBJ(\ilObjTest $test_obj)