Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93149830
PhabricatorTokenController.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
Tue, Nov 26, 14:23
Size
609 B
Mime Type
text/x-php
Expires
Thu, Nov 28, 14:23 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22582602
Attached To
rPH Phabricator
PhabricatorTokenController.php
View Options
<?php
abstract
class
PhabricatorTokenController
extends
PhabricatorController
{
protected
function
buildSideNav
()
{
$nav
=
new
AphrontSideNavFilterView
();
$nav
->
setBaseURI
(
new
PhutilURI
(
$this
->
getApplicationURI
()));
$nav
->
addLabel
(
pht
(
'Tokens'
));
$nav
->
addFilter
(
'given/'
,
pht
(
'Tokens Given'
));
$nav
->
addFilter
(
'leaders/'
,
pht
(
'Leader Board'
));
return
$nav
;
}
public
function
buildApplicationMenu
()
{
return
$this
->
buildSideNav
()->
getMenu
();
}
protected
function
buildApplicationCrumbs
()
{
$crumbs
=
parent
::
buildApplicationCrumbs
();
return
$crumbs
;
}
}
Event Timeline
Log In to Comment