ILIAS
trunk Revision v11.0_alpha-2638-g80c1d007f79
◀ ilDoc Overview
class.ilUserExportConfig.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
use
ILIAS\Export\ExportHandler\Consumer\ExportConfig\BasicHandler
as ExportConfig;
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
}
ilUserExportConfig
Definition:
class.ilUserExportConfig.php:23
ilUserExportConfig\getExportType
getExportType()
Definition:
class.ilUserExportConfig.php:37
ilUserExportConfig\__construct
__construct()
Definition:
class.ilUserExportConfig.php:27
ilUserExportConfig\setExportType
setExportType(string $export_type)
Definition:
class.ilUserExportConfig.php:32
ILIAS\Export\ExportHandler\Consumer\ExportConfig\BasicHandler
Definition:
BasicHandler.php:25
ilUserExportConfig\$export_type
string $export_type
Definition:
class.ilUserExportConfig.php:25
components
ILIAS
User
classes
class.ilUserExportConfig.php
Generated on Sun Aug 31 2025 23:04:19 for ILIAS by
1.8.13 (using
Doxyfile
)