"; } function digestTest() { header("Content-type: text/html"); $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(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")) { include("help/$topic.php"); } else { print "

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

"; } */ /* print "
"; */ } }