@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.

Set icons for Diviner PHID types

Summary: Ref T4558. Give `DivinerAtomPHIDType` and `DivinerBookPHIDType` a font icon.

Test Plan: Saw icons in global search.

Reviewers: #blessed_reviewers, epriestley

Reviewed By: #blessed_reviewers, epriestley

Subscribers: epriestley, Korvin

Maniphest Tasks: T4558

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

+8
+4
src/applications/diviner/phid/DivinerAtomPHIDType.php
··· 12 12 return new DivinerLiveSymbol(); 13 13 } 14 14 15 + public function getTypeIcon() { 16 + return 'fa-cube'; 17 + } 18 + 15 19 public function getPHIDTypeApplicationClass() { 16 20 return 'PhabricatorDivinerApplication'; 17 21 }
+4
src/applications/diviner/phid/DivinerBookPHIDType.php
··· 12 12 return new DivinerLiveBook(); 13 13 } 14 14 15 + public function getTypeIcon() { 16 + return 'fa-book'; 17 + } 18 + 15 19 public function getPHIDTypeApplicationClass() { 16 20 return 'PhabricatorDivinerApplication'; 17 21 }