diff options
author | alecpl <alec@alec.pl> | 2011-12-07 09:35:29 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2011-12-07 09:35:29 +0000 |
commit | 7e263ea2048721482c00db65d4511f00c4c7b1d4 (patch) | |
tree | 02ee2a01d613a7f23a8408f656953d3ee5abad41 /program/steps/settings/func.inc | |
parent | 889665f57517cb1182de74568a239a669b22bece (diff) |
- Add option to set default font for HTML message (#1484137)
Diffstat (limited to 'program/steps/settings/func.inc')
-rw-r--r-- | program/steps/settings/func.inc | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/program/steps/settings/func.inc b/program/steps/settings/func.inc index 28da87628..b778afa13 100644 --- a/program/steps/settings/func.inc +++ b/program/steps/settings/func.inc @@ -481,7 +481,6 @@ function rcmail_user_prefs($current=null) 'sig' => array('name' => Q(rcube_label('signatureoptions'))), ); - // Show checkbox for HTML Editor if (!isset($no_override['htmleditor'])) { $field_id = 'rcmfd_htmleditor'; $select_htmleditor = new html_select(array('name' => '_htmleditor', 'id' => $field_id)); @@ -634,6 +633,25 @@ function rcmail_user_prefs($current=null) ); } + if (!isset($no_override['default_font'])) { + $field_id = 'rcmfd_default_font'; + $fonts = rcube_fontdefs(); + $default_font = $config['default_font'] ? $config['default_font'] : 'Verdana'; + + $select = '<select name="_default_font" id="'.$field_id.'">'; + foreach ($fonts as $fname => $font) + $select .= '<option value="'.$fname.'"' + . ($fname == $default_font ? ' selected="selected"' : '') + . ' style=\'font-family: ' . $font . '\'>' + . Q($fname) . '</option>'; + $select .= '</select>'; + + $blocks['main']['options']['default_font'] = array( + 'title' => html::label($field_id, Q(rcube_label('defaultfont'))), + 'content' => $select + ); + } + break; |