Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F97896530
PhabricatorCalendarIconSet.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
Tue, Jan 7, 07:59
Size
1 KB
Mime Type
text/x-php
Expires
Thu, Jan 9, 07:59 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23434283
Attached To
rPH Phabricator
PhabricatorCalendarIconSet.php
View Options
<?php
final
class
PhabricatorCalendarIconSet
extends
PhabricatorIconSet
{
const
ICONSETKEY
=
'calendar.event'
;
public
function
getSelectIconTitleText
()
{
return
pht
(
'Choose Event Icon'
);
}
protected
function
newIcons
()
{
$map
=
array
(
'fa-calendar'
=>
pht
(
'Default'
),
'fa-glass'
=>
pht
(
'Party'
),
'fa-plane'
=>
pht
(
'Travel'
),
'fa-plus-square'
=>
pht
(
'Health / Appointment'
),
'fa-rocket'
=>
pht
(
'Sabbatical / Leave'
),
'fa-home'
=>
pht
(
'Working From Home'
),
'fa-tree'
=>
pht
(
'Holiday'
),
'fa-gamepad'
=>
pht
(
'Staycation'
),
'fa-coffee'
=>
pht
(
'Coffee Meeting'
),
'fa-film'
=>
pht
(
'Movie'
),
'fa-users'
=>
pht
(
'Meeting'
),
'fa-cutlery'
=>
pht
(
'Meal'
),
'fa-paw'
=>
pht
(
'Pet Activity'
),
'fa-institution'
=>
pht
(
'Official Business'
),
'fa-bus'
=>
pht
(
'Field Trip'
),
'fa-microphone'
=>
pht
(
'Conference'
),
);
$icons
=
array
();
foreach
(
$map
as
$key
=>
$label
)
{
$icons
[]
=
id
(
new
PhabricatorIconSetIcon
())
->
setKey
(
$key
)
->
setLabel
(
$label
);
}
return
$icons
;
}
}
Event Timeline
Log In to Comment