mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-12 14:58:33 +01:00
16 lines
238 B
PHP
16 lines
238 B
PHP
|
<?php
|
||
|
|
||
|
final class HeraldNotifyActionGroup extends HeraldActionGroup {
|
||
|
|
||
|
const ACTIONGROUPKEY = 'notify';
|
||
|
|
||
|
public function getGroupLabel() {
|
||
|
return pht('Notify');
|
||
|
}
|
||
|
|
||
|
protected function getGroupOrder() {
|
||
|
return 2000;
|
||
|
}
|
||
|
|
||
|
}
|