Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98225175
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
Sat, Jan 11, 05:47
Size
868 B
Mime Type
text/x-php
Expires
Mon, Jan 13, 05:47 (2 d)
Engine
blob
Format
Raw Data
Handle
23510545
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
getIcon
()
{
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