mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-28 17:52:43 +01:00
16 lines
240 B
PHP
16 lines
240 B
PHP
|
<?php
|
||
|
|
||
|
final class HeraldEditFieldGroup extends HeraldFieldGroup {
|
||
|
|
||
|
const FIELDGROUPKEY = 'edit';
|
||
|
|
||
|
public function getGroupLabel() {
|
||
|
return pht('Edit Attributes');
|
||
|
}
|
||
|
|
||
|
protected function getGroupOrder() {
|
||
|
return 4000;
|
||
|
}
|
||
|
|
||
|
}
|