[ Index ]

PHP Cross Reference of Phabricator

title

Body

[close]

/src/applications/pholio/config/ -> PhabricatorPholioConfigOptions.php (source)

   1  <?php
   2  
   3  final class PhabricatorPholioConfigOptions
   4    extends PhabricatorApplicationConfigOptions {
   5  
   6    public function getName() {
   7      return pht('Pholio');
   8    }
   9  
  10    public function getDescription() {
  11      return pht('Configure Pholio.');
  12    }
  13  
  14    public function getOptions() {
  15      return array(
  16        $this->newOption('metamta.pholio.reply-handler-domain', 'string', null)
  17          ->setDescription(
  18            pht(
  19              'Like {{metamta.maniphest.reply-handler-domain}}, but affects '.
  20              'Pholio.')),
  21        $this->newOption('metamta.pholio.subject-prefix', 'string', '[Pholio]')
  22          ->setDescription(pht('Subject prefix for Pholio email.')),
  23      );
  24    }
  25  
  26  }


Generated: Sun Nov 30 09:20:46 2014 Cross-referenced by PHPXref 0.7.1