\n". "
\n". "
\n"; echo '
'; if (!$exist) { printf(_("%s is not found."),$fortune_location); } else { echo "
" . _("Today's Fortune") . "
\n" .
            htmlspecialchars(shell_exec($fortune_command)) .
            "
\n"; } echo '
'; } /** * Add fortune options * @access private * @since 1.5.1 */ function fortune_function_options() { global $optpage_data; $optpage_data['grps']['fortune'] = _("Fortunes:"); $optionValues = array(); $optionValues[] = array('name' => 'fortune_visible', 'caption' => _("Show fortunes at top of mailbox"), 'type' => SMOPT_TYPE_BOOLEAN, 'initial_value' => false ); $optpage_data['vals']['fortune'] = $optionValues; } /** * Get fortune prefs * @access private * @since 1.5.1 */ function fortune_function_load() { global $username, $data_dir, $fortune_visible; $fortune_visible = getPref($data_dir, $username, 'fortune_visible'); } ?>