Path: blob/master/src/applications/feed/config/PhabricatorFeedConfigOptions.php
12242 views
<?php12final class PhabricatorFeedConfigOptions3extends PhabricatorApplicationConfigOptions {45public function getName() {6return pht('Feed');7}89public function getDescription() {10return pht('Feed options.');11}1213public function getIcon() {14return 'fa-newspaper-o';15}1617public function getGroup() {18return 'apps';19}2021public function getOptions() {22$hooks_help = $this->deformat(pht(<<<EODOC23IMPORTANT: Feed hooks are deprecated and have been replaced by Webhooks.2425You can configure Webhooks in Herald. This configuration option will be removed26in a future version of the software.2728(This legacy option may be configured with a list of URIs; feed stories will29send to these URIs.)30EODOC31));3233return array(34$this->newOption('feed.http-hooks', 'list<string>', array())35->setLocked(true)36->setSummary(pht('Deprecated.'))37->setDescription($hooks_help),38);39}4041}424344