Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F120546534
PhabricatorMacroDisableController.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
Sat, Jul 5, 03:35
Size
1 KB
Mime Type
text/x-php
Expires
Mon, Jul 7, 03:35 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
27204831
Attached To
rPH Phabricator
PhabricatorMacroDisableController.php
View Options
<?php
final
class
PhabricatorMacroDisableController
extends
PhabricatorMacroController
{
private
$id
;
public
function
willProcessRequest
(
array
$data
)
{
$this
->
id
=
$data
[
'id'
];
}
public
function
processRequest
()
{
$request
=
$this
->
getRequest
();
$user
=
$request
->
getUser
();
$macro
=
id
(
new
PhabricatorFileImageMacro
())->
load
(
$this
->
id
);
if
(!
$macro
)
{
return
new
Aphront404Response
();
}
$view_uri
=
$this
->
getApplicationURI
(
'/view/'
.
$this
->
id
.
'/'
);
if
(
$request
->
isDialogFormPost
()
||
$macro
->
getIsDisabled
())
{
$xaction
=
id
(
new
PhabricatorMacroTransaction
())
->
setTransactionType
(
PhabricatorMacroTransactionType
::
TYPE_DISABLED
)
->
setNewValue
(
$macro
->
getIsDisabled
()
?
0
:
1
);
$editor
=
id
(
new
PhabricatorMacroEditor
())
->
setActor
(
$user
)
->
setContentSource
(
PhabricatorContentSource
::
newForSource
(
PhabricatorContentSource
::
SOURCE_WEB
,
array
(
'ip'
=>
$request
->
getRemoteAddr
(),
)))
->
applyTransactions
(
$macro
,
array
(
$xaction
));
return
id
(
new
AphrontRedirectResponse
())->
setURI
(
$view_uri
);
}
$dialog
=
new
AphrontDialogView
();
$dialog
->
setUser
(
$request
->
getUser
())
->
setTitle
(
'Really disable macro?'
)
->
appendChild
(
'<p>Really disable the much-beloved image macro "'
.
phutil_escape_html
(
$macro
->
getName
()).
'"? It will be sorely missed.'
.
'</p>'
)
->
setSubmitURI
(
$this
->
getApplicationURI
(
'/disable/'
.
$this
->
id
.
'/'
))
->
addSubmitButton
(
'Disable'
)
->
addCancelButton
(
$view_uri
);
return
id
(
new
AphrontDialogResponse
())->
setDialog
(
$dialog
);
}
}
Event Timeline
Log In to Comment