@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Minor Token updates.

Summary: Add mobile menu, dust

Test Plan: test mobile, click menu

Reviewers: epriestley

Reviewed By: epriestley

CC: aran, Korvin

Differential Revision: https://secure.phabricator.com/D5417

+11
+10
src/applications/tokens/controller/PhabricatorTokenController.php
··· 7 7 $nav = new AphrontSideNavFilterView(); 8 8 $nav->setBaseURI(new PhutilURI($this->getApplicationURI())); 9 9 10 + $nav->addLabel(pht('Tokens')); 10 11 $nav->addFilter('given/', pht('Tokens Given')); 11 12 $nav->addFilter('leaders/', pht('Leader Board')); 12 13 13 14 return $nav; 15 + } 16 + 17 + public function buildApplicationMenu() { 18 + return $this->buildSideNav()->getMenu(); 19 + } 20 + 21 + public function buildApplicationCrumbs() { 22 + $crumbs = parent::buildApplicationCrumbs(); 23 + return $crumbs; 14 24 } 15 25 16 26 }
+1
src/applications/tokens/controller/PhabricatorTokenGivenController.php
··· 72 72 array( 73 73 'title' => $title, 74 74 'device' => true, 75 + 'dust' => true, 75 76 )); 76 77 } 77 78