mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-26 06:28:19 +01:00
17 lines
289 B
PHP
17 lines
289 B
PHP
|
<?php
|
||
|
|
||
|
final class PhabricatorSettingsApplicationsPanelGroup
|
||
|
extends PhabricatorSettingsPanelGroup {
|
||
|
|
||
|
const PANELGROUPKEY = 'applications';
|
||
|
|
||
|
public function getPanelGroupName() {
|
||
|
return pht('Applications');
|
||
|
}
|
||
|
|
||
|
protected function getPanelGroupOrder() {
|
||
|
return 200;
|
||
|
}
|
||
|
|
||
|
}
|