Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/src/infrastructure/customfield/herald/PhabricatorCustomFieldHeraldActionGroup.php
12241 views
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
}
17
18