Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F114217151
PhabricatorFileUploadDialogController.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
Sat, May 24, 08:22
Size
511 B
Mime Type
text/x-php
Expires
Mon, May 26, 08:22 (2 d)
Engine
blob
Format
Raw Data
Handle
26371798
Attached To
rPH Phabricator
PhabricatorFileUploadDialogController.php
View Options
<?php
final
class
PhabricatorFileUploadDialogController
extends
PhabricatorFileController
{
public
function
handleRequest
(
AphrontRequest
$request
)
{
$viewer
=
$request
->
getViewer
();
$dialog
=
id
(
new
AphrontDialogView
())
->
setUser
(
$viewer
)
->
setTitle
(
pht
(
'Upload File'
))
->
appendChild
(
pht
(
'To add files, drag and drop them into the comment text area.'
))
->
addCancelButton
(
'/'
,
pht
(
'Close'
));
return
id
(
new
AphrontDialogResponse
())->
setDialog
(
$dialog
);
}
}
Event Timeline
Log In to Comment