Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F111212169
HeraldDisableController.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
Wed, Apr 30, 05:08
Size
1 KB
Mime Type
text/x-php
Expires
Fri, May 2, 05:08 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
25852278
Attached To
rPH Phabricator
HeraldDisableController.php
View Options
<?php
final
class
HeraldDisableController
extends
HeraldController
{
public
function
handleRequest
(
AphrontRequest
$request
)
{
$viewer
=
$request
->
getViewer
();
$id
=
$request
->
getURIData
(
'id'
);
$action
=
$request
->
getURIData
(
'action'
);
$rule
=
id
(
new
HeraldRuleQuery
())
->
setViewer
(
$viewer
)
->
withIDs
(
array
(
$id
))
->
requireCapabilities
(
array
(
PhabricatorPolicyCapability
::
CAN_VIEW
,
PhabricatorPolicyCapability
::
CAN_EDIT
,
))
->
executeOne
();
if
(!
$rule
)
{
return
new
Aphront404Response
();
}
if
(
$rule
->
isGlobalRule
())
{
$this
->
requireApplicationCapability
(
HeraldManageGlobalRulesCapability
::
CAPABILITY
);
}
$view_uri
=
'/'
.
$rule
->
getMonogram
();
$is_disable
=
(
$action
===
'disable'
);
if
(
$request
->
isFormPost
())
{
$xaction
=
id
(
new
HeraldRuleTransaction
())
->
setTransactionType
(
HeraldRuleTransaction
::
TYPE_DISABLE
)
->
setNewValue
(
$is_disable
);
id
(
new
HeraldRuleEditor
())
->
setActor
(
$viewer
)
->
setContinueOnNoEffect
(
true
)
->
setContentSourceFromRequest
(
$request
)
->
applyTransactions
(
$rule
,
array
(
$xaction
));
return
id
(
new
AphrontRedirectResponse
())->
setURI
(
$view_uri
);
}
if
(
$is_disable
)
{
$title
=
pht
(
'Really archive this rule?'
);
$body
=
pht
(
'This rule will no longer activate.'
);
$button
=
pht
(
'Archive Rule'
);
}
else
{
$title
=
pht
(
'Really activate this rule?'
);
$body
=
pht
(
'This rule will become active again.'
);
$button
=
pht
(
'Activate Rule'
);
}
$dialog
=
id
(
new
AphrontDialogView
())
->
setUser
(
$viewer
)
->
setTitle
(
$title
)
->
appendChild
(
$body
)
->
addSubmitButton
(
$button
)
->
addCancelButton
(
$view_uri
);
return
id
(
new
AphrontDialogResponse
())->
setDialog
(
$dialog
);
}
}
Event Timeline
Log In to Comment