ILIAS
trunk Revision v11.0_alpha-1702-gfd3ecb7f852
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
c
e
g
h
j
l
m
p
s
t
u
v
+
Enumerations
a
c
e
f
i
j
l
m
n
o
p
r
s
t
u
v
z
+
Enumerator
a
c
d
e
f
g
i
l
m
n
o
p
q
s
t
u
v
y
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Ö
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Ö
Enumerations
Enumerator
+
Files
File List
+
Globals
+
All
$
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
z
+
Functions
a
b
c
d
e
f
g
h
i
m
n
p
r
s
t
u
v
+
Variables
$
a
c
e
g
h
i
m
n
o
p
r
s
t
u
v
z
Enumerations
Enumerator
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Enumerations
Enumerator
Modules
Pages
class.ilBlogExportOptionHTML.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
use
ILIAS\Export\ExportHandler\Consumer\ExportOption\BasicLegacyHandler
as ilBasicLegacyExportOption;
22
use
ILIAS\Export\ExportHandler\I\Consumer\Context\HandlerInterface
as ilExportHandlerConsumerContextInterface;
23
use
ILIAS\DI\Container
;
24
25
class
ilBlogExportOptionHTML
extends
\ILIAS\Export\HTML\ExportOptionBase
26
{
27
protected
ilLanguage
$lng
;
28
29
public
function
init
(
30
Container
$DIC
31
): void {
32
$this->
lng
= $DIC->
language
();
33
parent::init
($DIC);
34
}
35
36
public
function
isPublicAccessPossible
(): bool
37
{
38
return
true
;
39
}
40
41
public
function
getExportType
(): string
42
{
43
return
'html'
;
44
}
45
46
public
function
getExportOptionId
(): string
47
{
48
return
'blog_exp_option_html'
;
49
}
50
51
public
function
getSupportedRepositoryObjectTypes
(): array
52
{
53
return
[
'blog'
];
54
}
55
56
public
function
getLabel
(): string
57
{
58
$this->
lng
->loadLanguageModule(
'exp'
);
59
return
$this->
lng
->txt(
"exp_format_dropdown-html"
);
60
}
61
62
public
function
onExportOptionSelected
(
63
ilExportHandlerConsumerContextInterface
$context
64
): void {
65
$this->
ctrl
->redirectByClass(ilObjBlogGUI::class,
"createExportFile"
);
66
}
67
}
ILIAS\Export\ExportHandler\I\Consumer\Context\HandlerInterface
Definition:
HandlerInterface.php:27
ilLanguage
$context
$context
Definition:
webdav.php:31
ILIAS\Export\ExportHandler\Consumer\ExportOption\BasicLegacyHandler
Definition:
BasicLegacyHandler.php:38
ilBlogExportOptionHTML\getExportType
getExportType()
Definition:
class.ilBlogExportOptionHTML.php:41
ilBlogExportOptionHTML\getExportOptionId
getExportOptionId()
Definition:
class.ilBlogExportOptionHTML.php:46
ilBlogExportOptionHTML\onExportOptionSelected
onExportOptionSelected(ilExportHandlerConsumerContextInterface $context)
Definition:
class.ilBlogExportOptionHTML.php:62
ilBlogExportOptionHTML\isPublicAccessPossible
isPublicAccessPossible()
Definition:
class.ilBlogExportOptionHTML.php:36
ilBlogExportOptionHTML\getSupportedRepositoryObjectTypes
getSupportedRepositoryObjectTypes()
Definition:
class.ilBlogExportOptionHTML.php:51
ILIAS\DI\Container
Customizing of pimple-DIC for ILIAS.
Definition:
Container.php:35
Container
ILIAS\Repository\ctrl
ctrl()
Definition:
trait.GlobalDICGUIServices.php:63
ilBlogExportOptionHTML\init
init(Container $DIC)
Definition:
class.ilBlogExportOptionHTML.php:29
ILIAS\Repository\lng
lng()
Definition:
trait.GlobalDICDomainServices.php:61
ilBlogExportOptionHTML\getLabel
getLabel()
Definition:
class.ilBlogExportOptionHTML.php:56
ilBlogExportOptionHTML\$lng
ilLanguage $lng
Definition:
class.ilBlogExportOptionHTML.php:27
$DIC
global $DIC
Definition:
shib_login.php:22
ILIAS\DI\Container\language
language()
Get interface to the i18n service.
Definition:
Container.php:95
ilBlogExportOptionHTML
Definition:
class.ilBlogExportOptionHTML.php:25
init
init()
Definition:
ilPRGCertificateHelper.php:29
components
ILIAS
Blog
Export
class.ilBlogExportOptionHTML.php
Generated on Thu Apr 3 2025 23:02:24 for ILIAS by
1.8.13 (using
Doxyfile
)