ILIAS
release_5-0 Revision 5.0.0-1144-gc4397b1f870
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
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
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
+
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
k
l
m
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.arSelectCollection.php
Go to the documentation of this file.
1
<?php
2
require_once(dirname(__FILE__) .
'/../Statement/class.arStatementCollection.php'
);
3
require_once(
'class.arSelect.php'
);
4
11
class
arSelectCollection
extends
arStatementCollection
{
12
16
public
function
asSQLStatement
() {
17
$return =
'SELECT '
;
18
if
($this->
hasStatements
()) {
19
foreach
($this->
getSelects
() as $select) {
20
$return .= $select->asSQLStatement($this->
getAr
());
21
if
($select != end($this->
getSelects
())) {
22
$return .=
', '
;
23
}
24
}
25
}
26
27
// $return .= ' FROM ' . $this->getAr()->getConnectorContainerName();
28
29
return
$return;
30
}
31
32
36
public
function
getSelects
() {
37
return
$this->statements
;
38
}
39
}
40
41
?>
arStatementCollection\$statements
$statements
Definition:
class.arStatementCollection.php:19
arStatementCollection
Class arStatementCollection.
Definition:
class.arStatementCollection.php:10
arSelectCollection\asSQLStatement
asSQLStatement()
Definition:
class.arSelectCollection.php:16
arStatementCollection\getAr
getAr()
Definition:
class.arStatementCollection.php:77
arSelectCollection\getSelects
getSelects()
Definition:
class.arSelectCollection.php:36
arSelectCollection
Class arSelectCollection.
Definition:
class.arSelectCollection.php:11
arStatementCollection\hasStatements
hasStatements()
Definition:
class.arStatementCollection.php:37
Services
ActiveRecord
Connector
Select
class.arSelectCollection.php
Generated on Mon Mar 31 2025 19:00:42 for ILIAS by
1.8.13 (using
Doxyfile
)