Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F120488333
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
Fri, Jul 4, 17:54
Size
1 KB
Mime Type
text/x-php
Expires
Sun, Jul 6, 17:54 (2 d)
Engine
blob
Format
Raw Data
Handle
27188922
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