Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91996313
PhragmentSnapshotDeleteController.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, Nov 16, 11:43
Size
1 KB
Mime Type
text/x-php
Expires
Mon, Nov 18, 11:43 (2 d)
Engine
blob
Format
Raw Data
Handle
22357911
Attached To
rPH Phabricator
PhragmentSnapshotDeleteController.php
View Options
<?php
final
class
PhragmentSnapshotDeleteController
extends
PhragmentController
{
private
$id
;
public
function
willProcessRequest
(
array
$data
)
{
$this
->
id
=
$data
[
'id'
];
}
public
function
processRequest
()
{
$request
=
$this
->
getRequest
();
$viewer
=
$request
->
getUser
();
$snapshot
=
id
(
new
PhragmentSnapshotQuery
())
->
setViewer
(
$viewer
)
->
requireCapabilities
(
array
(
PhabricatorPolicyCapability
::
CAN_VIEW
,
PhabricatorPolicyCapability
::
CAN_EDIT
,
))
->
withIDs
(
array
(
$this
->
id
))
->
executeOne
();
if
(
$snapshot
===
null
)
{
return
new
Aphront404Response
();
}
if
(
$request
->
isDialogFormPost
())
{
$fragment_uri
=
$snapshot
->
getPrimaryFragment
()->
getURI
();
$snapshot
->
delete
();
return
id
(
new
AphrontRedirectResponse
())
->
setURI
(
$fragment_uri
);
}
return
$this
->
createDialog
();
}
public
function
createDialog
()
{
$request
=
$this
->
getRequest
();
$viewer
=
$request
->
getUser
();
$dialog
=
id
(
new
AphrontDialogView
())
->
setTitle
(
pht
(
'Really delete this snapshot?'
))
->
setUser
(
$request
->
getUser
())
->
addSubmitButton
(
pht
(
'Delete'
))
->
addCancelButton
(
pht
(
'Cancel'
))
->
appendParagraph
(
pht
(
'Deleting this snapshot is a permanent operation. You can not '
.
'recover the state of the snapshot.'
));
return
id
(
new
AphrontDialogResponse
())->
setDialog
(
$dialog
);
}
}
Event Timeline
Log In to Comment