ILIAS
release_7 Revision v7.30-3-g800a261c036
◀ 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
r
s
t
w
+
Functions
_
a
b
c
f
g
h
i
r
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
class.arConcat.php
Go to the documentation of this file.
1
<?php
2
require_once(dirname(__FILE__) .
'/../Statement/class.arStatement.php'
);
3
11
class
arConcat
extends
arStatement
12
{
13
17
protected
$as
=
''
;
21
protected
$fields
= array();
22
23
29
public
function
asSQLStatement
(
ActiveRecord
$ar)
30
{
31
return
' CONCAT('
. implode(
', '
, $this->
getFields
()) .
') AS '
. $this->
getAs
();
32
}
33
34
38
public
function
getAs
()
39
{
40
return
$this->as
;
41
}
42
43
47
public
function
setAs
(
$as
)
48
{
49
$this->as =
$as
;
50
}
51
52
56
public
function
getFields
()
57
{
58
return
$this->fields
;
59
}
60
61
65
public
function
setFields
(
$fields
)
66
{
67
$this->
fields
=
$fields
;
68
}
69
}
arConcat\setAs
setAs($as)
Definition:
class.arConcat.php:47
arConcat\getFields
getFields()
Definition:
class.arConcat.php:56
arConcat\$fields
$fields
Definition:
class.arConcat.php:21
arStatement
Class arStatement.
Definition:
class.arStatement.php:10
arConcat
Class arConcat.
Definition:
class.arConcat.php:11
fields
$errors fields
Definition:
imgupload.php:51
arConcat\$as
$as
Definition:
class.arConcat.php:17
arConcat\setFields
setFields($fields)
Definition:
class.arConcat.php:65
arConcat\asSQLStatement
asSQLStatement(ActiveRecord $ar)
Definition:
class.arConcat.php:29
ActiveRecord
arConcat\getAs
getAs()
Definition:
class.arConcat.php:38
Services
ActiveRecord
Connector
Concat
class.arConcat.php
Generated on Sat Apr 5 2025 21:01:13 for ILIAS by
1.8.13 (using
Doxyfile
)