ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilAdvancedMDRecordXMLWriter.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
25 {
26  protected array $record_ids = [];
27  protected ilSetting $settings;
28 
34  public function __construct(array $a_record_ids)
35  {
36  global $DIC;
37 
39  $this->settings = $DIC->settings();
40  $this->record_ids = $a_record_ids;
41  }
42 
43  public function write(): void
44  {
45  $this->buildHeader();
46  $this->xmlStartTag('AdvancedMetaDataRecords');
47  foreach ($this->record_ids as $record_id) {
48  $record_obj = ilAdvancedMDRecord::_getInstanceByRecordId($record_id);
49  $record_obj->toXML($this);
50  }
51  $this->xmlEndTag('AdvancedMetaDataRecords');
52  }
53 
58  protected function buildHeader(): void
59  {
60  $this->xmlSetGenCmt("Export of ILIAS Advanced meta data records of installation " . $this->settings->get('inst_id') . ".");
61  $this->xmlHeader();
62  }
63 }
__construct(array $a_record_ids)
Constructor public.
xmlSetGenCmt(string $genCmt)
Sets generated comment.
xmlEndTag(string $tag)
Writes an endtag.
static _getInstanceByRecordId(int $a_record_id)
global $DIC
Definition: shib_login.php:22
xmlHeader()
Writes xml header.
__construct(Container $dic, ilPlugin $plugin)
xmlStartTag(string $tag, ?array $attrs=null, bool $empty=false, bool $encode=true, bool $escape=true)
Writes a starttag.