summaryrefslogtreecommitdiff
path: root/config.php-dist
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2011-12-20 23:57:27 +0400
committerAndrew Dolgov <[email protected]>2011-12-20 23:59:37 +0400
commitf9ac31d6712b4400a616e49d6217d55edb0daf9c (patch)
tree453002094fe5070074581529a72fe1e083631b8f /config.php-dist
parent73621c56055eaff7d222183bfdb5d4fabeb4e209 (diff)
move tweet button to a plugin, implement basic support for article action button plugins
Diffstat (limited to 'config.php-dist')
-rw-r--r--config.php-dist10
1 files changed, 6 insertions, 4 deletions
diff --git a/config.php-dist b/config.php-dist
index e4b5ae32d..490a871f6 100644
--- a/config.php-dist
+++ b/config.php-dist
@@ -175,9 +175,6 @@
// *** Twitter integration settings ***
// ************************************
- define('ENABLE_TWEET_BUTTON', false);
- // Enable 'tweet this' button for articles
-
define('CONSUMER_KEY', '');
define('CONSUMER_SECRET', '');
// Your OAuth instance authentication information for Twitter, visit
@@ -202,7 +199,12 @@
define('FEEDBACK_URL', '');
// Displays an URL for users to provide feedback or comments regarding
// this instance of tt-rss. Can lead to a forum, contact email, etc.
-
+
+ define('ARTICLE_BUTTON_PLUGINS', 'tweet');
+ // Comma-separated list of additional article action button plugins
+ // to enable, like tweet button, etc.
+ // The following plugins are available: tweet
+
define('CONFIG_VERSION', 24);
// Expected config version. Please update this option in config.php
// if necessary (after migrating all new options from this file).