Remove product literal strings in "pht()", part 5
[phabricator.git] / src / applications / feed / config / PhabricatorFeedConfigOptions.php
blobeac6a097ae9f28aae0a6927829fb1a9150719416
1 <?php
3 final class PhabricatorFeedConfigOptions
4 extends PhabricatorApplicationConfigOptions {
6 public function getName() {
7 return pht('Feed');
10 public function getDescription() {
11 return pht('Feed options.');
14 public function getIcon() {
15 return 'fa-newspaper-o';
18 public function getGroup() {
19 return 'apps';
22 public function getOptions() {
23 $hooks_help = $this->deformat(pht(<<<EODOC
24 IMPORTANT: Feed hooks are deprecated and have been replaced by Webhooks.
26 You can configure Webhooks in Herald. This configuration option will be removed
27 in a future version of the software.
29 (This legacy option may be configured with a list of URIs; feed stories will
30 send to these URIs.)
31 EODOC
32 ));
34 return array(
35 $this->newOption('feed.http-hooks', 'list<string>', array())
36 ->setLocked(true)
37 ->setSummary(pht('Deprecated.'))
38 ->setDescription($hooks_help),