2016-01-12 19:27:39 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
final class PhabricatorProfilePanelConfigurationTransaction
|
|
|
|
extends PhabricatorApplicationTransaction {
|
|
|
|
|
2016-01-13 00:06:43 +01:00
|
|
|
const TYPE_PROPERTY = 'profilepanel.property';
|
2016-01-13 18:40:27 +01:00
|
|
|
const TYPE_ORDER = 'profilepanel.order';
|
2016-01-13 19:40:31 +01:00
|
|
|
const TYPE_VISIBILITY = 'profilepanel.visibility';
|
2016-01-13 00:06:43 +01:00
|
|
|
|
2016-01-12 19:27:39 +01:00
|
|
|
public function getApplicationName() {
|
|
|
|
return 'search';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getApplicationTransactionType() {
|
|
|
|
return PhabricatorProfilePanelPHIDType::TYPECONST;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getApplicationTransactionCommentObject() {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|