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.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
{
13
17
protected
$start
;
21
protected
$end
;
22
23
29
public
function
asSQLStatement
(
ActiveRecord
$ar)
30
{
31
return
' LIMIT '
. $this->
getStart
() .
', '
. $this->
getEnd
();
32
}
33
34
38
public
function
setEnd
(
$end
)
39
{
40
$this->end =
$end
;
41
}
42
43
47
public
function
getEnd
()
48
{
49
return
$this->end
;
50
}
51
52
56
public
function
setStart
(
$start
)
57
{
58
$this->start =
$start
;
59
}
60
61
65
public
function
getStart
()
66
{
67
return
$this->start
;
68
}
69
}
arLimit\setStart
setStart($start)
Definition:
class.arLimit.php:56
arLimit\$start
$start
Definition:
class.arLimit.php:17
arLimit\getEnd
getEnd()
Definition:
class.arLimit.php:47
arLimit\getStart
getStart()
Definition:
class.arLimit.php:65
arStatement
Class arStatement.
Definition:
class.arStatement.php:10
arLimit\setEnd
setEnd($end)
Definition:
class.arLimit.php:38
arLimit\$end
$end
Definition:
class.arLimit.php:21
arLimit\asSQLStatement
asSQLStatement(ActiveRecord $ar)
Definition:
class.arLimit.php:29
arLimit
Class arLimit.
Definition:
class.arLimit.php:11
ActiveRecord
Services
ActiveRecord
Connector
Limit
class.arLimit.php
Generated on Fri Apr 4 2025 21:01:15 for ILIAS by
1.8.13 (using
Doxyfile
)