[ Index ] |
PHP Cross Reference of Phabricator |
[Summary view] [Print] [Text view]
1 <?php 2 3 final class PhabricatorDisqusConfigOptions 4 extends PhabricatorApplicationConfigOptions { 5 6 public function getName() { 7 return pht('Integration with Disqus'); 8 } 9 10 public function getDescription() { 11 return pht('Disqus authentication and integration options.'); 12 } 13 14 public function getOptions() { 15 return array( 16 $this->newOption('disqus.shortname', 'string', null) 17 ->setSummary(pht('Shortname for Disqus comment widget.')) 18 ->setDescription( 19 pht( 20 "Website shortname to use for Disqus comment widget in Phame. ". 21 "For more information, see:\n\n". 22 "[[http://docs.disqus.com/help/4/ | Disqus Quick Start Guide]]\n". 23 "[[http://docs.disqus.com/help/68/ | Information on Shortnames]]")), 24 ); 25 } 26 27 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Sun Nov 30 09:20:46 2014 | Cross-referenced by PHPXref 0.7.1 |