Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96218183
PhabricatorOwnersConfigOptions.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
Mon, Dec 23, 21:13
Size
688 B
Mime Type
text/x-php
Expires
Wed, Dec 25, 21:13 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23145228
Attached To
rPH Phabricator
PhabricatorOwnersConfigOptions.php
View Options
<?php
final
class
PhabricatorOwnersConfigOptions
extends
PhabricatorApplicationConfigOptions
{
public
function
getName
()
{
return
pht
(
'Owners'
);
}
public
function
getDescription
()
{
return
pht
(
'Configure Owners.'
);
}
public
function
getOptions
()
{
return
array
(
$this
->
newOption
(
'metamta.package.reply-handler'
,
'class'
,
'OwnersPackageReplyHandler'
)
->
setBaseClass
(
'PhabricatorMailReplyHandler'
)
->
setDescription
(
pht
(
'Reply handler for owners mail.'
)),
$this
->
newOption
(
'metamta.package.subject-prefix'
,
'string'
,
'[Package]'
)
->
setDescription
(
pht
(
'Subject prefix for Owners email.'
))
);
}
}
Event Timeline
Log In to Comment