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

Provide an application link for the Macro PHID type

Summary: Ref T9625. This is an example of how to fill in the missing calls.

Test Plan:
  - Verified that an icon is now shown for feed stories.
  - Verified that an icon is now shown in the "PHID Types" module panel in Config.

{F906325}

{F906326}

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T9625

Differential Revision: https://secure.phabricator.com/D14324
This commit is contained in:
epriestley 2015-10-24 09:41:13 -07:00
parent 58957e62c1
commit d0098bc436

View file

@ -8,6 +8,10 @@ final class PhabricatorMacroMacroPHIDType extends PhabricatorPHIDType {
return pht('Image Macro'); return pht('Image Macro');
} }
public function getPHIDTypeApplicationClass() {
return 'PhabricatorMacroApplication';
}
public function getTypeIcon() { public function getTypeIcon() {
return 'fa-meh-o'; return 'fa-meh-o';
} }