Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F109453608
DiffusionRepositoryEditDeleteController.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
Tue, Apr 22, 01:04
Size
1 KB
Mime Type
text/x-php
Expires
Thu, Apr 24, 01:04 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
25728097
Attached To
rPH Phabricator
DiffusionRepositoryEditDeleteController.php
View Options
<?php
final
class
DiffusionRepositoryEditDeleteController
extends
DiffusionRepositoryManageController
{
public
function
handleRequest
(
AphrontRequest
$request
)
{
$response
=
$this
->
loadDiffusionContextForEdit
();
if
(
$response
)
{
return
$response
;
}
$viewer
=
$this
->
getViewer
();
$drequest
=
$this
->
getDiffusionRequest
();
$repository
=
$drequest
->
getRepository
();
$panel_uri
=
id
(
new
DiffusionRepositoryBasicsManagementPanel
())
->
setRepository
(
$repository
)
->
getPanelURI
();
$dialog
=
new
AphrontDialogView
();
$text_1
=
pht
(
'If you really want to delete the repository, run this command from '
.
'the command line:'
);
$command
=
csprintf
(
'phabricator/ $ ./bin/remove destroy %R'
,
$repository
->
getMonogram
());
$text_2
=
pht
(
'Repositories touch many objects and as such deletes are '
.
'prohibitively expensive to run from the web UI.'
);
$body
=
phutil_tag
(
'div'
,
array
(
'class'
=>
'phabricator-remarkup'
,
),
array
(
phutil_tag
(
'p'
,
array
(),
$text_1
),
phutil_tag
(
'p'
,
array
(),
phutil_tag
(
'tt'
,
array
(),
$command
)),
phutil_tag
(
'p'
,
array
(),
$text_2
),
));
return
$this
->
newDialog
()
->
setTitle
(
pht
(
'Really want to delete the repository?'
))
->
appendChild
(
$body
)
->
addCancelButton
(
$panel_uri
,
pht
(
'Okay'
));
}
}
Event Timeline
Log In to Comment