From a144f6b8294ce7efa06317d0ce8ee51fb92c523b Mon Sep 17 00:00:00 2001 From: tokul Date: Sun, 17 Apr 2005 12:18:02 +0000 Subject: [PATCH] iframe height option git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@9325 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- include/load_prefs.php | 6 ++++++ include/options/display.php | 15 ++++++++++++++- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/include/load_prefs.php b/include/load_prefs.php index 27a998ca..a64e3b91 100644 --- a/include/load_prefs.php +++ b/include/load_prefs.php @@ -354,6 +354,12 @@ $show_recipient_instead = getPref($data_dir, $username, 'show_recipient_instead' $delete_prev_next_display = getPref($data_dir, $username, 'delete_prev_next_display', SMPREF_ON); +/** + * Height of iframe that displays html formated emails + * @since 1.5.1 + */ +$iframe_height = getPref($data_dir, $username, 'iframe_height', '300'); + do_hook('loading_prefs'); ?> \ No newline at end of file diff --git a/include/options/display.php b/include/options/display.php index 7a79573e..ba6cbdb7 100644 --- a/include/options/display.php +++ b/include/options/display.php @@ -33,6 +33,9 @@ if ($use_icons) { } } +global $use_iframe; +if (! isset($use_iframe)) $use_iframe=false; + /** * This function builds an array with all the information about * the options available to the user, and returns it. The options @@ -49,7 +52,7 @@ if ($use_icons) { function load_optpage_data_display() { global $theme, $language, $languages, $default_use_mdn, $squirrelmail_language, $allow_thread_sort, - $show_alternative_names, $available_languages, $use_icons; + $show_alternative_names, $available_languages, $use_icons, $use_iframe; /* Build a simple array into which we will build options. */ $optgrps = array(); @@ -318,6 +321,16 @@ function load_optpage_data_display() { 'refresh' => SMOPT_REFRESH_NONE ); + if ($use_iframe) { + // Type is set to string in order to be able to use 100%. + $optvals[SMOPT_GRP_MESSAGE][] = array( + 'name' => 'iframe_height', + 'caption' => _("Height of inline frame"), + 'type' => SMOPT_TYPE_STRING, + 'size' => SMOPT_SIZE_TINY, + 'refresh' => SMOPT_REFRESH_NONE + ); + } $optvals[SMOPT_GRP_MESSAGE][] = array( 'name' => 'enable_forward_as_attachment', 'caption' => _("Enable Forward as Attachment"), -- 2.25.1