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.arLimit.php
Go to the documentation of this file.
1
<?php
2
require_once(dirname(__FILE__) .
'/../Statement/class.arStatement.php'
);
3
11
class
arLimit
extends
arStatement
{
12
16
protected
$start
;
20
protected
$end
;
21
22
28
public
function
asSQLStatement
(
ActiveRecord
$ar) {
29
return
' LIMIT '
. $this->
getStart
() .
', '
. $this->
getEnd
();
30
}
31
32
36
public
function
setEnd
(
$end
) {
37
$this->end =
$end
;
38
}
39
40
44
public
function
getEnd
() {
45
return
$this->end
;
46
}
47
48
52
public
function
setStart
(
$start
) {
53
$this->start =
$start
;
54
}
55
56
60
public
function
getStart
() {
61
return
$this->start
;
62
}
63
}
64
65
?>
arLimit\setStart
setStart($start)
Definition:
class.arLimit.php:52
ActiveRecord
Class ActiveRecord.
Definition:
class.ActiveRecord.php:23
arLimit\$start
$start
Definition:
class.arLimit.php:16
arLimit\getEnd
getEnd()
Definition:
class.arLimit.php:44
arLimit\getStart
getStart()
Definition:
class.arLimit.php:60
arStatement
Class arStatement.
Definition:
class.arStatement.php:10
arLimit\setEnd
setEnd($end)
Definition:
class.arLimit.php:36
arLimit\$end
$end
Definition:
class.arLimit.php:20
arLimit\asSQLStatement
asSQLStatement(ActiveRecord $ar)
Definition:
class.arLimit.php:28
arLimit
Class arLimit.
Definition:
class.arLimit.php:11
Services
ActiveRecord
Connector
Limit
class.arLimit.php
Generated on Mon Apr 7 2025 19:00:46 for ILIAS by
1.8.13 (using
Doxyfile
)