Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92104493
PhabricatorTokensApplication.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, Nov 17, 09:39
Size
951 B
Mime Type
text/x-php
Expires
Tue, Nov 19, 09:39 (2 d)
Engine
blob
Format
Raw Data
Handle
22376893
Attached To
rPH Phabricator
PhabricatorTokensApplication.php
View Options
<?php
final
class
PhabricatorTokensApplication
extends
PhabricatorApplication
{
public
function
getName
()
{
return
pht
(
'Tokens'
);
}
public
function
getBaseURI
()
{
return
'/token/'
;
}
public
function
getIcon
()
{
return
'fa-thumbs-up'
;
}
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