Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93845151
PhabricatorApplicationTokens.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
Sun, Dec 1, 23:28
Size
948 B
Mime Type
text/x-php
Expires
Tue, Dec 3, 23:28 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22710786
Attached To
rPH Phabricator
PhabricatorApplicationTokens.php
View Options
<?php
final
class
PhabricatorApplicationTokens
extends
PhabricatorApplication
{
public
function
getName
()
{
return
pht
(
'Tokens'
);
}
public
function
getBaseURI
()
{
return
'/token/'
;
}
public
function
getIconName
()
{
return
'token'
;
}
public
function
getTitleGlyph
()
{
return
"
\x
E2
\x
99
\x
A6"
;
}
public
function
getShortDescription
()
{
return
pht
(
'Award and Acquire Trinkets'
);
}
public
function
getApplicationGroup
()
{
return
self
::
GROUP_UTILITIES
;
}
public
function
getRoutes
()
{
return
array
(
'/token/'
=>
array
(
''
=>
'PhabricatorTokenGivenController'
,
'given/'
=>
'PhabricatorTokenGivenController'
,
'give/(?<phid>[^/]+)/'
=>
'PhabricatorTokenGiveController'
,
'leaders/'
=>
'PhabricatorTokenLeaderController'
,
),
);
}
public
function
getEventListeners
()
{
return
array
(
new
PhabricatorTokenUIEventListener
(),
);
}
}
Event Timeline
Log In to Comment