X-Git-Url: https://git.wh0rd.org/?a=blobdiff_plain;f=classes%2Fbackend.php;h=d5d0f5a01ba1b94e9fa2c6ceb57019c091837b6d;hb=f830f853a919c458d06bdc6ce292b8ae73a801f3;hp=42dfb54742868e13f3c55a7e6576df4b63f5ca4b;hpb=f16116834e310a622c38a90b04daf36085066999;p=tt-rss.git diff --git a/classes/backend.php b/classes/backend.php index 42dfb547..d5d0f5a0 100644 --- a/classes/backend.php +++ b/classes/backend.php @@ -9,27 +9,108 @@ class Backend extends Handler { function digestTest() { header("Content-type: text/html"); - require_once "digest.php"; - - $rv = prepare_headlines_digest($this->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