ILIAS
release_5-4 Revision v5.4.26-12-gabc799a52e6
◀ ilDoc Overview
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
ActiveRecord
Class ActiveRecord.
Definition:
class.ActiveRecord.php:24
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
php
Services
ActiveRecord
Connector
Limit
class.arLimit.php
Generated on Thu Jan 16 2025 19:02:15 for ILIAS by
1.8.13 (using
Doxyfile
)