Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F114886694
PhabricatorPholioConfigOptions.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, May 28, 10:07
Size
694 B
Mime Type
text/x-php
Expires
Fri, May 30, 10:07 (2 d)
Engine
blob
Format
Raw Data
Handle
26447928
Attached To
rPH Phabricator
PhabricatorPholioConfigOptions.php
View Options
<?php
/**
* @group pholio
*/
final
class
PhabricatorPholioConfigOptions
extends
PhabricatorApplicationConfigOptions
{
public
function
getName
()
{
return
pht
(
"Pholio"
);
}
public
function
getDescription
()
{
return
pht
(
"Configure Pholio."
);
}
public
function
getOptions
()
{
return
array
(
$this
->
newOption
(
'metamta.pholio.reply-handler-domain'
,
'string'
,
null
)
->
setDescription
(
pht
(
'Like {{metamta.maniphest.reply-handler-domain}}, but affects '
.
'Pholio.'
)),
$this
->
newOption
(
'metamta.pholio.subject-prefix'
,
'string'
,
'[Pholio]'
)
->
setDescription
(
pht
(
'Subject prefix for Pholio email.'
))
);
}
}
Event Timeline
Log In to Comment