mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-26 21:49:08 +01:00
Summary: Ref T1536. This is the last major migration. Moves us over to the DB and drops all the config stuff. Test Plan: - Ran the migration. - Saw all my old config brought forward and respected, with accurate settings. - Ran LDAP import. - Grepped for all removed config options. Reviewers: btrahan, chad Reviewed By: btrahan CC: aran, wez Maniphest Tasks: T1536 Differential Revision: https://secure.phabricator.com/D6243
27 lines
799 B
PHP
27 lines
799 B
PHP
<?php
|
|
|
|
final class PhabricatorDisqusConfigOptions
|
|
extends PhabricatorApplicationConfigOptions {
|
|
|
|
public function getName() {
|
|
return pht("Integration with Disqus");
|
|
}
|
|
|
|
public function getDescription() {
|
|
return pht("Disqus authentication and integration options.");
|
|
}
|
|
|
|
public function getOptions() {
|
|
return array(
|
|
$this->newOption('disqus.shortname', 'string', null)
|
|
->setSummary(pht("Shortname for Disqus comment widget."))
|
|
->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]]")),
|
|
);
|
|
}
|
|
|
|
}
|