Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2992251
PHUIPinboardItemView.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
3 KB
Referenced Files
None
Subscribers
None
PHUIPinboardItemView.php
View Options
<?php
final
class
PHUIPinboardItemView
extends
AphrontView
{
private
$imageURI
;
private
$uri
;
private
$header
;
private
$iconBlock
=
array
(
)
;
private
$disabled
;
private
$object
;
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
setDisabled
(
$disabled
)
{
$this
->
disabled
=
$disabled
;
return
$this
;
}
public
function
setObject
(
$object
)
{
$this
->
object
=
$object
;
return
$this
;
}
public
function
render
(
)
{
require_celerity_resource
(
'phui-pinboard-view-css'
)
;
$header
=
null
;
if
(
$this
->
header
)
{
$header_color
=
null
;
if
(
$this
->
disabled
)
{
$header_color
=
'phui-pinboard-disabled'
;
}
$header
=
phutil_tag
(
'div'
,
array
(
'class'
=>
'phui-pinboard-item-header '
.
$header_color
,
)
,
array
(
id
(
new
PHUISpacesNamespaceContextView
(
)
)
->
setUser
(
$this
->
getUser
(
)
)
->
setObject
(
$this
->
object
)
,
phutil_tag
(
'a'
,
array
(
'href'
=>
$this
->
uri
,
)
,
$this
->
header
)
,
)
)
;
}
$image
=
null
;
if
(
$this
->
imageWidth
)
{
$image
=
phutil_tag
(
'a'
,
array
(
'href'
=>
$this
->
uri
,
'class'
=>
'phui-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
=
id
(
new
PHUIIconView
(
)
)
->
setIcon
(
$block
[
0
]
.
' lightgreytext'
)
->
addClass
(
'phui-pinboard-icon'
)
;
$count
=
phutil_tag
(
'span'
,
array
(
)
,
$block
[
1
]
)
;
$icon_list
[
]
=
phutil_tag
(
'span'
,
array
(
'class'
=>
'phui-pinboard-item-count'
,
)
,
array
(
$icon
,
$count
)
)
;
}
$icons
=
phutil_tag
(
'div'
,
array
(
'class'
=>
'phui-pinboard-icons'
,
)
,
$icon_list
)
;
}
$content
=
$this
->
renderChildren
(
)
;
if
(
$content
)
{
$content
=
phutil_tag
(
'div'
,
array
(
'class'
=>
'phui-pinboard-item-content'
,
)
,
$content
)
;
}
$classes
=
array
(
)
;
$classes
[
]
=
'phui-pinboard-item-view'
;
if
(
$this
->
disabled
)
{
$classes
[
]
=
'phui-pinboard-item-disabled'
;
}
$item
=
phutil_tag
(
'div'
,
array
(
'class'
=>
implode
(
' '
,
$classes
)
,
)
,
array
(
$image
,
$header
,
$content
,
$icons
,
)
)
;
return
phutil_tag
(
'li'
,
array
(
'class'
=>
'phui-pinboard-list-item'
,
)
,
$item
)
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, Feb 23, 07:17 (1 d, 14 h ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1128638
Default Alt Text
PHUIPinboardItemView.php (3 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment