diff options
author | Aaron Parecki <aaron@parecki.com> | 2019-10-19 21:46:02 +0100 |
---|---|---|
committer | Aaron Parecki <aaron@parecki.com> | 2019-10-19 21:46:02 +0100 |
commit | 6fc7d060cb417e46b74e747aaf88a2c735ca84ec (patch) | |
tree | 4505d35b3f10d85016ce1aedca103d84f274ca02 /views/settings.php | |
parent | 873cc81ee7325752c43dd007f723b225758cf9ac (diff) |
disable twitter stuff if no twitter client is set
Diffstat (limited to 'views/settings.php')
-rw-r--r-- | views/settings.php | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/views/settings.php b/views/settings.php index 0f2c5e3..be01303 100644 --- a/views/settings.php +++ b/views/settings.php @@ -88,11 +88,11 @@ </div> - - <h3>Twitter</h3> - <p>Connecting a Twitter account will automatically "favorite" and "retweet" tweets on Twitter when you favorite and retweet a Twitter URL in Quill.</p> - <input type="button" id="twitter-button" value="Checking" class="btn"> - + <?php if(!Config::$twitterClientID) ?> + <h3>Twitter</h3> + <p>Connecting a Twitter account will automatically "favorite" and "retweet" tweets on Twitter when you favorite and retweet a Twitter URL in Quill.</p> + <input type="button" id="twitter-button" value="Checking" class="btn"> + <?php endif ?> <h3>Backwards Compatibility</h3> @@ -133,6 +133,7 @@ <script> $(function(){ + <?php if(!Config::$twitterClientID): ?> $.getJSON("/auth/twitter", function(data){ // Check if we're already authorized with twitter if(data && data.result == 'ok') { @@ -153,6 +154,7 @@ $(function(){ }); } }); + <?php endif ?> $("#send-html-content").click(function(){ var enabled = $(this).attr("checked") == "checked"; |