Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F97212091
PhabricatorBadgesIconSet.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
Fri, Jan 3, 12:09
Size
1 KB
Mime Type
text/x-php
Expires
Sun, Jan 5, 12:09 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23355707
Attached To
rPH Phabricator
PhabricatorBadgesIconSet.php
View Options
<?php
final
class
PhabricatorBadgesIconSet
extends
PhabricatorIconSet
{
const
ICONSETKEY
=
'badges'
;
public
function
getSelectIconTitleText
()
{
return
pht
(
'Choose Badge Icon'
);
}
protected
function
newIcons
()
{
$map
=
array
(
'fa-star'
=>
pht
(
'Superstar'
),
'fa-user'
=>
pht
(
'Average Person'
),
'fa-bug'
=>
pht
(
'Ladybug'
),
'fa-users'
=>
pht
(
'Triplets'
),
'fa-book'
=>
pht
(
'Nominomicon'
),
'fa-rocket'
=>
pht
(
'Escape Route'
),
'fa-life-ring'
=>
pht
(
'Foam Circle'
),
'fa-birthday-cake'
=>
pht
(
'Cake Day'
),
'fa-camera-retro'
=>
pht
(
'Leica Enthusiast'
),
'fa-beer'
=>
pht
(
'Liquid Lunch'
),
'fa-gift'
=>
pht
(
'Free Stuff'
),
'fa-eye'
=>
pht
(
'Eye See You'
),
'fa-heart'
=>
pht
(
'Love is Love'
),
'fa-trophy'
=>
pht
(
'Winner at Things'
),
'fa-umbrella'
=>
pht
(
'Rain Defender'
),
'fa-graduation-cap'
=>
pht
(
'In Debt'
),
'fa-empire'
=>
pht
(
'The Empire'
),
'fa-first-order'
=>
pht
(
'First Order'
),
'fa-rebel'
=>
pht
(
'Rebel'
),
'fa-space-shuttle'
=>
pht
(
'Star Ship'
),
'fa-anchor'
=>
pht
(
'Anchors Away'
),
'fa-code'
=>
pht
(
'Coder'
),
'fa-briefcase'
=>
pht
(
'Serious Business'
),
'fa-globe'
=>
pht
(
'International'
),
'fa-desktop'
=>
pht
(
'Glowing Rectangle'
),
);
$icons
=
array
();
foreach
(
$map
as
$key
=>
$label
)
{
$icons
[]
=
id
(
new
PhabricatorIconSetIcon
())
->
setKey
(
$key
)
->
setLabel
(
$label
);
}
return
$icons
;
}
}
Event Timeline
Log In to Comment