mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-21 20:22:12 +01:00
0306eb70ed
Summary: Ref T8726. Some adapters now have a large number of fields, and we lost the sort-of-human-readable implicit ordering when fields were modularized. Instead, group and sort fields. Test Plan: {F603066} Reviewers: btrahan, chad Reviewed By: chad Subscribers: epriestley Maniphest Tasks: T8726 Differential Revision: https://secure.phabricator.com/D13619
15 lines
262 B
PHP
15 lines
262 B
PHP
<?php
|
|
|
|
final class DiffusionChangeHeraldFieldGroup extends HeraldFieldGroup {
|
|
|
|
const FIELDGROUPKEY = 'diffusion.change';
|
|
|
|
public function getGroupLabel() {
|
|
return pht('Change Details');
|
|
}
|
|
|
|
protected function getGroupOrder() {
|
|
return 1500;
|
|
}
|
|
|
|
}
|