Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96206668
HeraldRuleEditHistoryController.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Mon, Dec 23, 18:37
Size
1 KB
Mime Type
text/x-php
Expires
Wed, Dec 25, 18:37 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23143290
Attached To
rPH Phabricator
HeraldRuleEditHistoryController.php
View Options
<?php
final
class
HeraldRuleEditHistoryController
extends
HeraldController
{
private
$id
;
public
function
willProcessRequest
(
array
$data
)
{
$this
->
id
=
idx
(
$data
,
'id'
);
}
public
function
processRequest
()
{
$request
=
$this
->
getRequest
();
$edit_query
=
new
HeraldEditLogQuery
();
if
(
$this
->
id
)
{
$edit_query
->
withRuleIDs
(
array
(
$this
->
id
));
}
$pager
=
new
AphrontPagerView
();
$pager
->
setURI
(
$request
->
getRequestURI
(),
'offset'
);
$pager
->
setOffset
(
$request
->
getStr
(
'offset'
));
$edits
=
$edit_query
->
executeWithOffsetPager
(
$pager
);
$need_phids
=
mpull
(
$edits
,
'getEditorPHID'
);
$handles
=
$this
->
loadViewerHandles
(
$need_phids
);
$list_view
=
id
(
new
HeraldRuleEditHistoryView
())
->
setEdits
(
$edits
)
->
setHandles
(
$handles
)
->
setUser
(
$this
->
getRequest
()->
getUser
());
$panel
=
new
AphrontPanelView
();
$panel
->
setHeader
(
pht
(
'Edit History'
));
$panel
->
appendChild
(
$list_view
);
$panel
->
setNoBackground
();
$nav
=
$this
->
renderNav
();
$nav
->
selectFilter
(
'history'
);
$nav
->
appendChild
(
$panel
);
return
$this
->
buildStandardPageResponse
(
$nav
,
array
(
'title'
=>
'Rule Edit History'
,
));
}
}
Event Timeline
Log In to Comment