ILIAS  trunk Revision v11.0_alpha-2638-g80c1d007f79
class.ilUserExportConfig.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
23 class 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)