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.arStatementCollection.php
Go to the documentation of this file.
1
<?php
2
require_once(
'class.arStatement.php'
);
3
10
abstract
class
arStatementCollection
{
11
15
protected
static
$cache
= array();
19
protected
$statements
= array();
23
protected
$ar
;
24
25
29
public
function
add
(
arStatement
$statement) {
30
$this->statements[] = $statement;
31
}
32
33
37
public
function
hasStatements
() {
38
return
count($this->statements) > 0;
39
}
40
41
47
public
static
function
getInstance(
ActiveRecord
$ar
) {
52
$classname = get_called_class();
53
$arWhereCollection =
new
$classname();
54
$arWhereCollection->setAr($ar);
55
56
return
$arWhereCollection;
57
}
58
59
63
abstract
public
function
asSQLStatement
();
64
65
69
public
function
setAr
($ar) {
70
$this->ar =
$ar
;
71
}
72
73
77
public
function
getAr
() {
78
return
$this->ar
;
79
}
80
81
85
public
function
setStatements
(
$statements
) {
86
$this->statements =
$statements
;
87
}
88
89
93
public
function
getStatements
() {
94
return
$this->statements
;
95
}
96
}
97
98
?>
arStatementCollection\getStatements
getStatements()
Definition:
class.arStatementCollection.php:93
arStatementCollection\$statements
$statements
Definition:
class.arStatementCollection.php:19
arStatementCollection
Class arStatementCollection.
Definition:
class.arStatementCollection.php:10
ActiveRecord
Class ActiveRecord.
Definition:
class.ActiveRecord.php:23
arStatementCollection\setStatements
setStatements($statements)
Definition:
class.arStatementCollection.php:85
arStatementCollection\setAr
setAr($ar)
Definition:
class.arStatementCollection.php:69
arStatementCollection\getAr
getAr()
Definition:
class.arStatementCollection.php:77
arStatement
Class arStatement.
Definition:
class.arStatement.php:10
arStatementCollection\add
add(arStatement $statement)
Definition:
class.arStatementCollection.php:29
arStatementCollection\$ar
$ar
Definition:
class.arStatementCollection.php:23
arStatementCollection\$cache
static $cache
Definition:
class.arStatementCollection.php:15
arStatementCollection\hasStatements
hasStatements()
Definition:
class.arStatementCollection.php:37
arStatementCollection\asSQLStatement
asSQLStatement()
Services
ActiveRecord
Connector
Statement
class.arStatementCollection.php
Generated on Mon Mar 31 2025 19:00:42 for ILIAS by
1.8.13 (using
Doxyfile
)