Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F105920761
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
Thu, Mar 20, 20:21
Size
1 KB
Mime Type
text/x-php
Expires
Sat, Mar 22, 20:21 (2 d)
Engine
blob
Format
Raw Data
Handle
25061031
Attached To
rPH Phabricator
PhameBlogDeleteController.php
View Options
<?php
/**
* @group phame
*/
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