mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-14 19:02:41 +01:00
28 lines
688 B
PHP
28 lines
688 B
PHP
|
<?php
|
||
|
|
||
|
final class PhabricatorOwnersConfigOptions
|
||
|
extends PhabricatorApplicationConfigOptions {
|
||
|
|
||
|
public function getName() {
|
||
|
return pht("Owners");
|
||
|
}
|
||
|
|
||
|
public function getDescription() {
|
||
|
return pht("Configure Owners.");
|
||
|
}
|
||
|
|
||
|
public function getOptions() {
|
||
|
return array(
|
||
|
$this->newOption(
|
||
|
'metamta.package.reply-handler',
|
||
|
'class',
|
||
|
'OwnersPackageReplyHandler')
|
||
|
->setBaseClass('PhabricatorMailReplyHandler')
|
||
|
->setDescription(pht('Reply handler for owners mail.')),
|
||
|
$this->newOption('metamta.package.subject-prefix', 'string', '[Package]')
|
||
|
->setDescription(pht('Subject prefix for Owners email.'))
|
||
|
);
|
||
|
}
|
||
|
|
||
|
}
|