mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 03:12:41 +01:00
473693786b
Summary: Ref T10054. I made this a dropdown (currently: "Visible" or "Disabled") since I imagine we //miiiight// want to add a "Hidden, but click 'More' to reveal" state or do other special stuff in this vein. Not 100% sold on that but seemed within the realm of plausibility. Test Plan: {F1060759} Reviewers: chad Reviewed By: chad Maniphest Tasks: T10054 Differential Revision: https://secure.phabricator.com/D15012
22 lines
524 B
PHP
22 lines
524 B
PHP
<?php
|
|
|
|
final class PhabricatorProfilePanelConfigurationTransaction
|
|
extends PhabricatorApplicationTransaction {
|
|
|
|
const TYPE_PROPERTY = 'profilepanel.property';
|
|
const TYPE_ORDER = 'profilepanel.order';
|
|
const TYPE_VISIBILITY = 'profilepanel.visibility';
|
|
|
|
public function getApplicationName() {
|
|
return 'search';
|
|
}
|
|
|
|
public function getApplicationTransactionType() {
|
|
return PhabricatorProfilePanelPHIDType::TYPECONST;
|
|
}
|
|
|
|
public function getApplicationTransactionCommentObject() {
|
|
return null;
|
|
}
|
|
|
|
}
|