Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F97026390
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
Wed, Jan 1, 18:42
Size
635 B
Mime Type
text/x-php
Expires
Fri, Jan 3, 18:42 (2 d)
Engine
blob
Format
Raw Data
Handle
23315016
Attached To
rPH Phabricator
PhabricatorPasteConfigOptions.php
View Options
<?php
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