1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-21 13:00:56 +01:00

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
This commit is contained in:
Joshua Spence 2015-06-17 07:20:34 +10:00
parent 8965c7ec9b
commit 751162d363
2 changed files with 8 additions and 0 deletions

View file

@ -12,6 +12,10 @@ final class DivinerAtomPHIDType extends PhabricatorPHIDType {
return new DivinerLiveSymbol();
}
public function getTypeIcon() {
return 'fa-cube';
}
public function getPHIDTypeApplicationClass() {
return 'PhabricatorDivinerApplication';
}

View file

@ -12,6 +12,10 @@ final class DivinerBookPHIDType extends PhabricatorPHIDType {
return new DivinerLiveBook();
}
public function getTypeIcon() {
return 'fa-book';
}
public function getPHIDTypeApplicationClass() {
return 'PhabricatorDivinerApplication';
}