2013-01-01 23:09:29 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
final class PhabricatorDisqusConfigOptions
|
|
|
|
extends PhabricatorApplicationConfigOptions {
|
|
|
|
|
|
|
|
public function getName() {
|
2014-06-09 20:36:49 +02:00
|
|
|
return pht('Integration with Disqus');
|
2013-01-01 23:09:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getDescription() {
|
2014-06-09 20:36:49 +02:00
|
|
|
return pht('Disqus authentication and integration options.');
|
2013-01-01 23:09:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getOptions() {
|
|
|
|
return array(
|
|
|
|
$this->newOption('disqus.shortname', 'string', null)
|
2014-06-09 20:36:49 +02:00
|
|
|
->setSummary(pht('Shortname for Disqus comment widget.'))
|
2013-01-01 23:09:29 +01:00
|
|
|
->setDescription(
|
|
|
|
pht(
|
|
|
|
"Website shortname to use for Disqus comment widget in Phame. ".
|
|
|
|
"For more information, see:\n\n".
|
|
|
|
"[[http://docs.disqus.com/help/4/ | Disqus Quick Start Guide]]\n".
|
|
|
|
"[[http://docs.disqus.com/help/68/ | Information on Shortnames]]")),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|