repo.or.cz
/
phabricator.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Correct Aphlict websocket URI construction after PHP8 compatibility changes
[phabricator.git]
/
src
/
infrastructure
/
customfield
/
herald
/
PhabricatorCustomFieldHeraldActionGroup.php
blob
b8f16ab2023f7a9fb45bcd41c7cee14de91244c8
1
<
?php
2
3
final class
PhabricatorCustomFieldHeraldActionGroup
4
extends
HeraldActionGroup
{
5
6
const
ACTIONGROUPKEY
=
'customfield'
;
7
8
public function
getGroupLabel
() {
9
return
pht
(
'Custom Fields'
);
10
}
11
12
protected function
getGroupOrder
() {
13
return
2000
;
14
}
15
16
}