Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F106294738
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
Mon, Mar 24, 13:33
Size
1 KB
Mime Type
text/x-php
Expires
Wed, Mar 26, 13:33 (2 d)
Engine
blob
Format
Raw Data
Handle
25161768
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