Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F1608546
PhabricatorMailgunConfigOptions.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
872 B
Referenced Files
None
Subscribers
None
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.'
)),
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Wed, Jul 16, 1:19 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
366660
Default Alt Text
PhabricatorMailgunConfigOptions.php (872 B)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment