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

Make "Core Applications" more reasonable

Summary: Ref T11132, cleaning up what "Core Applications" means.

Test Plan: Visit `/applications/`, see less poseurs.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

Maniphest Tasks: T11132

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

+28
+4
src/applications/calendar/application/PhabricatorCalendarApplication.php
··· 28 28 return "\xE2\x8C\xA8"; 29 29 } 30 30 31 + public function getApplicationGroup() { 32 + return self::GROUP_UTILITIES; 33 + } 34 + 31 35 public function isPrototype() { 32 36 return true; 33 37 }
+4
src/applications/feed/application/PhabricatorFeedApplication.php
··· 18 18 return 'fa-newspaper-o'; 19 19 } 20 20 21 + public function getApplicationGroup() { 22 + return self::GROUP_UTILITIES; 23 + } 24 + 21 25 public function canUninstall() { 22 26 return false; 23 27 }
+4
src/applications/packages/application/PhabricatorPackagesApplication.php
··· 22 22 return 'fa-gift'; 23 23 } 24 24 25 + public function getApplicationGroup() { 26 + return self::GROUP_UTILITIES; 27 + } 28 + 25 29 public function isPrototype() { 26 30 return true; 27 31 }
+4
src/applications/people/application/PhabricatorPeopleApplication.php
··· 30 30 return pht('Sort of a social utility.'); 31 31 } 32 32 33 + public function getApplicationGroup() { 34 + return self::GROUP_UTILITIES; 35 + } 36 + 33 37 public function canUninstall() { 34 38 return false; 35 39 }
+4
src/applications/phurl/application/PhabricatorPhurlApplication.php
··· 26 26 return true; 27 27 } 28 28 29 + public function getApplicationGroup() { 30 + return self::GROUP_UTILITIES; 31 + } 32 + 29 33 public function getRemarkupRules() { 30 34 return array( 31 35 new PhabricatorPhurlRemarkupRule(),
+4
src/applications/ponder/application/PhabricatorPonderApplication.php
··· 34 34 ); 35 35 } 36 36 37 + public function getApplicationGroup() { 38 + return self::GROUP_UTILITIES; 39 + } 40 + 37 41 public function supportsEmailIntegration() { 38 42 return true; 39 43 }
+4
src/applications/releeph/application/PhabricatorReleephApplication.php
··· 18 18 return 'fa-flag-checkered'; 19 19 } 20 20 21 + public function getApplicationGroup() { 22 + return self::GROUP_UTILITIES; 23 + } 24 + 21 25 public function isPrototype() { 22 26 return true; 23 27 }