mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 03:12:41 +01:00
7a1bbe6634
Summary: Ref T5791. This is still very basic (no global actions, no support for matching headers/bodies/recipients/etc) but gets the core in. Test Plan: {F715209} {F715211} Reviewers: chad Reviewed By: chad Maniphest Tasks: T5791 Differential Revision: https://secure.phabricator.com/D13897
15 lines
263 B
PHP
15 lines
263 B
PHP
<?php
|
|
|
|
final class PhabricatorMailEmailHeraldFieldGroup extends HeraldFieldGroup {
|
|
|
|
const FIELDGROUPKEY = 'mail.message';
|
|
|
|
public function getGroupLabel() {
|
|
return pht('Message Fields');
|
|
}
|
|
|
|
protected function getGroupOrder() {
|
|
return 1000;
|
|
}
|
|
|
|
}
|