ILIAS
release_6 Revision v6.24-5-g0c8bfefb3b8
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
l
m
p
s
t
w
+
Functions
_
a
b
c
f
g
h
i
s
t
w
+
Variables
$
c
d
e
f
g
h
j
l
m
p
s
t
+
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
+
Files
File List
+
Globals
+
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
z
+
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
+
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
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
FieldRendererFactory.php
Go to the documentation of this file.
1
<?php
2
3
/* Copyright (c) 2018 Thomas Famula <famula@leifos.de> Extended GPL, see docs/LICENSE */
4
5
namespace
ILIAS\UI\Implementation\Component\Input\Field
;
6
7
use
ILIAS\UI\Implementation\Render
;
8
use
ILIAS\UI\Component
;
9
10
class
FieldRendererFactory
extends
Render\DefaultRendererFactory
11
{
12
public
function
getRendererInContext
(
Component
\
Component
$component, array $contexts)
13
{
14
if
(in_array(
'StandardFilterContainerInput'
, $contexts)) {
15
return
new
FilterContextRenderer
(
16
$this->ui_factory,
17
$this->tpl_factory,
18
$this->lng,
19
$this->js_binding,
20
$this->refinery
21
);
22
}
23
return
new
Renderer
(
24
$this->ui_factory,
25
$this->tpl_factory,
26
$this->lng,
27
$this->js_binding,
28
$this->refinery
29
);
30
}
31
}
ILIAS\UI\Implementation\Component\Input\Field\FilterContextRenderer
Definition:
FilterContextRenderer.php:19
ILIAS\UI\Component
ILIAS\UI\Implementation\Component\Input\Field\FieldRendererFactory\getRendererInContext
getRendererInContext(Component\Component $component, array $contexts)
Definition:
FieldRendererFactory.php:12
ILIAS\UI\Implementation\Component\Input\Field
Definition:
Checkbox.php:6
ILIAS\UI\Implementation\Render
Definition:
AbstractComponentRenderer.php:5
ILIAS\UI\Implementation\Component\Input\Field\Renderer
Definition:
Renderer.php:22
ILIAS\UI\Implementation\Component\Input\Field\FieldRendererFactory
Definition:
FieldRendererFactory.php:10
ILIAS\UI\Implementation\Render\DefaultRendererFactory
Definition:
DefaultRendererFactory.php:11
src
UI
Implementation
Component
Input
Field
FieldRendererFactory.php
Generated on Sat Apr 5 2025 20:01:40 for ILIAS by
1.8.13 (using
Doxyfile
)