Page MenuHomestyx hydra

PhabricatorSendGridConfigOptions.php
No OneTemporary

PhabricatorSendGridConfigOptions.php

<?php
final class PhabricatorSendGridConfigOptions
extends PhabricatorApplicationConfigOptions {
public function getName() {
return pht('Integration with SendGrid');
}
public function getDescription() {
return pht('Configure SendGrid integration.');
}
public function getIcon() {
return 'fa-send-o';
}
public function getGroup() {
return 'core';
}
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)
->setHidden(true)
->setDescription(pht('SendGrid API key.')),
);
}
}

File Metadata

Mime Type
text/x-php
Expires
Wed, Nov 26, 8:40 PM (11 h, 16 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
376787
Default Alt Text
PhabricatorSendGridConfigOptions.php (733 B)

Event Timeline