Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F99037587
PhabricatorApplicationCalendar.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, 15:44
Size
1 KB
Mime Type
text/x-php
Expires
Mon, Jan 20, 15:44 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23695289
Attached To
rPH Phabricator
PhabricatorApplicationCalendar.php
View Options
<?php
final
class
PhabricatorApplicationCalendar
extends
PhabricatorApplication
{
public
function
getShortDescription
()
{
return
pht
(
'Dates and Stuff'
);
}
public
function
getFlavorText
()
{
return
pht
(
'Never miss an episode ever again.'
);
}
public
function
getBaseURI
()
{
return
'/calendar/'
;
}
public
function
getTitleGlyph
()
{
// Unicode has a calendar character but it's in some distant code plane,
// use "keyboard" since it looks vaguely similar.
return
"
\x
E2
\x
8C
\x
A8"
;
}
public
function
getApplicationGroup
()
{
return
self
::
GROUP_COMMUNICATION
;
}
public
function
getRoutes
()
{
return
array
(
'/calendar/'
=>
array
(
''
=>
'PhabricatorCalendarBrowseController'
,
'status/'
=>
array
(
''
=>
'PhabricatorCalendarViewStatusController'
,
'create/'
=>
'PhabricatorCalendarEditStatusController'
,
'delete/(?P<id>[1-9]
\d
*)/'
=>
'PhabricatorCalendarDeleteStatusController'
,
'edit/(?P<id>[1-9]
\d
*)/'
=>
'PhabricatorCalendarEditStatusController'
,
'view/(?P<phid>[^/]+)/'
=>
'PhabricatorCalendarViewStatusController'
,
),
),
);
}
}
Event Timeline
Log In to Comment