summaryrefslogtreecommitdiff
path: root/classes/pref/feeds.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2021-03-16 12:27:46 +0300
committerAndrew Dolgov <[email protected]>2021-03-16 12:27:46 +0300
commit44b274b6d422fd647bcffade2afba6a7e62f2786 (patch)
treeb07f5d30183885188c1e3049e92f4c2e7f187864 /classes/pref/feeds.php
parentc134aa387dbc4e7d7c175c7a42e0d5939e0cf065 (diff)
remove published opml (use CLI instead)
Diffstat (limited to 'classes/pref/feeds.php')
-rwxr-xr-xclasses/pref/feeds.php22
1 files changed, 0 insertions, 22 deletions
diff --git a/classes/pref/feeds.php b/classes/pref/feeds.php
index 788104d38..5f7635736 100755
--- a/classes/pref/feeds.php
+++ b/classes/pref/feeds.php
@@ -1012,17 +1012,6 @@ class Pref_Feeds extends Handler_Protected {
</label>
</form>
- <hr/>
-
- <h2><?= __("Published OPML") ?></h2>
-
- <?= format_notice("Your OPML can be published and then subscribed by anyone who knows the URL below. This won't include your settings nor authenticated feeds.") ?>
-
- <button dojoType='dijit.form.Button' class='alt-primary' onclick="return Helpers.OPML.publish()">
- <?= \Controls\icon("share") ?>
- <?= __('Display published OPML URL') ?>
- </button>
-
<?php
PluginHost::getInstance()->run_hooks(PluginHost::HOOK_PREFS_TAB_SECTION, "prefFeedsOPML");
}
@@ -1251,17 +1240,6 @@ class Pref_Feeds extends Handler_Protected {
return Feeds::_clear_access_keys($_SESSION['uid']);
}
- function getOPMLKey() {
- print json_encode(["link" => OPML::get_publish_url()]);
- }
-
- function regenOPMLKey() {
- Feeds::_update_access_key('OPML:Publish',
- false, $_SESSION["uid"]);
-
- print json_encode(["link" => OPML::get_publish_url()]);
- }
-
function regenFeedKey() {
$feed_id = clean($_REQUEST['id']);
$is_cat = clean($_REQUEST['is_cat']);