Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F114386749
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
Sun, May 25, 13:52
Size
831 B
Mime Type
text/x-php
Expires
Tue, May 27, 13:52 (2 d)
Engine
blob
Format
Raw Data
Handle
26391105
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
getFontIcon
()
{
return
'fa-gift'
;
}
public
function
getGroup
()
{
return
'apps'
;
}
public
function
getOptions
()
{
return
array
(
$this
->
newOption
(
'metamta.package.reply-handler'
,
'class'
,
'OwnersPackageReplyHandler'
)
->
setLocked
(
true
)
->
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