Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92695704
PhabricatorApplicationCountdown.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, Nov 22, 20:57
Size
967 B
Mime Type
text/x-php
Expires
Sun, Nov 24, 20:57 (2 d)
Engine
blob
Format
Raw Data
Handle
22488764
Attached To
rPH Phabricator
PhabricatorApplicationCountdown.php
View Options
<?php
final
class
PhabricatorApplicationCountdown
extends
PhabricatorApplication
{
public
function
getBaseURI
()
{
return
'/countdown/'
;
}
public
function
getIconName
()
{
return
'countdown'
;
}
public
function
getShortDescription
()
{
return
pht
(
'Countdown Timers'
);
}
public
function
getTitleGlyph
()
{
return
"
\x
E2
\x
9A
\x
B2"
;
}
public
function
getFlavorText
()
{
return
pht
(
'Utilize the full capabilities of your ALU.'
);
}
public
function
getApplicationGroup
()
{
return
self
::
GROUP_UTILITIES
;
}
public
function
getRoutes
()
{
return
array
(
'/countdown/'
=>
array
(
''
=>
'PhabricatorCountdownListController'
,
'(?P<id>[1-9]
\d
*)/'
=>
'PhabricatorCountdownViewController'
,
'edit/(?:(?P<id>[1-9]
\d
*)/)?'
=>
'PhabricatorCountdownEditController'
,
'delete/(?P<id>[1-9]
\d
*)/'
=>
'PhabricatorCountdownDeleteController'
),
);
}
}
Event Timeline
Log In to Comment