Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F99422922
PhabricatorSendGridConfigOptions.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
Fri, Jan 24, 10:32
Size
682 B
Mime Type
text/x-php
Expires
Sun, Jan 26, 10:32 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23797122
Attached To
rPH Phabricator
PhabricatorSendGridConfigOptions.php
View Options
<?php
final
class
PhabricatorSendGridConfigOptions
extends
PhabricatorApplicationConfigOptions
{
public
function
getName
()
{
return
pht
(
'Integration with SendGrid'
);
}
public
function
getDescription
()
{
return
pht
(
'Configure SendGrid integration.'
);
}
public
function
getFontIcon
()
{
return
'fa-send-o'
;
}
public
function
getOptions
()
{
return
array
(
$this
->
newOption
(
'sendgrid.api-user'
,
'string'
,
null
)
->
setLocked
(
true
)
->
setDescription
(
pht
(
'SendGrid API username.'
)),
$this
->
newOption
(
'sendgrid.api-key'
,
'string'
,
null
)
->
setMasked
(
true
)
->
setDescription
(
pht
(
'SendGrid API key.'
)),
);
}
}
Event Timeline
Log In to Comment