Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F433383
PhabricatorPinboardItemView.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
PhabricatorPinboardItemView.php
View Options
<?php
final
class
PhabricatorPinboardItemView
extends
AphrontView
{
private
$imageURI
;
private
$uri
;
private
$header
;
private
$iconBlock
=
array
();
private
$imageWidth
;
private
$imageHeight
;
public
function
setHeader
(
$header
)
{
$this
->
header
=
$header
;
return
$this
;
}
public
function
setURI
(
$uri
)
{
$this
->
uri
=
$uri
;
return
$this
;
}
public
function
setImageURI
(
$image_uri
)
{
$this
->
imageURI
=
$image_uri
;
return
$this
;
}
public
function
setImageSize
(
$x
,
$y
)
{
$this
->
imageWidth
=
$x
;
$this
->
imageHeight
=
$y
;
return
$this
;
}
public
function
addIconCount
(
$icon
,
$count
)
{
$this
->
iconBlock
[]
=
array
(
$icon
,
$count
);
return
$this
;
}
public
function
render
()
{
$header
=
null
;
if
(
$this
->
header
)
{
$header
=
phutil_tag
(
'div'
,
array
(
'class'
=>
'phabricator-pinboard-item-header'
,
),
phutil_tag
(
'a'
,
array
(
'href'
=>
$this
->
uri
),
$this
->
header
));
}
$image
=
phutil_tag
(
'a'
,
array
(
'href'
=>
$this
->
uri
,
'class'
=>
'phabricator-pinboard-item-image-link'
,
),
phutil_tag
(
'img'
,
array
(
'src'
=>
$this
->
imageURI
,
'width'
=>
$this
->
imageWidth
,
'height'
=>
$this
->
imageHeight
,
)));
$icons
=
array
();
if
(
$this
->
iconBlock
)
{
$icon_list
=
array
();
foreach
(
$this
->
iconBlock
as
$block
)
{
$icon
=
phutil_tag
(
'span'
,
array
(
'class'
=>
'phabricator-pinboard-icon sprite-icons icons-'
.
$block
[
0
].
'-grey'
,
),
''
);
$count
=
phutil_tag
(
'span'
,
array
(),
$block
[
1
]);
$icon_list
[]
=
phutil_tag
(
'span'
,
array
(
'class'
=>
'phabricator-pinboard-item-count'
,
),
array
(
$icon
,
$count
));
}
$icons
=
phutil_tag
(
'div'
,
array
(
'class'
=>
'phabricator-pinboard-icons'
,
),
$icon_list
);
}
$content
=
$this
->
renderChildren
();
if
(
$content
)
{
$content
=
phutil_tag
(
'div'
,
array
(
'class'
=>
'phabricator-pinboard-item-content'
,
),
$content
);
}
return
phutil_tag
(
'div'
,
array
(
'class'
=>
'phabricator-pinboard-item-view'
,
),
array
(
$header
,
$image
,
$icons
,
$content
,
));
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sat, May 3, 3:45 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
61179
Default Alt Text
PhabricatorPinboardItemView.php (2 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment