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

Rename "ProfilePanelEditEngine" to "ProfileMenuEditEngine"

Summary: Ref T11957.

Test Plan: Edited profile menus, grepped for renamed symbol.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T11957

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

+7 -7
+2 -2
src/__phutil_library_map__.php
··· 3364 3364 'PhabricatorPolicyType' => 'applications/policy/constants/PhabricatorPolicyType.php', 3365 3365 'PhabricatorPonderApplication' => 'applications/ponder/application/PhabricatorPonderApplication.php', 3366 3366 'PhabricatorProfileMenuCollapsedSetting' => 'applications/settings/setting/PhabricatorProfileMenuCollapsedSetting.php', 3367 + 'PhabricatorProfileMenuEditEngine' => 'applications/search/editor/PhabricatorProfileMenuEditEngine.php', 3367 3368 'PhabricatorProfileMenuEngine' => 'applications/search/engine/PhabricatorProfileMenuEngine.php', 3368 3369 'PhabricatorProfilePanel' => 'applications/search/profilepanel/PhabricatorProfilePanel.php', 3369 3370 'PhabricatorProfilePanelConfiguration' => 'applications/search/storage/PhabricatorProfilePanelConfiguration.php', 3370 3371 'PhabricatorProfilePanelConfigurationQuery' => 'applications/search/query/PhabricatorProfilePanelConfigurationQuery.php', 3371 3372 'PhabricatorProfilePanelConfigurationTransaction' => 'applications/search/storage/PhabricatorProfilePanelConfigurationTransaction.php', 3372 3373 'PhabricatorProfilePanelConfigurationTransactionQuery' => 'applications/search/query/PhabricatorProfilePanelConfigurationTransactionQuery.php', 3373 - 'PhabricatorProfilePanelEditEngine' => 'applications/search/editor/PhabricatorProfilePanelEditEngine.php', 3374 3374 'PhabricatorProfilePanelEditor' => 'applications/search/editor/PhabricatorProfilePanelEditor.php', 3375 3375 'PhabricatorProfilePanelIconSet' => 'applications/search/profilepanel/PhabricatorProfilePanelIconSet.php', 3376 3376 'PhabricatorProfilePanelPHIDType' => 'applications/search/phidtype/PhabricatorProfilePanelPHIDType.php', ··· 8450 8450 'PhabricatorPolicyType' => 'PhabricatorPolicyConstants', 8451 8451 'PhabricatorPonderApplication' => 'PhabricatorApplication', 8452 8452 'PhabricatorProfileMenuCollapsedSetting' => 'PhabricatorInternalSetting', 8453 + 'PhabricatorProfileMenuEditEngine' => 'PhabricatorEditEngine', 8453 8454 'PhabricatorProfileMenuEngine' => 'Phobject', 8454 8455 'PhabricatorProfilePanel' => 'Phobject', 8455 8456 'PhabricatorProfilePanelConfiguration' => array( ··· 8461 8462 'PhabricatorProfilePanelConfigurationQuery' => 'PhabricatorCursorPagedPolicyAwareQuery', 8462 8463 'PhabricatorProfilePanelConfigurationTransaction' => 'PhabricatorApplicationTransaction', 8463 8464 'PhabricatorProfilePanelConfigurationTransactionQuery' => 'PhabricatorApplicationTransactionQuery', 8464 - 'PhabricatorProfilePanelEditEngine' => 'PhabricatorEditEngine', 8465 8465 'PhabricatorProfilePanelEditor' => 'PhabricatorApplicationTransactionEditor', 8466 8466 'PhabricatorProfilePanelIconSet' => 'PhabricatorIconSet', 8467 8467 'PhabricatorProfilePanelPHIDType' => 'PhabricatorPHIDType',
+2 -2
src/applications/search/editor/PhabricatorProfilePanelEditEngine.php src/applications/search/editor/PhabricatorProfileMenuEditEngine.php
··· 1 1 <?php 2 2 3 - final class PhabricatorProfilePanelEditEngine 3 + final class PhabricatorProfileMenuEditEngine 4 4 extends PhabricatorEditEngine { 5 5 6 - const ENGINECONST = 'search.profilepanel'; 6 + const ENGINECONST = 'search.profilemenu'; 7 7 8 8 private $menuEngine; 9 9 private $profileObject;
+3 -3
src/applications/search/engine/PhabricatorProfileMenuEngine.php
··· 708 708 709 709 $controller = $this->getController(); 710 710 711 - return id(new PhabricatorProfilePanelEditEngine()) 711 + return id(new PhabricatorProfileMenuEditEngine()) 712 712 ->setMenuEngine($this) 713 713 ->setProfileObject($object) 714 714 ->setNewPanelConfiguration($configuration) ··· 721 721 $object = $this->getProfileObject(); 722 722 $controller = $this->getController(); 723 723 724 - return id(new PhabricatorProfilePanelEditEngine()) 724 + return id(new PhabricatorProfileMenuEditEngine()) 725 725 ->setMenuEngine($this) 726 726 ->setProfileObject($object) 727 727 ->setController($controller) ··· 751 751 $object = $this->getProfileObject(); 752 752 $controller = $this->getController(); 753 753 754 - return id(new PhabricatorProfilePanelEditEngine()) 754 + return id(new PhabricatorProfileMenuEditEngine()) 755 755 ->setIsBuiltin(true) 756 756 ->setMenuEngine($this) 757 757 ->setProfileObject($object)