Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F112569785
PhabricatorMailgunConfigOptions.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 11, 10:16
Size
793 B
Mime Type
text/x-php
Expires
Tue, May 13, 10:16 (2 d)
Engine
blob
Format
Raw Data
Handle
26062856
Attached To
rPH Phabricator
PhabricatorMailgunConfigOptions.php
View Options
<?php
final
class
PhabricatorMailgunConfigOptions
extends
PhabricatorApplicationConfigOptions
{
public
function
getName
()
{
return
pht
(
'Integration with Mailgun'
);
}
public
function
getDescription
()
{
return
pht
(
'Configure Mailgun integration.'
);
}
public
function
getFontIcon
()
{
return
'fa-send-o'
;
}
public
function
getOptions
()
{
return
array
(
$this
->
newOption
(
'mailgun.domain'
,
'string'
,
null
)
->
setLocked
(
true
)
->
setDescription
(
pht
(
'Mailgun domain name. See https://mailgun.com/cp/domains'
))
->
addExample
(
'mycompany.com'
,
'Use specific domain'
),
$this
->
newOption
(
'mailgun.api-key'
,
'string'
,
null
)
->
setMasked
(
true
)
->
setDescription
(
pht
(
'Mailgun API key.'
)),
);
}
}
Event Timeline
Log In to Comment