Page Menu
Home
GnuPG
Search
Configure Global Search
Log In
Files
F35235654
PhabricatorPinboardItemView.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Size
2 KB
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
Wed, Feb 4, 7:03 AM (2 h, 56 m)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
46/7a/33b3d2c179ccd176930231f4f0c9
Attached To
rPHAB Phabricator
Event Timeline
Log In to Comment