X-Git-Url: https://git.wh0rd.org/?a=blobdiff_plain;f=classes%2Fbackend.php;h=d5d0f5a01ba1b94e9fa2c6ceb57019c091837b6d;hb=50052fb78a3a9d1bb3fa488e7fd7b23125c38124;hp=aae73f2ef4b3528ab8964d3332f0589a386ac316;hpb=9a5f5633c0fa264fe8bb867f1940e268991de797;p=tt-rss.git diff --git a/classes/backend.php b/classes/backend.php index aae73f2e..d5d0f5a0 100644 --- a/classes/backend.php +++ b/classes/backend.php @@ -1,6 +1,5 @@ link, $_SESSION['uid'], 1, 1000); + $rv = Digest::prepare_headlines_digest($_SESSION['uid'], 1, 1000); $rv[3] = "
" . $rv[3] . "
"; print_r($rv); } + private function display_main_help() { + $info = get_hotkeys_info(); + $imap = get_hotkeys_map(); + $omap = array(); + + foreach ($imap[1] as $sequence => $action) { + if (!isset($omap[$action])) $omap[$action] = array(); + + array_push($omap[$action], $sequence); + } + + print_notice("". + __("Other interface tips are available in the Tiny Tiny RSS wiki.") . + ""); + + print ""; + } + function help() { - $topic = basename($_REQUEST["topic"]); + $topic = basename(clean($_REQUEST["topic"])); - if (file_exists("help/$topic.php")) { + switch ($topic) { + case "main": + $this->display_main_help(); + break; + case "prefs": + //$this->display_prefs_help(); + break; + default: + print "

".__("Help topic not found.")."

"; + } + + print "
"; + print ""; + print "
"; + + /* if (file_exists("help/$topic.php")) { include("help/$topic.php"); } else { print "

".__("Help topic not found.")."

"; - } + } */ /* print "
"; */ } -} -?> +} \ No newline at end of file