Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F104531808
PhameBlogDeleteController.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
Mon, Mar 10, 05:45
Size
1 KB
Mime Type
text/x-php
Expires
Wed, Mar 12, 05:45 (2 d)
Engine
blob
Format
Raw Data
Handle
24806373
Attached To
rPH Phabricator
PhameBlogDeleteController.php
View Options
<?php
final
class
PhameBlogDeleteController
extends
PhameController
{
private
$id
;
public
function
willProcessRequest
(
array
$data
)
{
$this
->
id
=
$data
[
'id'
];
}
public
function
processRequest
()
{
$request
=
$this
->
getRequest
();
$user
=
$request
->
getUser
();
$blog
=
id
(
new
PhameBlogQuery
())
->
setViewer
(
$user
)
->
withIDs
(
array
(
$this
->
id
))
->
requireCapabilities
(
array
(
PhabricatorPolicyCapability
::
CAN_EDIT
,
))
->
executeOne
();
if
(!
$blog
)
{
return
new
Aphront404Response
();
}
if
(
$request
->
isFormPost
())
{
$blog
->
delete
();
return
id
(
new
AphrontRedirectResponse
())
->
setURI
(
$this
->
getApplicationURI
());
}
$cancel_uri
=
$this
->
getApplicationURI
(
'/blog/view/'
.
$blog
->
getID
().
'/'
);
$dialog
=
id
(
new
AphrontDialogView
())
->
setUser
(
$user
)
->
setTitle
(
pht
(
'Delete Blog?'
))
->
appendChild
(
pht
(
'Really delete the blog "%s"? It will be gone forever.'
,
$blog
->
getName
()))
->
addSubmitButton
(
pht
(
'Delete'
))
->
addCancelButton
(
$cancel_uri
);
return
id
(
new
AphrontDialogResponse
())->
setDialog
(
$dialog
);
}
}
Event Timeline
Log In to Comment