summaryrefslogtreecommitdiff
path: root/classes/dlg.php
diff options
context:
space:
mode:
Diffstat (limited to 'classes/dlg.php')
-rw-r--r--classes/dlg.php129
1 files changed, 0 insertions, 129 deletions
diff --git a/classes/dlg.php b/classes/dlg.php
index fa154d7a4..4240ad222 100644
--- a/classes/dlg.php
+++ b/classes/dlg.php
@@ -13,85 +13,6 @@ class Dlg extends Handler_Protected {
return false;
}
- function importOpml() {
- print_notice("If you have imported labels and/or filters, you might need to reload preferences to see your new data.");
-
- print "<div class='panel panel-scrollable'>";
-
- $opml = new OPML($_REQUEST);
-
- $opml->opml_import($_SESSION["uid"]);
-
- print "</div>";
-
- print "<footer class='text-center'>";
- print "<button dojoType='dijit.form.Button'
- onclick=\"dijit.byId('opmlImportDlg').execute()\">".
- __('Close this window')."</button>";
- print "</footer>";
-
- print "</div>";
-
- //return;
- }
-
- function pubOPMLUrl() {
- $url_path = Opml::opml_publish_url();
-
- print "<header>" . __("Your Public OPML URL is:") . "</header>";
-
- print "<section>";
-
- print "<div class='panel text-center'>";
- print "<a id='pub_opml_url' href='$url_path' target='_blank'>$url_path</a>";
- print "</div>";
-
- print "</section>";
-
- print "<footer class='text-center'>";
-
- print "<button dojoType='dijit.form.Button' onclick=\"return Helpers.OPML.changeKey()\">".
- __('Generate new URL')."</button> ";
-
- print "<button dojoType='dijit.form.Button' onclick=\"return CommonDialogs.closeInfoBox()\">".
- __('Close this window')."</button>";
-
- print "</footer>";
-
- //return;
- }
-
- function explainError() {
- print "<div class=\"errorExplained\">";
-
- if ($this->param == 1) {
- print __("Update daemon is enabled in configuration, but daemon process is not running, which prevents all feeds from updating. Please start the daemon process or contact instance owner.");
-
- $stamp = (int) file_get_contents(LOCK_DIRECTORY . "/update_daemon.stamp");
-
- print "<p>" . __("Last update:") . " " . date("Y.m.d, G:i", $stamp);
-
- }
-
- if ($this->param == 3) {
- print __("Update daemon is taking too long to perform a feed update. This could indicate a problem like crash or a hang. Please check the daemon process or contact instance owner.");
-
- $stamp = (int) file_get_contents(LOCK_DIRECTORY . "/update_daemon.stamp");
-
- print "<p>" . __("Last update:") . " " . date("Y.m.d, G:i", $stamp);
-
- }
-
- print "</div>";
-
- print "<footer class='text-center'>";
- print "<button onclick=\"return CommonDialogs.closeInfoBox()\">".
- __('Close this window')."</button>";
- print "</footer>";
-
- //return;
- }
-
function printTagCloud() {
print "<div class='panel text-center'>";
@@ -154,54 +75,4 @@ class Dlg extends Handler_Protected {
print "</footer>";
}
-
- function generatedFeed() {
-
- $this->params = explode(":", $this->param, 3);
- $feed_id = $this->params[0];
- $is_cat = (bool) $this->params[1];
-
- $key = Feeds::get_feed_access_key($feed_id, $is_cat);
-
- $url_path = htmlspecialchars($this->params[2]) . "&key=" . $key;
-
- $feed_title = Feeds::getFeedTitle($feed_id, $is_cat);
-
- print "<header>".T_sprintf("%s can be accessed via the following secret URL:", $feed_title)."</header>";
-
- print "<section>";
- print "<div class='panel text-center'>";
- print "<a id='gen_feed_url' href='$url_path' target='_blank'>$url_path</a>";
- print "</div>";
- print "</section>";
-
- print "<footer>";
-
- print "<button dojoType='dijit.form.Button' style='float : left' class='alt-info' onclick='window.open(\"https://tt-rss.org/wiki/GeneratedFeeds\")'>
- <i class='material-icons'>help</i> ".__("More info...")."</button>";
-
- print "<button dojoType='dijit.form.Button' onclick=\"return CommonDialogs.genUrlChangeKey('$feed_id', '$is_cat')\">".
- __('Generate new URL')."</button> ";
-
- print "<button dojoType='dijit.form.Button' onclick=\"return CommonDialogs.closeInfoBox()\">".
- __('Close this window')."</button>";
-
- print "</footer>";
-
- //return;
- }
-
- function defaultPasswordWarning() {
-
- print_warning(__("You are using default tt-rss password. Please change it in the Preferences (Personal data / Authentication)."));
-
- print "<footer class='text-center'>";
- print "<button dojoType='dijit.form.Button' class='alt-primary'
- onclick=\"document.location.href = 'prefs.php'\">".
- __('Open Preferences')."</button> ";
- print "<button dojoType='dijit.form.Button'
- onclick=\"return dijit.byId('defaultPasswordDlg').hide();\">".
- __('Close this window')."</button>";
- print "</footeer>";
- }
}