mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-04 12:42:43 +01:00
16 lines
241 B
PHP
16 lines
241 B
PHP
|
<?php
|
||
|
|
||
|
final class HeraldPreventActionGroup extends HeraldActionGroup {
|
||
|
|
||
|
const ACTIONGROUPKEY = 'prevent';
|
||
|
|
||
|
public function getGroupLabel() {
|
||
|
return pht('Prevent');
|
||
|
}
|
||
|
|
||
|
protected function getGroupOrder() {
|
||
|
return 3000;
|
||
|
}
|
||
|
|
||
|
}
|