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

Remove unused CalendarColors class

Summary: This class is no longer used after D12850.

Test Plan: `grep`

Reviewers: epriestley, #blessed_reviewers

Reviewed By: epriestley, #blessed_reviewers

Subscribers: Korvin, epriestley

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

-35
-3
src/__phutil_library_map__.php
··· 176 176 'AuditConduitAPIMethod' => 'applications/audit/conduit/AuditConduitAPIMethod.php', 177 177 'AuditQueryConduitAPIMethod' => 'applications/audit/conduit/AuditQueryConduitAPIMethod.php', 178 178 'AuthManageProvidersCapability' => 'applications/auth/capability/AuthManageProvidersCapability.php', 179 - 'CalendarColors' => 'applications/calendar/constants/CalendarColors.php', 180 - 'CalendarConstants' => 'applications/calendar/constants/CalendarConstants.php', 181 179 'CalendarTimeUtil' => 'applications/calendar/util/CalendarTimeUtil.php', 182 180 'CalendarTimeUtilTestCase' => 'applications/calendar/__tests__/CalendarTimeUtilTestCase.php', 183 181 'CelerityAPI' => 'applications/celerity/CelerityAPI.php', ··· 3445 3443 'AuditConduitAPIMethod' => 'ConduitAPIMethod', 3446 3444 'AuditQueryConduitAPIMethod' => 'AuditConduitAPIMethod', 3447 3445 'AuthManageProvidersCapability' => 'PhabricatorPolicyCapability', 3448 - 'CalendarColors' => 'CalendarConstants', 3449 3446 'CalendarTimeUtilTestCase' => 'PhabricatorTestCase', 3450 3447 'CelerityManagementMapWorkflow' => 'CelerityManagementWorkflow', 3451 3448 'CelerityManagementWorkflow' => 'PhabricatorManagementWorkflow',
-29
src/applications/calendar/constants/CalendarColors.php
··· 1 - <?php 2 - 3 - final class CalendarColors extends CalendarConstants { 4 - 5 - const COLOR_RED = 'red'; 6 - const COLOR_ORANGE = 'orange'; 7 - const COLOR_YELLOW = 'yellow'; 8 - const COLOR_GREEN = 'green'; 9 - const COLOR_BLUE = 'blue'; 10 - const COLOR_SKY = 'sky'; 11 - const COLOR_INDIGO = 'indigo'; 12 - const COLOR_VIOLET = 'violet'; 13 - const COLOR_GREY = 'grey'; 14 - 15 - public static function getColors() { 16 - return array( 17 - self::COLOR_SKY, 18 - self::COLOR_GREEN, 19 - self::COLOR_VIOLET, 20 - self::COLOR_ORANGE, 21 - self::COLOR_BLUE, 22 - self::COLOR_INDIGO, 23 - self::COLOR_RED, 24 - self::COLOR_YELLOW, 25 - self::COLOR_GREY, 26 - ); 27 - } 28 - 29 - }
-3
src/applications/calendar/constants/CalendarConstants.php
··· 1 - <?php 2 - 3 - abstract class CalendarConstants {}