mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-31 00:48:21 +01:00
17 lines
268 B
PHP
17 lines
268 B
PHP
|
<?php
|
||
|
|
||
|
final class PhabricatorSettingsEmailPanelGroup
|
||
|
extends PhabricatorSettingsPanelGroup {
|
||
|
|
||
|
const PANELGROUPKEY = 'email';
|
||
|
|
||
|
public function getPanelGroupName() {
|
||
|
return pht('Email');
|
||
|
}
|
||
|
|
||
|
protected function getPanelGroupOrder() {
|
||
|
return 500;
|
||
|
}
|
||
|
|
||
|
}
|