Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F97231720
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, Jan 3, 15:50
Size
1 KB
Mime Type
text/x-php
Expires
Sun, Jan 5, 15:50 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23360299
Attached To
rPH Phabricator
PhabricatorApplicationCountdown.php
View Options
<?php
/**
* @group countdown
*/
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
getRemarkupRules
()
{
return
array
(
new
PhabricatorCountdownRemarkupRule
(),
);
}
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