Page MenuHomec4science

PhabricatorPasteConfigOptions.php
No OneTemporary

File Metadata

Created
Tue, May 21, 11:06

PhabricatorPasteConfigOptions.php

<?php
/**
* @group paste
*/
final class PhabricatorPasteConfigOptions
extends PhabricatorApplicationConfigOptions {
public function getName() {
return pht('Paste');
}
public function getDescription() {
return pht('Configure Paste.');
}
public function getOptions() {
return array(
$this->newOption(
'metamta.paste.public-create-email',
'string',
null)
->setDescription(pht('Allow creating pastes via email.')),
$this->newOption(
'metamta.paste.subject-prefix',
'string',
'[Paste]')
->setDescription(pht('Subject prefix for paste email.'))
);
}
}

Event Timeline