Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F549375
PholioMockEmbedView.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
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
->
getActiveImages
(),
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
->
getActiveImages
()))
->
addIconCount
(
'fa-trophy'
,
$mock
->
getTokenCount
());
return
$item
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 12, 2:07 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
122050
Default Alt Text
PholioMockEmbedView.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment