Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F99043634
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
Sat, Jan 18, 16:35
Size
1 KB
Mime Type
text/x-php
Expires
Mon, Jan 20, 16:35 (2 d)
Engine
blob
Format
Raw Data
Handle
23696479
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