@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<?php
2
3final class PhabricatorProfileMenuItemConfigurationTransaction
4 extends PhabricatorApplicationTransaction {
5
6 const TYPE_PROPERTY = 'profilepanel.property';
7 const TYPE_ORDER = 'profilepanel.order';
8 const TYPE_VISIBILITY = 'profilepanel.visibility';
9
10 public function getApplicationName() {
11 return 'search';
12 }
13
14 public function getTableName() {
15 // At least for now, this object uses an older table name.
16 return 'search_profilepanelconfigurationtransaction';
17 }
18
19 public function getApplicationTransactionType() {
20 return PhabricatorProfileMenuItemPHIDType::TYPECONST;
21 }
22
23}