summaryrefslogtreecommitdiff
path: root/classes/OPML.php
diff options
context:
space:
mode:
authorAndrew Dolgov <fox@fakecake.org>2025-08-04 20:05:59 +0300
committerAndrew Dolgov <fox@fakecake.org>2025-08-04 20:05:59 +0300
commit19fc3bff213d56f52982eb53bdc8eb9d910f882e (patch)
treea35399d82497cbc965e9ab71871eda3b801b58f7 /classes/OPML.php
parent0d0745da44f7ee8ec1eba8f5ed30802a60842ddf (diff)
drop unused legacy (?) handler method OPML->import()
Diffstat (limited to 'classes/OPML.php')
-rw-r--r--classes/OPML.php27
1 files changed, 0 insertions, 27 deletions
diff --git a/classes/OPML.php b/classes/OPML.php
index bae00b8bc..0560cc5f5 100644
--- a/classes/OPML.php
+++ b/classes/OPML.php
@@ -20,33 +20,6 @@ class OPML extends Handler_Protected {
return $rc;
}
- function import(): void {
- $owner_uid = $_SESSION["uid"];
-
- header('Content-Type: text/html; charset=utf-8');
-
- print "<html>
- <head>
- ".stylesheet_tag("themes/light.css")."
- <title>".__("OPML Utility")."</title>
- <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"/>
- </head>
- <body class='claro ttrss_utility'>
- <h1>".__('OPML Utility')."</h1><div class='content'>";
-
- Feeds::_add_cat("Imported feeds", $owner_uid);
-
- $this->opml_notice(__("Importing OPML..."));
-
- $this->opml_import($owner_uid);
-
- print "<br><form method=\"GET\" action=\"prefs.php\">
- <input type=\"submit\" value=\"".__("Return to preferences")."\">
- </form>";
-
- print "</div></body></html>";
- }
-
// Export
private function opml_export_category(int $owner_uid, int $cat_id, bool $hide_private_feeds = false, bool $include_settings = true): string {