ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.exQuestionPoolExporter.php
Go to the documentation of this file.
1 <?php
2 
20 {
21  public function getValidSchemaVersions(string $a_entity): array
22  {
23  /* export schema versions code */
24  return [];
25  }
26 
27  public function init(): void
28  {
29  /* question pool init code */
30  }
31 
37  public function getXmlRepresentation(string $a_entity, string $a_schema_version, string $a_id): string
38  {
39  /* question pool export code */
40 
46  return '';
47  }
48 
55  public function getXmlExportTailDependencies(string $a_entity, string $a_target_release, array $a_ids): array
56  {
66  if ($a_entity == 'qpl') {
67  $deps = array();
68 
69  $questionIds = array(); // initialise with question ids that need to be exported
70 
71  if (count($questionIds)) {
72  $deps[] = array(
73  'component' => 'components/ILIAS/AssessmentQuestion',
74  'entity' => 'qst',
75  'ids' => $questionIds
76  );
77  }
78 
79  return $deps;
80  }
81 
82  return parent::getXmlExportTailDependencies($a_entity, $a_target_release, $a_ids);
83  }
84 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getXmlExportTailDependencies(string $a_entity, string $a_target_release, array $a_ids)
getXmlRepresentation(string $a_entity, string $a_schema_version, string $a_id)