X-Git-Url: https://git.wh0rd.org/?a=blobdiff_plain;f=classes%2Fbackend.php;h=d5d0f5a01ba1b94e9fa2c6ceb57019c091837b6d;hb=f830f853a919c458d06bdc6ce292b8ae73a801f3;hp=19938344d78481f1e222aba7e6cfbc646e1d4ebd;hpb=61c1812f29dc76e93107b65dea80fde260269e8d;p=tt-rss.git diff --git a/classes/backend.php b/classes/backend.php index 19938344..d5d0f5a0 100644 --- a/classes/backend.php +++ b/classes/backend.php @@ -1,30 +1,116 @@ "; } - function digestSend() { - define('PREFS_NO_CACHE', true); + function digestTest() { + header("Content-type: text/html"); + + $rv = Digest::prepare_headlines_digest($_SESSION['uid'], 1, 1000); + + $rv[3] = "
" . $rv[3] . "
"; - send_headlines_digests($this->link, 100, true); + 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"])); + + 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")) { + /* if (file_exists("help/$topic.php")) { include("help/$topic.php"); } else { print "

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

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