Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F8888113
PhabricatorOffsetPagedQuery.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Subscribers
None
PhabricatorOffsetPagedQuery.php
View Options
<?php
/**
* A query class which uses offset/limit paging. Provides logic and accessors
* for offsets and limits.
*/
abstract
class
PhabricatorOffsetPagedQuery
extends
PhabricatorQuery
{
private
$offset
;
private
$limit
;
final
public
function
setOffset
(
$offset
)
{
$this
->
offset
=
$offset
;
return
$this
;
}
final
public
function
setLimit
(
$limit
)
{
$this
->
limit
=
$limit
;
return
$this
;
}
final
public
function
getOffset
()
{
return
$this
->
offset
;
}
final
public
function
getLimit
()
{
return
$this
->
limit
;
}
protected
function
buildLimitClause
(
AphrontDatabaseConnection
$conn
)
{
if
(
$this
->
limit
&&
$this
->
offset
)
{
return
qsprintf
(
$conn
,
'LIMIT %d, %d'
,
$this
->
offset
,
$this
->
limit
);
}
else
if
(
$this
->
limit
)
{
return
qsprintf
(
$conn
,
'LIMIT %d'
,
$this
->
limit
);
}
else
if
(
$this
->
offset
)
{
return
qsprintf
(
$conn
,
'LIMIT %d, %d'
,
$this
->
offset
,
PHP_INT_MAX
);
}
else
{
return
qsprintf
(
$conn
,
''
);
}
}
final
public
function
executeWithOffsetPager
(
PHUIPagerView
$pager
)
{
$this
->
setLimit
(
$pager
->
getPageSize
()
+
1
);
$this
->
setOffset
(
$pager
->
getOffset
());
$results
=
$this
->
execute
();
return
$pager
->
sliceResults
(
$results
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Thu, Jun 10, 5:01 AM (1 d, 23 h)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
3385866
Default Alt Text
PhabricatorOffsetPagedQuery.php (1 KB)
Attached To
rP Phabricator
Event Timeline
Log In to Comment