Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F109950153
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
Thu, Apr 24, 02:36
Size
872 B
Mime Type
text/x-php
Expires
Sat, Apr 26, 02:36 (2 d)
Engine
blob
Format
Raw Data
Handle
25743343
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