Page Menu
Home
GnuPG
Search
Configure Global Search
Log In
Files
F32914161
AphrontAttachedFileView.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Size
1 KB
Subscribers
None
AphrontAttachedFileView.php
View Options
<?php
final
class
AphrontAttachedFileView
extends
AphrontView
{
private
$file
;
public
function
setFile
(
PhabricatorFile
$file
)
{
$this
->
file
=
$file
;
return
$this
;
}
public
function
render
()
{
require_celerity_resource
(
'aphront-attached-file-view-css'
);
$file
=
$this
->
file
;
$phid
=
$file
->
getPHID
();
$thumb
=
phutil_render_tag
(
'img'
,
array
(
'src'
=>
$file
->
getThumb60x45URI
(),
'width'
=>
60
,
'height'
=>
45
,
));
$name
=
phutil_render_tag
(
'a'
,
array
(
'href'
=>
$file
->
getViewURI
(),
'target'
=>
'_blank'
,
),
phutil_escape_html
(
$file
->
getName
()));
$size
=
number_format
(
$file
->
getByteSize
()).
' bytes'
;
$remove
=
javelin_render_tag
(
'a'
,
array
(
'class'
=>
'button grey'
,
'sigil'
=>
'aphront-attached-file-view-remove'
,
// NOTE: Using 'ref' here instead of 'meta' because the file upload
// endpoint doesn't receive request metadata and thus can't generate
// a valid response with node metadata.
'ref'
=>
$file
->
getPHID
(),
),
"
\x
E2
\x
9C
\x
96"
);
// "Heavy Multiplication X"
return
'<table class="aphront-attached-file-view">
<tr>
<td>'
.
$thumb
.
'</td>
<th><strong>'
.
$name
.
'</strong><br />'
.
$size
.
'</th>
<td class="aphront-attached-file-view-remove">'
.
$remove
.
'</td>
</tr>
</table>'
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, Nov 17, 9:24 PM (1 d, 3 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
99/ad/084459cbeea2ad44cdc26b193c91
Attached To
rPHAB Phabricator
Event Timeline
Log In to Comment