3 final class PhabricatorProfileMenuItemIndexEngineExtension
4 extends PhabricatorEdgeIndexEngineExtension
{
6 const EXTENSIONKEY
= 'profile.menu.item';
8 public function getExtensionName() {
9 return pht('Profile Menu Item');
12 public function shouldIndexObject($object) {
13 if (!($object instanceof PhabricatorProfileMenuItemConfiguration
)) {
20 protected function getIndexEdgeType() {
21 return PhabricatorProfileMenuItemAffectsObjectEdgeType
::EDGECONST
;
24 protected function getIndexDestinationPHIDs($object) {
25 return $object->getAffectedObjectPHIDs();