Page MenuHomec4science

ConpherenceConfigOptions.php
No OneTemporary

File Metadata

Created
Fri, Jan 24, 10:32

ConpherenceConfigOptions.php

<?php
final class ConpherenceConfigOptions
extends PhabricatorApplicationConfigOptions {
public function getName() {
return pht('Conpherence');
}
public function getDescription() {
return pht('Configure Conpherence messaging.');
}
public function getFontIcon() {
return 'fa-comments';
}
public function getOptions() {
return array(
$this->newOption(
'metamta.conpherence.subject-prefix',
'string',
'[Conpherence]')
->setDescription(pht('Subject prefix for Conpherence mail.')),
);
}
}

Event Timeline