Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102242469
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
Tue, Feb 18, 16:18
Size
1 KB
Mime Type
text/x-php
Expires
Thu, Feb 20, 16:18 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
24300140
Attached To
rPH Phabricator
PhabricatorFileUploadDialogController.php
View Options
<?php
final
class
PhabricatorFileUploadDialogController
extends
PhabricatorFileController
{
public
function
handleRequest
(
AphrontRequest
$request
)
{
$viewer
=
$request
->
getViewer
();
$e_file
=
true
;
$errors
=
array
();
if
(
$request
->
isDialogFormPost
())
{
$file_phids
=
$request
->
getStrList
(
'filePHIDs'
);
if
(
$file_phids
)
{
$files
=
id
(
new
PhabricatorFileQuery
())
->
setViewer
(
$viewer
)
->
withPHIDs
(
$file_phids
)
->
setRaisePolicyExceptions
(
true
)
->
execute
();
}
else
{
$files
=
array
();
}
if
(
$files
)
{
$results
=
array
();
foreach
(
$files
as
$file
)
{
$results
[]
=
$file
->
getDragAndDropDictionary
();
}
$content
=
array
(
'files'
=>
$results
,
);
return
id
(
new
AphrontAjaxResponse
())->
setContent
(
$content
);
}
else
{
$e_file
=
pht
(
'Required'
);
$errors
[]
=
pht
(
'You must choose a file to upload.'
);
}
}
if
(
$request
->
getURIData
(
'single'
))
{
$allow_multiple
=
false
;
}
else
{
$allow_multiple
=
true
;
}
$form
=
id
(
new
AphrontFormView
())
->
appendChild
(
id
(
new
PHUIFormFileControl
())
->
setName
(
'filePHIDs'
)
->
setLabel
(
pht
(
'Upload File'
))
->
setAllowMultiple
(
$allow_multiple
)
->
setError
(
$e_file
));
return
$this
->
newDialog
()
->
setTitle
(
pht
(
'File'
))
->
setErrors
(
$errors
)
->
appendForm
(
$form
)
->
addSubmitButton
(
pht
(
'Upload'
))
->
addCancelButton
(
'/'
);
}
}
Event Timeline
Log In to Comment