Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F100727239
PhabricatorMacroConfigOptions.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
Sun, Feb 2, 06:05
Size
631 B
Mime Type
text/x-php
Expires
Tue, Feb 4, 06:05 (2 d)
Engine
blob
Format
Raw Data
Handle
23880794
Attached To
rPH Phabricator
PhabricatorMacroConfigOptions.php
View Options
<?php
final
class
PhabricatorMacroConfigOptions
extends
PhabricatorApplicationConfigOptions
{
public
function
getName
()
{
return
pht
(
'Macro'
);
}
public
function
getDescription
()
{
return
pht
(
'Configure Macro.'
);
}
public
function
getOptions
()
{
return
array
(
$this
->
newOption
(
'metamta.macro.reply-handler-domain'
,
'string'
,
null
)
->
setDescription
(
pht
(
'As {{metamta.maniphest.reply-handler-domain}}, but affects Macro.'
)),
$this
->
newOption
(
'metamta.macro.subject-prefix'
,
'string'
,
'[Macro]'
)
->
setDescription
(
pht
(
'Subject prefix for Macro email.'
)),
);
}
}
Event Timeline
Log In to Comment