Changeset View
Changeset View
Standalone View
Standalone View
src/applications/config/option/PhabricatorAWSConfigOptions.php
| <?php | <?php | ||||
| final class PhabricatorAWSConfigOptions | final class PhabricatorAWSConfigOptions | ||||
| extends PhabricatorApplicationConfigOptions { | extends PhabricatorApplicationConfigOptions { | ||||
| public function getName() { | public function getName() { | ||||
| return pht("Amazon Web Services"); | return pht('Amazon Web Services'); | ||||
| } | } | ||||
| public function getDescription() { | public function getDescription() { | ||||
| return pht("Configure integration with AWS (EC2, SES, S3, etc)."); | return pht('Configure integration with AWS (EC2, SES, S3, etc).'); | ||||
| } | } | ||||
| public function getOptions() { | public function getOptions() { | ||||
| return array( | return array( | ||||
| $this->newOption('amazon-ses.access-key', 'string', null) | $this->newOption('amazon-ses.access-key', 'string', null) | ||||
| ->setLocked(true) | ->setLocked(true) | ||||
| ->setDescription(pht('Access key for Amazon SES.')), | ->setDescription(pht('Access key for Amazon SES.')), | ||||
| $this->newOption('amazon-ses.secret-key', 'string', null) | $this->newOption('amazon-ses.secret-key', 'string', null) | ||||
| Show All 26 Lines | |||||