mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-01 03:02:43 +01:00
16 lines
254 B
PHP
16 lines
254 B
PHP
|
<?php
|
||
|
|
||
|
final class HeraldSupportFieldGroup extends HeraldFieldGroup {
|
||
|
|
||
|
const FIELDGROUPKEY = 'support';
|
||
|
|
||
|
public function getGroupLabel() {
|
||
|
return pht('Supporting Applications');
|
||
|
}
|
||
|
|
||
|
protected function getGroupOrder() {
|
||
|
return 3000;
|
||
|
}
|
||
|
|
||
|
}
|