Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96574892
PhabricatorFileUploadView.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, Dec 28, 09:25
Size
1 KB
Mime Type
text/x-php
Expires
Mon, Dec 30, 09:25 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23209340
Attached To
rPH Phabricator
PhabricatorFileUploadView.php
View Options
<?php
/*
* Copyright 2011 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
))
->
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
();
}
}
Event Timeline
Log In to Comment