Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F989638
PhabricatorFileUploadView.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
PhabricatorFileUploadView.php
View Options
<?php
/*
* Copyright 2012 Facebook, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
final
class
PhabricatorFileUploadView
extends
AphrontView
{
private
$user
;
private
function
getUser
()
{
return
$this
->
user
;
}
public
function
setUser
(
PhabricatorUser
$user
)
{
$this
->
user
=
$user
;
return
$this
;
}
public
function
render
()
{
$user
=
$this
->
getUser
();
if
(!
$user
)
{
throw
new
Exception
(
"Call setUser() before render()!"
);
}
$form
=
new
AphrontFormView
();
$form
->
setAction
(
'/file/upload/'
);
$form
->
setUser
(
$user
);
$form
->
setEncType
(
'multipart/form-data'
)
->
appendChild
(
id
(
new
AphrontFormFileControl
())
->
setLabel
(
'File'
)
->
setName
(
'file'
)
->
setError
(
true
)
->
setCaption
(
self
::
renderUploadLimit
()))
->
appendChild
(
id
(
new
AphrontFormTextControl
())
->
setLabel
(
'Name'
)
->
setName
(
'name'
)
->
setCaption
(
'Optional file display name.'
))
->
appendChild
(
id
(
new
AphrontFormSubmitControl
())
->
setValue
(
'Upload'
)
->
addCancelButton
(
'/file/'
));
$panel
=
new
AphrontPanelView
();
$panel
->
setHeader
(
'Upload File'
);
$panel
->
appendChild
(
$form
);
$panel
->
setWidth
(
AphrontPanelView
::
WIDTH_FULL
);
return
$panel
->
render
();
}
public
static
function
renderUploadLimit
()
{
$limit
=
PhabricatorEnv
::
getEnvConfig
(
'storage.upload-size-limit'
);
$limit
=
phabricator_parse_bytes
(
$limit
);
if
(
$limit
)
{
$formatted
=
phabricator_format_bytes
(
$limit
);
return
'Maximum file size: '
.
phutil_escape_html
(
$formatted
);
}
$doc_href
=
PhabricatorEnv
::
getDocLink
(
'articles/Configuring_File_Upload_Limits.html'
);
$doc_link
=
phutil_render_tag
(
'a'
,
array
(
'href'
=>
$doc_href
,
'target'
=>
'_blank'
,
),
'Configuring File Upload Limits'
);
return
'Upload limit is not configured, see '
.
$doc_link
.
'.'
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Wed, Jun 18, 8:29 PM (1 d, 17 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
238860
Default Alt Text
PhabricatorFileUploadView.php (2 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment