Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F538586
PhabricatorMacroDisableController.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
PhabricatorMacroDisableController.php
View Options
<?php
final
class
PhabricatorMacroDisableController
extends
PhabricatorMacroController
{
public
function
handleRequest
(
AphrontRequest
$request
)
{
$viewer
=
$request
->
getViewer
();
$id
=
$request
->
getURIData
(
'id'
);
$this
->
requireApplicationCapability
(
PhabricatorMacroManageCapability
::
CAPABILITY
);
$macro
=
id
(
new
PhabricatorMacroQuery
())
->
setViewer
(
$viewer
)
->
withIDs
(
array
(
$id
))
->
executeOne
();
if
(!
$macro
)
{
return
new
Aphront404Response
();
}
$view_uri
=
$this
->
getApplicationURI
(
'/view/'
.
$id
.
'/'
);
if
(
$request
->
isDialogFormPost
()
||
$macro
->
getIsDisabled
())
{
$xaction
=
id
(
new
PhabricatorMacroTransaction
())
->
setTransactionType
(
PhabricatorMacroDisabledTransaction
::
TRANSACTIONTYPE
)
->
setNewValue
(
$macro
->
getIsDisabled
()
?
0
:
1
);
$editor
=
id
(
new
PhabricatorMacroEditor
())
->
setActor
(
$viewer
)
->
setContentSourceFromRequest
(
$request
);
$xactions
=
$editor
->
applyTransactions
(
$macro
,
array
(
$xaction
));
return
id
(
new
AphrontRedirectResponse
())->
setURI
(
$view_uri
);
}
$dialog
=
new
AphrontDialogView
();
$dialog
->
setUser
(
$request
->
getUser
())
->
setTitle
(
pht
(
'Really disable macro?'
))
->
appendChild
(
phutil_tag
(
'p'
,
array
(),
pht
(
'Really disable the much-beloved image macro %s? '
.
'It will be sorely missed.'
,
$macro
->
getName
())))
->
setSubmitURI
(
$this
->
getApplicationURI
(
'/disable/'
.
$id
.
'/'
))
->
addSubmitButton
(
pht
(
'Disable'
))
->
addCancelButton
(
$view_uri
);
return
id
(
new
AphrontDialogResponse
())->
setDialog
(
$dialog
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 12, 8:51 AM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
106058
Default Alt Text
PhabricatorMacroDisableController.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment