Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F949627
PhabricatorCountdownDeleteController.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
PhabricatorCountdownDeleteController.php
View Options
<?php
final
class
PhabricatorCountdownDeleteController
extends
PhabricatorCountdownController
{
private
$id
;
public
function
willProcessRequest
(
array
$data
)
{
$this
->
id
=
$data
[
'id'
];
}
public
function
processRequest
()
{
$request
=
$this
->
getRequest
();
$user
=
$request
->
getUser
();
$countdown
=
id
(
new
PhabricatorCountdownQuery
())
->
setViewer
(
$user
)
->
withIDs
(
array
(
$this
->
id
))
->
requireCapabilities
(
array
(
PhabricatorPolicyCapability
::
CAN_VIEW
,
PhabricatorPolicyCapability
::
CAN_EDIT
,
))
->
executeOne
();
if
(!
$countdown
)
{
return
new
Aphront404Response
();
}
if
(
$request
->
isFormPost
())
{
$countdown
->
delete
();
return
id
(
new
AphrontRedirectResponse
())
->
setURI
(
'/countdown/'
);
}
$inst
=
pht
(
'Are you sure you want to delete the countdown %s?'
,
$countdown
->
getTitle
());
$dialog
=
new
AphrontDialogView
();
$dialog
->
setUser
(
$request
->
getUser
());
$dialog
->
setTitle
(
pht
(
'Really delete this countdown?'
));
$dialog
->
appendChild
(
phutil_tag
(
'p'
,
array
(),
$inst
));
$dialog
->
addSubmitButton
(
pht
(
'Delete'
));
$dialog
->
addCancelButton
(
'/countdown/'
);
$dialog
->
setSubmitURI
(
$request
->
getPath
());
return
id
(
new
AphrontDialogResponse
())->
setDialog
(
$dialog
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, Jun 17, 1:39 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
223860
Default Alt Text
PhabricatorCountdownDeleteController.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment