Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F107714045
PHUIBadgeMiniView.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
Wed, Apr 9, 23:52
Size
1 KB
Mime Type
text/x-php
Expires
Fri, Apr 11, 23:52 (2 d)
Engine
blob
Format
Raw Data
Handle
25327217
Attached To
rPH Phabricator
PHUIBadgeMiniView.php
View Options
<?php
final
class
PHUIBadgeMiniView
extends
AphrontTagView
{
private
$href
;
private
$icon
;
private
$quality
;
private
$header
;
private
$tipDirection
;
public
function
setIcon
(
$icon
)
{
$this
->
icon
=
$icon
;
return
$this
;
}
public
function
setHref
(
$href
)
{
$this
->
href
=
$href
;
return
$this
;
}
public
function
setQuality
(
$quality
)
{
$this
->
quality
=
$quality
;
return
$this
;
}
public
function
setHeader
(
$header
)
{
$this
->
header
=
$header
;
return
$this
;
}
public
function
setTipDirection
(
$direction
)
{
$this
->
tipDirection
=
$direction
;
return
$this
;
}
protected
function
getTagName
()
{
if
(
$this
->
href
)
{
return
'a'
;
}
else
{
return
'span'
;
}
}
protected
function
getTagAttributes
()
{
require_celerity_resource
(
'phui-badge-view-css'
);
Javelin
::
initBehavior
(
'phabricator-tooltips'
);
$classes
=
array
();
$classes
[]
=
'phui-badge-mini'
;
if
(
$this
->
quality
)
{
$classes
[]
=
'phui-badge-mini-'
.
$this
->
quality
;
}
return
array
(
'class'
=>
implode
(
' '
,
$classes
),
'sigil'
=>
'has-tooltip'
,
'href'
=>
$this
->
href
,
'meta'
=>
array
(
'tip'
=>
$this
->
header
,
'align'
=>
$this
->
tipDirection
,
'size'
=>
300
,
),
);
}
protected
function
getTagContent
()
{
return
id
(
new
PHUIIconView
())
->
setIcon
(
$this
->
icon
);
}
}
Event Timeline
Log In to Comment