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.arConcatCollection.php
Go to the documentation of this file.
1
<?php
2
require_once(dirname(__FILE__) .
'/../Statement/class.arStatementCollection.php'
);
3
require_once(
'class.arConcat.php'
);
4
11
class
arConcatCollection
extends
arStatementCollection
12
{
13
17
public
function
asSQLStatement
()
18
{
19
$return =
''
;
20
if
($this->
hasStatements
()) {
21
$return =
', '
;
22
foreach
($this->
getConcats
() as $concat) {
23
$return .= $concat->asSQLStatement($this->
getAr
());
24
if
($concat != end($this->
getConcats
())) {
25
$return .=
', '
;
26
}
27
}
28
}
29
30
return
$return;
31
}
32
33
37
public
function
getConcats
()
38
{
39
return
$this->statements
;
40
}
41
}
arStatementCollection\$statements
$statements
Definition:
class.arStatementCollection.php:20
arStatementCollection
Class arStatementCollection.
Definition:
class.arStatementCollection.php:10
arConcatCollection\asSQLStatement
asSQLStatement()
Definition:
class.arConcatCollection.php:17
arStatementCollection\getAr
getAr()
Definition:
class.arStatementCollection.php:83
arConcatCollection
Class arConcatCollection.
Definition:
class.arConcatCollection.php:11
arConcatCollection\getConcats
getConcats()
Definition:
class.arConcatCollection.php:37
arStatementCollection\hasStatements
hasStatements()
Definition:
class.arStatementCollection.php:39
Services
ActiveRecord
Connector
Concat
class.arConcatCollection.php
Generated on Wed Apr 2 2025 21:01:13 for ILIAS by
1.8.13 (using
Doxyfile
)