Page MenuHomec4science

PhabricatorPholioConfigOptions.php
No OneTemporary

File Metadata

Created
Tue, Jan 7, 09:55

PhabricatorPholioConfigOptions.php

<?php
final class PhabricatorPholioConfigOptions
extends PhabricatorApplicationConfigOptions {
public function getName() {
return pht("Pholio");
}
public function getDescription() {
return pht("Configure Pholio.");
}
public function getOptions() {
return array(
$this->newOption('metamta.pholio.reply-handler-domain', 'string', null)
->setDescription(
pht(
'Like {{metamta.maniphest.reply-handler-domain}}, but affects '.
'Pholio.')),
$this->newOption('metamta.pholio.subject-prefix', 'string', '[Pholio]')
->setDescription(pht('Subject prefix for Pholio email.'))
);
}
}

Event Timeline