Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92095720
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, Nov 17, 07:48
Size
872 B
Mime Type
text/x-php
Expires
Tue, Nov 19, 07:48 (2 d)
Engine
blob
Format
Raw Data
Handle
22375607
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
getGroup
()
{
return
'core'
;
}
public
function
getOptions
()
{
return
array
(
$this
->
newOption
(
'mailgun.domain'
,
'string'
,
null
)
->
setLocked
(
true
)
->
setDescription
(
pht
(
'Mailgun domain name. See %s.'
,
'https://mailgun.com/cp/domains'
))
->
addExample
(
'mycompany.com'
,
pht
(
'Use specific domain'
)),
$this
->
newOption
(
'mailgun.api-key'
,
'string'
,
null
)
->
setHidden
(
true
)
->
setDescription
(
pht
(
'Mailgun API key.'
)),
);
}
}
Event Timeline
Log In to Comment