ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
class.ilUserExportConfig.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
23class ilUserExportConfig extends ExportConfig
24{
25 protected string $export_type;
26
27 public function __construct()
28 {
29 $this->export_type = '';
30 }
31
32 public function setExportType(string $export_type)
33 {
34 $this->export_type = $export_type;
35 }
36
37 public function getExportType(): string
38 {
39 return $this->export_type;
40 }
41}
setExportType(string $export_type)