Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F97247883
PhabricatorPasteConfigOptions.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Jan 3, 18:53
Size
659 B
Mime Type
text/x-php
Expires
Sun, Jan 5, 18:53 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23364104
Attached To
rPH Phabricator
PhabricatorPasteConfigOptions.php
View Options
<?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
Log In to Comment