Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F14588683
D14482.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
44 KB
Referenced Files
None
Subscribers
None
D14482.diff
View Options
diff --git a/src/applications/almanac/phid/AlmanacBindingPHIDType.php b/src/applications/almanac/phid/AlmanacBindingPHIDType.php
--- a/src/applications/almanac/phid/AlmanacBindingPHIDType.php
+++ b/src/applications/almanac/phid/AlmanacBindingPHIDType.php
@@ -8,6 +8,10 @@
return pht('Almanac Binding');
}
+ public function getTypeIcon() {
+ return 'fa-exchange';
+ }
+
public function newObject() {
return new AlmanacBinding();
}
diff --git a/src/applications/almanac/phid/AlmanacDevicePHIDType.php b/src/applications/almanac/phid/AlmanacDevicePHIDType.php
--- a/src/applications/almanac/phid/AlmanacDevicePHIDType.php
+++ b/src/applications/almanac/phid/AlmanacDevicePHIDType.php
@@ -8,6 +8,10 @@
return pht('Almanac Device');
}
+ public function getTypeIcon() {
+ return 'fa-mobile';
+ }
+
public function newObject() {
return new AlmanacDevice();
}
diff --git a/src/applications/almanac/phid/AlmanacInterfacePHIDType.php b/src/applications/almanac/phid/AlmanacInterfacePHIDType.php
--- a/src/applications/almanac/phid/AlmanacInterfacePHIDType.php
+++ b/src/applications/almanac/phid/AlmanacInterfacePHIDType.php
@@ -8,6 +8,10 @@
return pht('Almanac Interface');
}
+ public function getTypeIcon() {
+ return 'fa-road';
+ }
+
public function newObject() {
return new AlmanacInterface();
}
diff --git a/src/applications/almanac/phid/AlmanacNetworkPHIDType.php b/src/applications/almanac/phid/AlmanacNetworkPHIDType.php
--- a/src/applications/almanac/phid/AlmanacNetworkPHIDType.php
+++ b/src/applications/almanac/phid/AlmanacNetworkPHIDType.php
@@ -8,6 +8,10 @@
return pht('Almanac Network');
}
+ public function getTypeIcon() {
+ return 'fa-sitemap';
+ }
+
public function newObject() {
return new AlmanacNetwork();
}
diff --git a/src/applications/almanac/phid/AlmanacServicePHIDType.php b/src/applications/almanac/phid/AlmanacServicePHIDType.php
--- a/src/applications/almanac/phid/AlmanacServicePHIDType.php
+++ b/src/applications/almanac/phid/AlmanacServicePHIDType.php
@@ -8,6 +8,10 @@
return pht('Almanac Service');
}
+ public function getTypeIcon() {
+ return 'fa-cloud';
+ }
+
public function newObject() {
return new AlmanacService();
}
diff --git a/src/applications/auth/application/PhabricatorAuthApplication.php b/src/applications/auth/application/PhabricatorAuthApplication.php
--- a/src/applications/auth/application/PhabricatorAuthApplication.php
+++ b/src/applications/auth/application/PhabricatorAuthApplication.php
@@ -11,7 +11,7 @@
}
public function getFontIcon() {
- return 'fa-key';
+ return 'fa-lock';
}
public function isPinnedByDefault(PhabricatorUser $viewer) {
diff --git a/src/applications/auth/phid/PhabricatorAuthAuthFactorPHIDType.php b/src/applications/auth/phid/PhabricatorAuthAuthFactorPHIDType.php
--- a/src/applications/auth/phid/PhabricatorAuthAuthFactorPHIDType.php
+++ b/src/applications/auth/phid/PhabricatorAuthAuthFactorPHIDType.php
@@ -8,6 +8,10 @@
return pht('Auth Factor');
}
+ public function getTypeIcon() {
+ return 'fa-unlock-alt';
+ }
+
public function newObject() {
return new PhabricatorAuthFactorConfig();
}
diff --git a/src/applications/auth/phid/PhabricatorAuthAuthProviderPHIDType.php b/src/applications/auth/phid/PhabricatorAuthAuthProviderPHIDType.php
--- a/src/applications/auth/phid/PhabricatorAuthAuthProviderPHIDType.php
+++ b/src/applications/auth/phid/PhabricatorAuthAuthProviderPHIDType.php
@@ -8,6 +8,10 @@
return pht('Auth Provider');
}
+ public function getTypeIcon() {
+ return 'fa-cutlery';
+ }
+
public function newObject() {
return new PhabricatorAuthProviderConfig();
}
diff --git a/src/applications/auth/phid/PhabricatorAuthInvitePHIDType.php b/src/applications/auth/phid/PhabricatorAuthInvitePHIDType.php
--- a/src/applications/auth/phid/PhabricatorAuthInvitePHIDType.php
+++ b/src/applications/auth/phid/PhabricatorAuthInvitePHIDType.php
@@ -8,6 +8,10 @@
return pht('Auth Invite');
}
+ public function getTypeIcon() {
+ return 'fa-street-view';
+ }
+
public function newObject() {
return new PhabricatorAuthInvite();
}
diff --git a/src/applications/badges/phid/PhabricatorBadgesPHIDType.php b/src/applications/badges/phid/PhabricatorBadgesPHIDType.php
--- a/src/applications/badges/phid/PhabricatorBadgesPHIDType.php
+++ b/src/applications/badges/phid/PhabricatorBadgesPHIDType.php
@@ -8,6 +8,10 @@
return pht('Badge');
}
+ public function getTypeIcon() {
+ return 'fa-shield';
+ }
+
public function newObject() {
return new PhabricatorBadgesBadge();
}
diff --git a/src/applications/base/PhabricatorApplication.php b/src/applications/base/PhabricatorApplication.php
--- a/src/applications/base/PhabricatorApplication.php
+++ b/src/applications/base/PhabricatorApplication.php
@@ -156,7 +156,7 @@
}
public function getFontIcon() {
- return 'fa-puzzle-piece';
+ return null;
}
public function getApplicationOrder() {
diff --git a/src/applications/calendar/phid/PhabricatorCalendarEventPHIDType.php b/src/applications/calendar/phid/PhabricatorCalendarEventPHIDType.php
--- a/src/applications/calendar/phid/PhabricatorCalendarEventPHIDType.php
+++ b/src/applications/calendar/phid/PhabricatorCalendarEventPHIDType.php
@@ -8,6 +8,10 @@
return pht('Event');
}
+ public function getTypeIcon() {
+ return 'fa-birthday-cake';
+ }
+
public function newObject() {
return new PhabricatorCalendarEvent();
}
diff --git a/src/applications/config/phid/PhabricatorConfigConfigPHIDType.php b/src/applications/config/phid/PhabricatorConfigConfigPHIDType.php
--- a/src/applications/config/phid/PhabricatorConfigConfigPHIDType.php
+++ b/src/applications/config/phid/PhabricatorConfigConfigPHIDType.php
@@ -8,6 +8,10 @@
return pht('Config');
}
+ public function getTypeIcon() {
+ return 'fa-toggle-on';
+ }
+
public function newObject() {
return new PhabricatorConfigEntry();
}
diff --git a/src/applications/conpherence/phid/PhabricatorConpherenceThreadPHIDType.php b/src/applications/conpherence/phid/PhabricatorConpherenceThreadPHIDType.php
--- a/src/applications/conpherence/phid/PhabricatorConpherenceThreadPHIDType.php
+++ b/src/applications/conpherence/phid/PhabricatorConpherenceThreadPHIDType.php
@@ -8,6 +8,10 @@
return pht('Conpherence Room');
}
+ public function getTypeIcon() {
+ return 'fa-comment';
+ }
+
public function newObject() {
return new ConpherenceThread();
}
diff --git a/src/applications/countdown/phid/PhabricatorCountdownCountdownPHIDType.php b/src/applications/countdown/phid/PhabricatorCountdownCountdownPHIDType.php
--- a/src/applications/countdown/phid/PhabricatorCountdownCountdownPHIDType.php
+++ b/src/applications/countdown/phid/PhabricatorCountdownCountdownPHIDType.php
@@ -8,6 +8,10 @@
return pht('Countdown');
}
+ public function getTypeIcon() {
+ return 'fa-hourglass-half';
+ }
+
public function newObject() {
return new PhabricatorCountdown();
}
diff --git a/src/applications/dashboard/phid/PhabricatorDashboardDashboardPHIDType.php b/src/applications/dashboard/phid/PhabricatorDashboardDashboardPHIDType.php
--- a/src/applications/dashboard/phid/PhabricatorDashboardDashboardPHIDType.php
+++ b/src/applications/dashboard/phid/PhabricatorDashboardDashboardPHIDType.php
@@ -8,6 +8,10 @@
return pht('Dashboard');
}
+ public function getTypeIcon() {
+ return 'fa-table';
+ }
+
public function newObject() {
return new PhabricatorDashboard();
}
diff --git a/src/applications/dashboard/phid/PhabricatorDashboardPanelPHIDType.php b/src/applications/dashboard/phid/PhabricatorDashboardPanelPHIDType.php
--- a/src/applications/dashboard/phid/PhabricatorDashboardPanelPHIDType.php
+++ b/src/applications/dashboard/phid/PhabricatorDashboardPanelPHIDType.php
@@ -8,6 +8,10 @@
return pht('Panel');
}
+ public function getTypeIcon() {
+ return 'fa-adjust';
+ }
+
public function newObject() {
return new PhabricatorDashboardPanel();
}
diff --git a/src/applications/differential/phid/DifferentialDiffPHIDType.php b/src/applications/differential/phid/DifferentialDiffPHIDType.php
--- a/src/applications/differential/phid/DifferentialDiffPHIDType.php
+++ b/src/applications/differential/phid/DifferentialDiffPHIDType.php
@@ -8,6 +8,10 @@
return pht('Differential Diff');
}
+ public function getTypeIcon() {
+ return 'fa-codepen';
+ }
+
public function newObject() {
return new DifferentialDiff();
}
diff --git a/src/applications/differential/phid/DifferentialRevisionPHIDType.php b/src/applications/differential/phid/DifferentialRevisionPHIDType.php
--- a/src/applications/differential/phid/DifferentialRevisionPHIDType.php
+++ b/src/applications/differential/phid/DifferentialRevisionPHIDType.php
@@ -8,6 +8,10 @@
return pht('Differential Revision');
}
+ public function getTypeIcon() {
+ return 'fa-cogs';
+ }
+
public function newObject() {
return new DifferentialRevision();
}
diff --git a/src/applications/diviner/phid/DivinerAtomPHIDType.php b/src/applications/diviner/phid/DivinerAtomPHIDType.php
--- a/src/applications/diviner/phid/DivinerAtomPHIDType.php
+++ b/src/applications/diviner/phid/DivinerAtomPHIDType.php
@@ -8,12 +8,12 @@
return pht('Diviner Atom');
}
- public function newObject() {
- return new DivinerLiveSymbol();
+ public function getTypeIcon() {
+ return 'fa-asterisk';
}
- public function getTypeIcon() {
- return 'fa-cube';
+ public function newObject() {
+ return new DivinerLiveSymbol();
}
public function getPHIDTypeApplicationClass() {
diff --git a/src/applications/drydock/phid/DrydockAuthorizationPHIDType.php b/src/applications/drydock/phid/DrydockAuthorizationPHIDType.php
--- a/src/applications/drydock/phid/DrydockAuthorizationPHIDType.php
+++ b/src/applications/drydock/phid/DrydockAuthorizationPHIDType.php
@@ -8,6 +8,10 @@
return pht('Drydock Authorization');
}
+ public function getTypeIcon() {
+ return 'fa-ticket';
+ }
+
public function newObject() {
return new DrydockAuthorization();
}
diff --git a/src/applications/drydock/phid/DrydockLeasePHIDType.php b/src/applications/drydock/phid/DrydockLeasePHIDType.php
--- a/src/applications/drydock/phid/DrydockLeasePHIDType.php
+++ b/src/applications/drydock/phid/DrydockLeasePHIDType.php
@@ -9,7 +9,7 @@
}
public function getTypeIcon() {
- return 'fa-link';
+ return 'fa-magnet';
}
public function newObject() {
diff --git a/src/applications/drydock/phid/DrydockRepositoryOperationPHIDType.php b/src/applications/drydock/phid/DrydockRepositoryOperationPHIDType.php
--- a/src/applications/drydock/phid/DrydockRepositoryOperationPHIDType.php
+++ b/src/applications/drydock/phid/DrydockRepositoryOperationPHIDType.php
@@ -8,6 +8,10 @@
return pht('Drydock Repository Operation');
}
+ public function getTypeIcon() {
+ return 'fa-git';
+ }
+
public function newObject() {
return new DrydockRepositoryOperation();
}
diff --git a/src/applications/drydock/phid/DrydockResourcePHIDType.php b/src/applications/drydock/phid/DrydockResourcePHIDType.php
--- a/src/applications/drydock/phid/DrydockResourcePHIDType.php
+++ b/src/applications/drydock/phid/DrydockResourcePHIDType.php
@@ -9,7 +9,7 @@
}
public function getTypeIcon() {
- return 'fa-map';
+ return 'fa-plug';
}
public function newObject() {
diff --git a/src/applications/files/application/PhabricatorFilesApplication.php b/src/applications/files/application/PhabricatorFilesApplication.php
--- a/src/applications/files/application/PhabricatorFilesApplication.php
+++ b/src/applications/files/application/PhabricatorFilesApplication.php
@@ -15,7 +15,7 @@
}
public function getFontIcon() {
- return 'fa-file';
+ return 'fa-files-o';
}
public function getTitleGlyph() {
diff --git a/src/applications/files/phid/PhabricatorFileFilePHIDType.php b/src/applications/files/phid/PhabricatorFileFilePHIDType.php
--- a/src/applications/files/phid/PhabricatorFileFilePHIDType.php
+++ b/src/applications/files/phid/PhabricatorFileFilePHIDType.php
@@ -8,6 +8,10 @@
return pht('File');
}
+ public function getTypeIcon() {
+ return 'fa-file-o';
+ }
+
public function newObject() {
return new PhabricatorFile();
}
diff --git a/src/applications/fund/phid/FundBackerPHIDType.php b/src/applications/fund/phid/FundBackerPHIDType.php
--- a/src/applications/fund/phid/FundBackerPHIDType.php
+++ b/src/applications/fund/phid/FundBackerPHIDType.php
@@ -5,7 +5,11 @@
const TYPECONST = 'FBAK';
public function getTypeName() {
- return pht('Variable');
+ return pht('Backer');
+ }
+
+ public function getTypeIcon() {
+ return 'fa-bank';
}
public function newObject() {
diff --git a/src/applications/fund/phid/FundInitiativePHIDType.php b/src/applications/fund/phid/FundInitiativePHIDType.php
--- a/src/applications/fund/phid/FundInitiativePHIDType.php
+++ b/src/applications/fund/phid/FundInitiativePHIDType.php
@@ -8,6 +8,10 @@
return pht('Fund Initiative');
}
+ public function getTypeIcon() {
+ return 'fa-money';
+ }
+
public function newObject() {
return new FundInitiative();
}
diff --git a/src/applications/harbormaster/phid/HarbormasterBuildArtifactPHIDType.php b/src/applications/harbormaster/phid/HarbormasterBuildArtifactPHIDType.php
--- a/src/applications/harbormaster/phid/HarbormasterBuildArtifactPHIDType.php
+++ b/src/applications/harbormaster/phid/HarbormasterBuildArtifactPHIDType.php
@@ -8,6 +8,10 @@
return pht('Build Artifact');
}
+ public function getTypeIcon() {
+ return 'fa-archive';
+ }
+
public function newObject() {
return new HarbormasterBuildArtifact();
}
diff --git a/src/applications/harbormaster/phid/HarbormasterBuildLogPHIDType.php b/src/applications/harbormaster/phid/HarbormasterBuildLogPHIDType.php
--- a/src/applications/harbormaster/phid/HarbormasterBuildLogPHIDType.php
+++ b/src/applications/harbormaster/phid/HarbormasterBuildLogPHIDType.php
@@ -8,6 +8,10 @@
return pht('Build Log');
}
+ public function getTypeIcon() {
+ return 'fa-sort-amount-desc';
+ }
+
public function newObject() {
return new HarbormasterBuildLog();
}
diff --git a/src/applications/harbormaster/phid/HarbormasterBuildPHIDType.php b/src/applications/harbormaster/phid/HarbormasterBuildPHIDType.php
--- a/src/applications/harbormaster/phid/HarbormasterBuildPHIDType.php
+++ b/src/applications/harbormaster/phid/HarbormasterBuildPHIDType.php
@@ -8,6 +8,10 @@
return pht('Build');
}
+ public function getTypeIcon() {
+ return 'fa-play';
+ }
+
public function newObject() {
return new HarbormasterBuild();
}
diff --git a/src/applications/harbormaster/phid/HarbormasterBuildPlanPHIDType.php b/src/applications/harbormaster/phid/HarbormasterBuildPlanPHIDType.php
--- a/src/applications/harbormaster/phid/HarbormasterBuildPlanPHIDType.php
+++ b/src/applications/harbormaster/phid/HarbormasterBuildPlanPHIDType.php
@@ -9,7 +9,7 @@
}
public function getTypeIcon() {
- return 'fa-cubes';
+ return 'fa-list-ol';
}
public function newObject() {
diff --git a/src/applications/harbormaster/phid/HarbormasterBuildStepPHIDType.php b/src/applications/harbormaster/phid/HarbormasterBuildStepPHIDType.php
--- a/src/applications/harbormaster/phid/HarbormasterBuildStepPHIDType.php
+++ b/src/applications/harbormaster/phid/HarbormasterBuildStepPHIDType.php
@@ -8,6 +8,10 @@
return pht('Build Step');
}
+ public function getTypeIcon() {
+ return 'fa-step-forward';
+ }
+
public function newObject() {
return new HarbormasterBuildStep();
}
diff --git a/src/applications/harbormaster/phid/HarbormasterBuildTargetPHIDType.php b/src/applications/harbormaster/phid/HarbormasterBuildTargetPHIDType.php
--- a/src/applications/harbormaster/phid/HarbormasterBuildTargetPHIDType.php
+++ b/src/applications/harbormaster/phid/HarbormasterBuildTargetPHIDType.php
@@ -8,6 +8,10 @@
return pht('Build Target');
}
+ public function getTypeIcon() {
+ return 'fa-crosshairs';
+ }
+
public function newObject() {
return new HarbormasterBuildTarget();
}
diff --git a/src/applications/harbormaster/phid/HarbormasterBuildablePHIDType.php b/src/applications/harbormaster/phid/HarbormasterBuildablePHIDType.php
--- a/src/applications/harbormaster/phid/HarbormasterBuildablePHIDType.php
+++ b/src/applications/harbormaster/phid/HarbormasterBuildablePHIDType.php
@@ -8,6 +8,10 @@
return pht('Buildable');
}
+ public function getTypeIcon() {
+ return 'fa-building';
+ }
+
public function newObject() {
return new HarbormasterBuildable();
}
diff --git a/src/applications/herald/phid/HeraldRulePHIDType.php b/src/applications/herald/phid/HeraldRulePHIDType.php
--- a/src/applications/herald/phid/HeraldRulePHIDType.php
+++ b/src/applications/herald/phid/HeraldRulePHIDType.php
@@ -8,6 +8,10 @@
return pht('Herald Rule');
}
+ public function getTypeIcon() {
+ return 'fa-magic';
+ }
+
public function newObject() {
return new HeraldRule();
}
diff --git a/src/applications/maniphest/phid/ManiphestTaskPHIDType.php b/src/applications/maniphest/phid/ManiphestTaskPHIDType.php
--- a/src/applications/maniphest/phid/ManiphestTaskPHIDType.php
+++ b/src/applications/maniphest/phid/ManiphestTaskPHIDType.php
@@ -8,6 +8,10 @@
return pht('Maniphest Task');
}
+ public function getTypeIcon() {
+ return 'fa-bug';
+ }
+
public function newObject() {
return new ManiphestTask();
}
diff --git a/src/applications/meta/phid/PhabricatorApplicationApplicationPHIDType.php b/src/applications/meta/phid/PhabricatorApplicationApplicationPHIDType.php
--- a/src/applications/meta/phid/PhabricatorApplicationApplicationPHIDType.php
+++ b/src/applications/meta/phid/PhabricatorApplicationApplicationPHIDType.php
@@ -10,7 +10,7 @@
}
public function getTypeIcon() {
- return 'fa-globe';
+ return 'fa-compass';
}
public function newObject() {
diff --git a/src/applications/metamta/application/PhabricatorMetaMTAApplication.php b/src/applications/metamta/application/PhabricatorMetaMTAApplication.php
--- a/src/applications/metamta/application/PhabricatorMetaMTAApplication.php
+++ b/src/applications/metamta/application/PhabricatorMetaMTAApplication.php
@@ -11,7 +11,7 @@
}
public function getFontIcon() {
- return 'fa-send';
+ return 'fa-envelope';
}
public function getShortDescription() {
diff --git a/src/applications/metamta/phid/PhabricatorMetaMTAMailPHIDType.php b/src/applications/metamta/phid/PhabricatorMetaMTAMailPHIDType.php
--- a/src/applications/metamta/phid/PhabricatorMetaMTAMailPHIDType.php
+++ b/src/applications/metamta/phid/PhabricatorMetaMTAMailPHIDType.php
@@ -8,6 +8,10 @@
return pht('MetaMTA Mail');
}
+ public function getTypeIcon() {
+ return 'fa-inbox';
+ }
+
public function newObject() {
return new PhabricatorMetaMTAMail();
}
diff --git a/src/applications/nuance/phid/NuanceItemPHIDType.php b/src/applications/nuance/phid/NuanceItemPHIDType.php
--- a/src/applications/nuance/phid/NuanceItemPHIDType.php
+++ b/src/applications/nuance/phid/NuanceItemPHIDType.php
@@ -8,6 +8,10 @@
return pht('Item');
}
+ public function getTypeIcon() {
+ return 'fa-paperclip';
+ }
+
public function newObject() {
return new NuanceItem();
}
diff --git a/src/applications/nuance/phid/NuanceQueuePHIDType.php b/src/applications/nuance/phid/NuanceQueuePHIDType.php
--- a/src/applications/nuance/phid/NuanceQueuePHIDType.php
+++ b/src/applications/nuance/phid/NuanceQueuePHIDType.php
@@ -8,6 +8,10 @@
return pht('Queue');
}
+ public function getTypeIcon() {
+ return 'fa-ellipsis-v';
+ }
+
public function newObject() {
return new NuanceQueue();
}
diff --git a/src/applications/nuance/phid/NuanceRequestorPHIDType.php b/src/applications/nuance/phid/NuanceRequestorPHIDType.php
--- a/src/applications/nuance/phid/NuanceRequestorPHIDType.php
+++ b/src/applications/nuance/phid/NuanceRequestorPHIDType.php
@@ -8,6 +8,10 @@
return pht('Requestor');
}
+ public function getTypeIcon() {
+ return 'fa-phone';
+ }
+
public function newObject() {
return new NuanceRequestor();
}
diff --git a/src/applications/nuance/phid/NuanceSourcePHIDType.php b/src/applications/nuance/phid/NuanceSourcePHIDType.php
--- a/src/applications/nuance/phid/NuanceSourcePHIDType.php
+++ b/src/applications/nuance/phid/NuanceSourcePHIDType.php
@@ -8,6 +8,10 @@
return pht('Source');
}
+ public function getTypeIcon() {
+ return 'fa-external-link';
+ }
+
public function newObject() {
return new NuanceSource();
}
diff --git a/src/applications/oauthserver/phid/PhabricatorOAuthServerClientAuthorizationPHIDType.php b/src/applications/oauthserver/phid/PhabricatorOAuthServerClientAuthorizationPHIDType.php
--- a/src/applications/oauthserver/phid/PhabricatorOAuthServerClientAuthorizationPHIDType.php
+++ b/src/applications/oauthserver/phid/PhabricatorOAuthServerClientAuthorizationPHIDType.php
@@ -9,6 +9,10 @@
return pht('OAuth Authorization');
}
+ public function getTypeIcon() {
+ return 'fa-certificate';
+ }
+
public function newObject() {
return new PhabricatorOAuthClientAuthorization();
}
diff --git a/src/applications/oauthserver/phid/PhabricatorOAuthServerClientPHIDType.php b/src/applications/oauthserver/phid/PhabricatorOAuthServerClientPHIDType.php
--- a/src/applications/oauthserver/phid/PhabricatorOAuthServerClientPHIDType.php
+++ b/src/applications/oauthserver/phid/PhabricatorOAuthServerClientPHIDType.php
@@ -8,6 +8,10 @@
return pht('OAuth Application');
}
+ public function getTypeIcon() {
+ return 'fa-child';
+ }
+
public function newObject() {
return new PhabricatorOAuthServerClient();
}
diff --git a/src/applications/owners/phid/PhabricatorOwnersPackagePHIDType.php b/src/applications/owners/phid/PhabricatorOwnersPackagePHIDType.php
--- a/src/applications/owners/phid/PhabricatorOwnersPackagePHIDType.php
+++ b/src/applications/owners/phid/PhabricatorOwnersPackagePHIDType.php
@@ -9,7 +9,7 @@
}
public function getTypeIcon() {
- return 'fa-list-alt';
+ return 'fa-dropbox';
}
public function newObject() {
diff --git a/src/applications/passphrase/phid/PassphraseCredentialPHIDType.php b/src/applications/passphrase/phid/PassphraseCredentialPHIDType.php
--- a/src/applications/passphrase/phid/PassphraseCredentialPHIDType.php
+++ b/src/applications/passphrase/phid/PassphraseCredentialPHIDType.php
@@ -8,6 +8,10 @@
return pht('Passphrase Credential');
}
+ public function getTypeIcon() {
+ return 'fa-key';
+ }
+
public function newObject() {
return new PassphraseCredential();
}
diff --git a/src/applications/paste/phid/PhabricatorPastePastePHIDType.php b/src/applications/paste/phid/PhabricatorPastePastePHIDType.php
--- a/src/applications/paste/phid/PhabricatorPastePastePHIDType.php
+++ b/src/applications/paste/phid/PhabricatorPastePastePHIDType.php
@@ -8,6 +8,10 @@
return pht('Paste');
}
+ public function getTypeIcon() {
+ return 'fa-paint-brush';
+ }
+
public function newObject() {
return new PhabricatorPaste();
}
diff --git a/src/applications/people/phid/PhabricatorPeopleExternalPHIDType.php b/src/applications/people/phid/PhabricatorPeopleExternalPHIDType.php
--- a/src/applications/people/phid/PhabricatorPeopleExternalPHIDType.php
+++ b/src/applications/people/phid/PhabricatorPeopleExternalPHIDType.php
@@ -8,6 +8,10 @@
return pht('External Account');
}
+ public function getTypeIcon() {
+ return 'fa-user-plus';
+ }
+
public function newObject() {
return new PhabricatorExternalAccount();
}
diff --git a/src/applications/people/phid/PhabricatorPeopleUserPHIDType.php b/src/applications/people/phid/PhabricatorPeopleUserPHIDType.php
--- a/src/applications/people/phid/PhabricatorPeopleUserPHIDType.php
+++ b/src/applications/people/phid/PhabricatorPeopleUserPHIDType.php
@@ -9,7 +9,7 @@
}
public function getTypeIcon() {
- return 'fa-user bluegrey';
+ return 'fa-user';
}
public function newObject() {
diff --git a/src/applications/phame/phid/PhabricatorPhameBlogPHIDType.php b/src/applications/phame/phid/PhabricatorPhameBlogPHIDType.php
--- a/src/applications/phame/phid/PhabricatorPhameBlogPHIDType.php
+++ b/src/applications/phame/phid/PhabricatorPhameBlogPHIDType.php
@@ -8,6 +8,10 @@
return pht('Phame Blog');
}
+ public function getTypeIcon() {
+ return 'fa-newspaper-o';
+ }
+
public function newObject() {
return new PhameBlog();
}
diff --git a/src/applications/phame/phid/PhabricatorPhamePostPHIDType.php b/src/applications/phame/phid/PhabricatorPhamePostPHIDType.php
--- a/src/applications/phame/phid/PhabricatorPhamePostPHIDType.php
+++ b/src/applications/phame/phid/PhabricatorPhamePostPHIDType.php
@@ -8,6 +8,10 @@
return pht('Phame Post');
}
+ public function getTypeIcon() {
+ return 'fa-sticky-note-o';
+ }
+
public function newObject() {
return new PhamePost();
}
diff --git a/src/applications/phid/PhabricatorMetaMTAApplicationEmailPHIDType.php b/src/applications/phid/PhabricatorMetaMTAApplicationEmailPHIDType.php
--- a/src/applications/phid/PhabricatorMetaMTAApplicationEmailPHIDType.php
+++ b/src/applications/phid/PhabricatorMetaMTAApplicationEmailPHIDType.php
@@ -10,7 +10,7 @@
}
public function getTypeIcon() {
- return 'fa-email bluegrey';
+ return 'fa-mail-reply-all';
}
public function newObject() {
diff --git a/src/applications/phlux/phid/PhluxVariablePHIDType.php b/src/applications/phlux/phid/PhluxVariablePHIDType.php
--- a/src/applications/phlux/phid/PhluxVariablePHIDType.php
+++ b/src/applications/phlux/phid/PhluxVariablePHIDType.php
@@ -8,6 +8,10 @@
return pht('Variable');
}
+ public function getTypeIcon() {
+ return 'fa-superscript';
+ }
+
public function newObject() {
return new PhluxVariable();
}
diff --git a/src/applications/pholio/phid/PholioImagePHIDType.php b/src/applications/pholio/phid/PholioImagePHIDType.php
--- a/src/applications/pholio/phid/PholioImagePHIDType.php
+++ b/src/applications/pholio/phid/PholioImagePHIDType.php
@@ -8,6 +8,10 @@
return pht('Image');
}
+ public function getTypeIcon() {
+ return 'fa-file-image-o';
+ }
+
public function newObject() {
return new PholioImage();
}
diff --git a/src/applications/pholio/phid/PholioMockPHIDType.php b/src/applications/pholio/phid/PholioMockPHIDType.php
--- a/src/applications/pholio/phid/PholioMockPHIDType.php
+++ b/src/applications/pholio/phid/PholioMockPHIDType.php
@@ -8,6 +8,10 @@
return pht('Pholio Mock');
}
+ public function getTypeIcon() {
+ return 'fa-pencil';
+ }
+
public function newObject() {
return new PholioMock();
}
diff --git a/src/applications/phortune/phid/PhortuneAccountPHIDType.php b/src/applications/phortune/phid/PhortuneAccountPHIDType.php
--- a/src/applications/phortune/phid/PhortuneAccountPHIDType.php
+++ b/src/applications/phortune/phid/PhortuneAccountPHIDType.php
@@ -8,6 +8,10 @@
return pht('Phortune Account');
}
+ public function getFontIcon() {
+ return 'fa-institution';
+ }
+
public function newObject() {
return new PhortuneAccount();
}
diff --git a/src/applications/phortune/phid/PhortuneCartPHIDType.php b/src/applications/phortune/phid/PhortuneCartPHIDType.php
--- a/src/applications/phortune/phid/PhortuneCartPHIDType.php
+++ b/src/applications/phortune/phid/PhortuneCartPHIDType.php
@@ -8,6 +8,10 @@
return pht('Phortune Cart');
}
+ public function getTypeIcon() {
+ return 'fa-shopping-cart';
+ }
+
public function newObject() {
return new PhortuneCart();
}
diff --git a/src/applications/phortune/phid/PhortuneChargePHIDType.php b/src/applications/phortune/phid/PhortuneChargePHIDType.php
--- a/src/applications/phortune/phid/PhortuneChargePHIDType.php
+++ b/src/applications/phortune/phid/PhortuneChargePHIDType.php
@@ -8,6 +8,10 @@
return pht('Phortune Charge');
}
+ public function getTypeIcon() {
+ return 'fa-usd';
+ }
+
public function newObject() {
return new PhortuneCharge();
}
diff --git a/src/applications/phortune/phid/PhortuneMerchantPHIDType.php b/src/applications/phortune/phid/PhortuneMerchantPHIDType.php
--- a/src/applications/phortune/phid/PhortuneMerchantPHIDType.php
+++ b/src/applications/phortune/phid/PhortuneMerchantPHIDType.php
@@ -8,6 +8,10 @@
return pht('Phortune Merchant');
}
+ public function getTypeIcon() {
+ return 'fa-amazon';
+ }
+
public function newObject() {
return new PhortuneMerchant();
}
diff --git a/src/applications/phortune/phid/PhortunePaymentMethodPHIDType.php b/src/applications/phortune/phid/PhortunePaymentMethodPHIDType.php
--- a/src/applications/phortune/phid/PhortunePaymentMethodPHIDType.php
+++ b/src/applications/phortune/phid/PhortunePaymentMethodPHIDType.php
@@ -8,6 +8,10 @@
return pht('Phortune Payment Method');
}
+ public function getTypeIcon() {
+ return 'fa-cc-visa';
+ }
+
public function newObject() {
return new PhortunePaymentMethod();
}
diff --git a/src/applications/phortune/phid/PhortunePaymentProviderPHIDType.php b/src/applications/phortune/phid/PhortunePaymentProviderPHIDType.php
--- a/src/applications/phortune/phid/PhortunePaymentProviderPHIDType.php
+++ b/src/applications/phortune/phid/PhortunePaymentProviderPHIDType.php
@@ -8,6 +8,10 @@
return pht('Phortune Payment Provider');
}
+ public function getFontIcon() {
+ return 'fa-paypal';
+ }
+
public function newObject() {
return new PhortunePaymentProviderConfig();
}
diff --git a/src/applications/phortune/phid/PhortuneProductPHIDType.php b/src/applications/phortune/phid/PhortuneProductPHIDType.php
--- a/src/applications/phortune/phid/PhortuneProductPHIDType.php
+++ b/src/applications/phortune/phid/PhortuneProductPHIDType.php
@@ -8,6 +8,10 @@
return pht('Phortune Product');
}
+ public function getTypeIcon() {
+ return 'fa-barcode';
+ }
+
public function newObject() {
return new PhortuneProduct();
}
diff --git a/src/applications/phortune/phid/PhortunePurchasePHIDType.php b/src/applications/phortune/phid/PhortunePurchasePHIDType.php
--- a/src/applications/phortune/phid/PhortunePurchasePHIDType.php
+++ b/src/applications/phortune/phid/PhortunePurchasePHIDType.php
@@ -8,6 +8,10 @@
return pht('Phortune Purchase');
}
+ public function getTypeIcon() {
+ return 'fa-cart-plus';
+ }
+
public function newObject() {
return new PhortunePurchase();
}
diff --git a/src/applications/phortune/phid/PhortuneSubscriptionPHIDType.php b/src/applications/phortune/phid/PhortuneSubscriptionPHIDType.php
--- a/src/applications/phortune/phid/PhortuneSubscriptionPHIDType.php
+++ b/src/applications/phortune/phid/PhortuneSubscriptionPHIDType.php
@@ -8,6 +8,10 @@
return pht('Phortune Subscription');
}
+ public function getTypeIcon() {
+ return 'fa-recycle';
+ }
+
public function newObject() {
return new PhortuneSubscription();
}
diff --git a/src/applications/phragment/application/PhabricatorPhragmentApplication.php b/src/applications/phragment/application/PhabricatorPhragmentApplication.php
--- a/src/applications/phragment/application/PhabricatorPhragmentApplication.php
+++ b/src/applications/phragment/application/PhabricatorPhragmentApplication.php
@@ -15,7 +15,7 @@
}
public function getFontIcon() {
- return 'fa-floppy-o';
+ return 'fa-hdd-o';
}
public function getTitleGlyph() {
diff --git a/src/applications/phragment/phid/PhragmentFragmentPHIDType.php b/src/applications/phragment/phid/PhragmentFragmentPHIDType.php
--- a/src/applications/phragment/phid/PhragmentFragmentPHIDType.php
+++ b/src/applications/phragment/phid/PhragmentFragmentPHIDType.php
@@ -8,6 +8,10 @@
return pht('Fragment');
}
+ public function getTypeIcon() {
+ return 'fa-puzzle-piece';
+ }
+
public function newObject() {
return new PhragmentFragment();
}
diff --git a/src/applications/phragment/phid/PhragmentFragmentVersionPHIDType.php b/src/applications/phragment/phid/PhragmentFragmentVersionPHIDType.php
--- a/src/applications/phragment/phid/PhragmentFragmentVersionPHIDType.php
+++ b/src/applications/phragment/phid/PhragmentFragmentVersionPHIDType.php
@@ -8,6 +8,10 @@
return pht('Fragment Version');
}
+ public function getTypeIcon() {
+ return 'fa-tag';
+ }
+
public function newObject() {
return new PhragmentFragmentVersion();
}
diff --git a/src/applications/phragment/phid/PhragmentSnapshotPHIDType.php b/src/applications/phragment/phid/PhragmentSnapshotPHIDType.php
--- a/src/applications/phragment/phid/PhragmentSnapshotPHIDType.php
+++ b/src/applications/phragment/phid/PhragmentSnapshotPHIDType.php
@@ -8,6 +8,10 @@
return pht('Snapshot');
}
+ public function getTypeIcon() {
+ return 'fa-clone';
+ }
+
public function newObject() {
return new PhragmentSnapshot();
}
diff --git a/src/applications/phriction/phid/PhrictionDocumentPHIDType.php b/src/applications/phriction/phid/PhrictionDocumentPHIDType.php
--- a/src/applications/phriction/phid/PhrictionDocumentPHIDType.php
+++ b/src/applications/phriction/phid/PhrictionDocumentPHIDType.php
@@ -8,6 +8,10 @@
return pht('Phriction Wiki Document');
}
+ public function getTypeIcon() {
+ return 'fa-bookmark';
+ }
+
public function newObject() {
return new PhrictionDocument();
}
diff --git a/src/applications/phurl/phid/PhabricatorPhurlURLPHIDType.php b/src/applications/phurl/phid/PhabricatorPhurlURLPHIDType.php
--- a/src/applications/phurl/phid/PhabricatorPhurlURLPHIDType.php
+++ b/src/applications/phurl/phid/PhabricatorPhurlURLPHIDType.php
@@ -8,6 +8,10 @@
return pht('URL');
}
+ public function getTypeIcon() {
+ return 'fa-link';
+ }
+
public function newObject() {
return new PhabricatorPhurlURL();
}
diff --git a/src/applications/policy/application/PhabricatorPolicyApplication.php b/src/applications/policy/application/PhabricatorPolicyApplication.php
--- a/src/applications/policy/application/PhabricatorPolicyApplication.php
+++ b/src/applications/policy/application/PhabricatorPolicyApplication.php
@@ -14,6 +14,10 @@
return false;
}
+ public function getFontIcon() {
+ return 'fa-eye';
+ }
+
public function getRoutes() {
return array(
'/policy/' => array(
diff --git a/src/applications/policy/phid/PhabricatorPolicyPHIDTypePolicy.php b/src/applications/policy/phid/PhabricatorPolicyPHIDTypePolicy.php
--- a/src/applications/policy/phid/PhabricatorPolicyPHIDTypePolicy.php
+++ b/src/applications/policy/phid/PhabricatorPolicyPHIDTypePolicy.php
@@ -8,6 +8,10 @@
return pht('Policy');
}
+ public function getTypeIcon() {
+ return 'fa-eyedropper';
+ }
+
public function newObject() {
return new PhabricatorPolicy();
}
diff --git a/src/applications/ponder/phid/PonderAnswerPHIDType.php b/src/applications/ponder/phid/PonderAnswerPHIDType.php
--- a/src/applications/ponder/phid/PonderAnswerPHIDType.php
+++ b/src/applications/ponder/phid/PonderAnswerPHIDType.php
@@ -8,6 +8,10 @@
return pht('Ponder Answer');
}
+ public function getTypeIcon() {
+ return 'fa-graduation-cap';
+ }
+
public function getPHIDTypeApplicationClass() {
return 'PhabricatorPonderApplication';
}
diff --git a/src/applications/ponder/phid/PonderQuestionPHIDType.php b/src/applications/ponder/phid/PonderQuestionPHIDType.php
--- a/src/applications/ponder/phid/PonderQuestionPHIDType.php
+++ b/src/applications/ponder/phid/PonderQuestionPHIDType.php
@@ -8,6 +8,10 @@
return pht('Ponder Question');
}
+ public function getTypeIcon() {
+ return 'fa-question';
+ }
+
public function newObject() {
return new PonderQuestion();
}
diff --git a/src/applications/project/phid/PhabricatorProjectProjectPHIDType.php b/src/applications/project/phid/PhabricatorProjectProjectPHIDType.php
--- a/src/applications/project/phid/PhabricatorProjectProjectPHIDType.php
+++ b/src/applications/project/phid/PhabricatorProjectProjectPHIDType.php
@@ -9,7 +9,7 @@
}
public function getTypeIcon() {
- return 'fa-briefcase bluegrey';
+ return 'fa-object-group';
}
public function newObject() {
diff --git a/src/applications/releeph/phid/ReleephBranchPHIDType.php b/src/applications/releeph/phid/ReleephBranchPHIDType.php
--- a/src/applications/releeph/phid/ReleephBranchPHIDType.php
+++ b/src/applications/releeph/phid/ReleephBranchPHIDType.php
@@ -8,6 +8,10 @@
return pht('Releeph Branch');
}
+ public function getTypeIcon() {
+ return 'fa-code-fork';
+ }
+
public function newObject() {
return new ReleephBranch();
}
diff --git a/src/applications/releeph/phid/ReleephProductPHIDType.php b/src/applications/releeph/phid/ReleephProductPHIDType.php
--- a/src/applications/releeph/phid/ReleephProductPHIDType.php
+++ b/src/applications/releeph/phid/ReleephProductPHIDType.php
@@ -8,6 +8,10 @@
return pht('Releeph Product');
}
+ public function getTypeIcon() {
+ return 'fa-bitbucket';
+ }
+
public function newObject() {
return new ReleephProject();
}
diff --git a/src/applications/releeph/phid/ReleephRequestPHIDType.php b/src/applications/releeph/phid/ReleephRequestPHIDType.php
--- a/src/applications/releeph/phid/ReleephRequestPHIDType.php
+++ b/src/applications/releeph/phid/ReleephRequestPHIDType.php
@@ -8,6 +8,10 @@
return pht('Releeph Request');
}
+ public function getTypeIcon() {
+ return 'fa-download';
+ }
+
public function newObject() {
return new ReleephRequest();
}
diff --git a/src/applications/repository/phid/PhabricatorRepositoryCommitPHIDType.php b/src/applications/repository/phid/PhabricatorRepositoryCommitPHIDType.php
--- a/src/applications/repository/phid/PhabricatorRepositoryCommitPHIDType.php
+++ b/src/applications/repository/phid/PhabricatorRepositoryCommitPHIDType.php
@@ -8,6 +8,10 @@
return pht('Diffusion Commit');
}
+ public function getTypeIcon() {
+ return 'fa-file-code-o';
+ }
+
public function newObject() {
return new PhabricatorRepositoryCommit();
}
diff --git a/src/applications/repository/phid/PhabricatorRepositoryMirrorPHIDType.php b/src/applications/repository/phid/PhabricatorRepositoryMirrorPHIDType.php
--- a/src/applications/repository/phid/PhabricatorRepositoryMirrorPHIDType.php
+++ b/src/applications/repository/phid/PhabricatorRepositoryMirrorPHIDType.php
@@ -8,6 +8,10 @@
return pht('Repository Mirror');
}
+ public function getTypeIcon() {
+ return 'fa-cloud-upload';
+ }
+
public function newObject() {
return new PhabricatorRepositoryMirror();
}
diff --git a/src/applications/repository/phid/PhabricatorRepositoryPushEventPHIDType.php b/src/applications/repository/phid/PhabricatorRepositoryPushEventPHIDType.php
--- a/src/applications/repository/phid/PhabricatorRepositoryPushEventPHIDType.php
+++ b/src/applications/repository/phid/PhabricatorRepositoryPushEventPHIDType.php
@@ -8,6 +8,10 @@
return pht('Push Event');
}
+ public function getTypeIcon() {
+ return 'fa-calendar-plus-o';
+ }
+
public function newObject() {
return new PhabricatorRepositoryPushEvent();
}
diff --git a/src/applications/repository/phid/PhabricatorRepositoryPushLogPHIDType.php b/src/applications/repository/phid/PhabricatorRepositoryPushLogPHIDType.php
--- a/src/applications/repository/phid/PhabricatorRepositoryPushLogPHIDType.php
+++ b/src/applications/repository/phid/PhabricatorRepositoryPushLogPHIDType.php
@@ -8,6 +8,10 @@
return pht('Push Log');
}
+ public function getTypeIcon() {
+ return 'fa-list-alt';
+ }
+
public function newObject() {
return new PhabricatorRepositoryPushLog();
}
diff --git a/src/applications/slowvote/phid/PhabricatorSlowvotePollPHIDType.php b/src/applications/slowvote/phid/PhabricatorSlowvotePollPHIDType.php
--- a/src/applications/slowvote/phid/PhabricatorSlowvotePollPHIDType.php
+++ b/src/applications/slowvote/phid/PhabricatorSlowvotePollPHIDType.php
@@ -8,6 +8,10 @@
return pht('Slowvote Poll');
}
+ public function getTypeIcon() {
+ return 'fa-check-square-o';
+ }
+
public function newObject() {
return new PhabricatorSlowvotePoll();
}
diff --git a/src/applications/spaces/application/PhabricatorSpacesApplication.php b/src/applications/spaces/application/PhabricatorSpacesApplication.php
--- a/src/applications/spaces/application/PhabricatorSpacesApplication.php
+++ b/src/applications/spaces/application/PhabricatorSpacesApplication.php
@@ -15,7 +15,7 @@
}
public function getFontIcon() {
- return 'fa-th-large';
+ return 'fa-th';
}
public function getTitleGlyph() {
diff --git a/src/applications/spaces/phid/PhabricatorSpacesNamespacePHIDType.php b/src/applications/spaces/phid/PhabricatorSpacesNamespacePHIDType.php
--- a/src/applications/spaces/phid/PhabricatorSpacesNamespacePHIDType.php
+++ b/src/applications/spaces/phid/PhabricatorSpacesNamespacePHIDType.php
@@ -9,6 +9,10 @@
return pht('Space');
}
+ public function getTypeIcon() {
+ return 'fa-th-large';
+ }
+
public function newObject() {
return new PhabricatorSpacesNamespace();
}
diff --git a/src/applications/tokens/phid/PhabricatorTokenTokenPHIDType.php b/src/applications/tokens/phid/PhabricatorTokenTokenPHIDType.php
--- a/src/applications/tokens/phid/PhabricatorTokenTokenPHIDType.php
+++ b/src/applications/tokens/phid/PhabricatorTokenTokenPHIDType.php
@@ -8,6 +8,10 @@
return pht('Token');
}
+ public function getTypeIcon() {
+ return 'fa-gittip';
+ }
+
public function newObject() {
return new PhabricatorToken();
}
diff --git a/src/applications/transactions/application/PhabricatorTransactionsApplication.php b/src/applications/transactions/application/PhabricatorTransactionsApplication.php
--- a/src/applications/transactions/application/PhabricatorTransactionsApplication.php
+++ b/src/applications/transactions/application/PhabricatorTransactionsApplication.php
@@ -14,6 +14,10 @@
return false;
}
+ public function getFontIcon() {
+ return 'fa-suitcase';
+ }
+
public function getRoutes() {
return array(
'/transactions/' => array(
diff --git a/src/applications/transactions/phid/PhabricatorApplicationTransactionTransactionPHIDType.php b/src/applications/transactions/phid/PhabricatorApplicationTransactionTransactionPHIDType.php
--- a/src/applications/transactions/phid/PhabricatorApplicationTransactionTransactionPHIDType.php
+++ b/src/applications/transactions/phid/PhabricatorApplicationTransactionTransactionPHIDType.php
@@ -9,6 +9,10 @@
return pht('Transaction');
}
+ public function getTypeIcon() {
+ return 'fa-spinner';
+ }
+
public function newObject() {
// NOTE: We could produce an object here, but we'd need to take a PHID type
// and subtype to do so. Currently, we never write edges to transactions,
diff --git a/src/applications/transactions/phid/PhabricatorEditEngineConfigurationPHIDType.php b/src/applications/transactions/phid/PhabricatorEditEngineConfigurationPHIDType.php
--- a/src/applications/transactions/phid/PhabricatorEditEngineConfigurationPHIDType.php
+++ b/src/applications/transactions/phid/PhabricatorEditEngineConfigurationPHIDType.php
@@ -9,6 +9,10 @@
return pht('Edit Configuration');
}
+ public function getTypeIcon() {
+ return 'fa-wrench';
+ }
+
public function newObject() {
return new PhabricatorEditEngineConfiguration();
}
diff --git a/src/infrastructure/daemon/workers/phid/PhabricatorWorkerBulkJobPHIDType.php b/src/infrastructure/daemon/workers/phid/PhabricatorWorkerBulkJobPHIDType.php
--- a/src/infrastructure/daemon/workers/phid/PhabricatorWorkerBulkJobPHIDType.php
+++ b/src/infrastructure/daemon/workers/phid/PhabricatorWorkerBulkJobPHIDType.php
@@ -8,6 +8,10 @@
return pht('Bulk Job');
}
+ public function getTypeIcon() {
+ return 'fa-lightbulb-o';
+ }
+
public function newObject() {
return new PhabricatorWorkerBulkJob();
}
diff --git a/src/infrastructure/daemon/workers/phid/PhabricatorWorkerTriggerPHIDType.php b/src/infrastructure/daemon/workers/phid/PhabricatorWorkerTriggerPHIDType.php
--- a/src/infrastructure/daemon/workers/phid/PhabricatorWorkerTriggerPHIDType.php
+++ b/src/infrastructure/daemon/workers/phid/PhabricatorWorkerTriggerPHIDType.php
@@ -8,6 +8,10 @@
return pht('Trigger');
}
+ public function getTypeIcon() {
+ return 'fa-flag-checkered';
+ }
+
public function newObject() {
return new PhabricatorWorkerTrigger();
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Thu, Jan 9, 12:18 PM (5 h, 22 m)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
6978791
Default Alt Text
D14482.diff (44 KB)
Attached To
Mode
D14482: Improve FontAwesome icons
Attached
Detach File
Event Timeline
Log In to Comment