Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F99644529
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
Sat, Jan 25, 23:09
Size
630 B
Mime Type
text/x-php
Expires
Mon, Jan 27, 23:09 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23837913
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