ILIAS  trunk Revision v12.0_alpha-377-g3641b37b9db
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)