Page MenuHomec4science

PhabricatorLegalpadConfigOptions.php
No OneTemporary

File Metadata

Created
Tue, Jan 7, 10:30

PhabricatorLegalpadConfigOptions.php

<?php
final class PhabricatorLegalpadConfigOptions
extends PhabricatorApplicationConfigOptions {
public function getName() {
return pht('Legalpad');
}
public function getDescription() {
return pht('Configure Legalpad.');
}
public function getFontIcon() {
return 'fa-gavel';
}
public function getOptions() {
return array(
$this->newOption(
'metamta.legalpad.subject-prefix',
'string',
'[Legalpad]')
->setDescription(pht('Subject prefix for Legalpad email.')),
);
}
}

Event Timeline