Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92763745
PholioMockEmbedView.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, Nov 23, 12:53
Size
1 KB
Mime Type
text/x-php
Expires
Mon, Nov 25, 12:53 (2 d)
Engine
blob
Format
Raw Data
Handle
22501139
Attached To
rPH Phabricator
PholioMockEmbedView.php
View Options
<?php
final
class
PholioMockEmbedView
extends
AphrontView
{
private
$mock
;
private
$images
=
array
();
public
function
setMock
(
PholioMock
$mock
)
{
$this
->
mock
=
$mock
;
return
$this
;
}
public
function
setImages
(
array
$images
)
{
$this
->
images
=
$images
;
return
$this
;
}
public
function
render
()
{
if
(!
$this
->
mock
)
{
throw
new
PhutilInvalidStateException
(
'setMock'
);
}
$mock
=
$this
->
mock
;
$images_to_show
=
array
();
$thumbnail
=
null
;
if
(!
empty
(
$this
->
images
))
{
$images_to_show
=
array_intersect_key
(
$this
->
mock
->
getImages
(),
array_flip
(
$this
->
images
));
}
$xform
=
PhabricatorFileTransform
::
getTransformByKey
(
PhabricatorFileThumbnailTransform
::
TRANSFORM_PINBOARD
);
if
(
$images_to_show
)
{
$image
=
head
(
$images_to_show
);
$thumbfile
=
$image
->
getFile
();
$header
=
'M'
.
$mock
->
getID
().
' '
.
$mock
->
getName
().
' (#'
.
$image
->
getID
().
')'
;
$uri
=
'/M'
.
$this
->
mock
->
getID
().
'/'
.
$image
->
getID
().
'/'
;
}
else
{
$thumbfile
=
$mock
->
getCoverFile
();
$header
=
'M'
.
$mock
->
getID
().
' '
.
$mock
->
getName
();
$uri
=
'/M'
.
$this
->
mock
->
getID
();
}
$thumbnail
=
$thumbfile
->
getURIForTransform
(
$xform
);
list
(
$x
,
$y
)
=
$xform
->
getTransformedDimensions
(
$thumbfile
);
$item
=
id
(
new
PHUIPinboardItemView
())
->
setUser
(
$this
->
getUser
())
->
setObject
(
$mock
)
->
setHeader
(
$header
)
->
setURI
(
$uri
)
->
setImageURI
(
$thumbnail
)
->
setImageSize
(
$x
,
$y
)
->
setDisabled
(
$mock
->
isClosed
())
->
addIconCount
(
'fa-picture-o'
,
count
(
$mock
->
getImages
()))
->
addIconCount
(
'fa-trophy'
,
$mock
->
getTokenCount
());
return
$item
;
}
}
Event Timeline
Log In to Comment