| | |
| | | if (!$attrib['id']) |
| | | $attrib['id'] = 'rcmprefsframe'; |
| | | |
| | | $attrib['name'] = $attrib['id']; |
| | | |
| | | $OUTPUT->set_env('contentframe', $attrib['name']); |
| | | $OUTPUT->set_env('blankpage', $attrib['src'] ? $OUTPUT->abs_url($attrib['src']) : 'program/resources/blank.gif'); |
| | | |
| | | return html::iframe($attrib); |
| | | return $OUTPUT->frame($attrib, true); |
| | | } |
| | | |
| | | |
| | |
| | | |
| | | $sections['general'] = array('id' => 'general', 'section' => rcube_label('uisettings')); |
| | | $sections['mailbox'] = array('id' => 'mailbox', 'section' => rcube_label('mailboxview')); |
| | | $sections['compose'] = array('id' => 'compose', 'section' => rcube_label('messagescomposition')); |
| | | $sections['mailview'] = array('id' => 'mailview','section' => rcube_label('messagesdisplaying')); |
| | | $sections['compose'] = array('id' => 'compose', 'section' => rcube_label('messagescomposition')); |
| | | $sections['addressbook'] = array('id' => 'addressbook','section' => rcube_label('addressbook')); |
| | | $sections['folders'] = array('id' => 'folders', 'section' => rcube_label('specialfolders')); |
| | | $sections['server'] = array('id' => 'server', 'section' => rcube_label('serversettings')); |
| | |
| | | $blocks['main']['options']['prettydate'] = array( |
| | | 'title' => html::label($field_id, Q(rcube_label('prettydate'))), |
| | | 'content' => $input_prettydate->show($config['prettydate']?1:0), |
| | | ); |
| | | } |
| | | |
| | | if (!isset($no_override['refresh_interval'])) { |
| | | $field_id = 'rcmfd_refresh_interval'; |
| | | $select_refresh_interval = new html_select(array('name' => '_refresh_interval', 'id' => $field_id)); |
| | | |
| | | $select_refresh_interval->add(rcube_label('never'), 0); |
| | | foreach (array(1, 3, 5, 10, 15, 30, 60) as $min) { |
| | | if (!$config['min_refresh_interval'] || $config['min_refresh_interval'] <= $min * 60) { |
| | | $label = rcube_label(array('name' => 'everynminutes', 'vars' => array('n' => $min))); |
| | | $select_refresh_interval->add($label, $min); |
| | | } |
| | | } |
| | | |
| | | $blocks['main']['options']['refresh_interval'] = array( |
| | | 'title' => html::label($field_id, Q(rcube_label('refreshinterval'))), |
| | | 'content' => $select_refresh_interval->show($config['refresh_interval']/60), |
| | | ); |
| | | } |
| | | |
| | |
| | | 'content' => $input_pagesize->show($size ? $size : 50), |
| | | ); |
| | | } |
| | | |
| | | if (!isset($no_override['keep_alive'])) { |
| | | $field_id = 'rcmfd_keep_alive'; |
| | | $select_keep_alive = new html_select(array('name' => '_keep_alive', 'id' => $field_id)); |
| | | |
| | | foreach(array(1, 3, 5, 10, 15, 30, 60) as $min) |
| | | if((!$config['min_keep_alive'] || $config['min_keep_alive'] <= $min * 60) |
| | | && (!$config['session_lifetime'] || $config['session_lifetime'] > $min)) { |
| | | $select_keep_alive->add(rcube_label(array('name' => 'everynminutes', 'vars' => array('n' => $min))), $min); |
| | | } |
| | | |
| | | $blocks['new_message']['options']['keep_alive'] = array( |
| | | 'title' => html::label($field_id, Q(rcube_label('keepalive'))), |
| | | 'content' => $select_keep_alive->show($config['keep_alive']/60), |
| | | ); |
| | | } |
| | | |
| | | if (!isset($no_override['check_all_folders'])) { |
| | | $field_id = 'rcmfd_check_all_folders'; |
| | | $input_check_all = new html_checkbox(array('name' => '_check_all_folders', 'id' => $field_id, 'value' => 1)); |
| | |
| | | $blocks = array( |
| | | 'main' => array('name' => Q(rcube_label('mainoptions'))), |
| | | ); |
| | | |
| | | // show checkbox to open message view in new window |
| | | if (!isset($no_override['message_extwin'])) { |
| | | $field_id = 'rcmfd_message_extwin'; |
| | | $input_msgextwin = new html_checkbox(array('name' => '_message_extwin', 'id' => $field_id, 'value' => 1)); |
| | | |
| | | $blocks['main']['options']['message_extwin'] = array( |
| | | 'title' => html::label($field_id, Q(rcube_label('showinextwin'))), |
| | | 'content' => $input_msgextwin->show($config['message_extwin']?1:0), |
| | | ); |
| | | } |
| | | |
| | | // show checkbox for HTML/plaintext messages |
| | | if (!isset($no_override['prefer_html'])) { |
| | |
| | | |
| | | $blocks = array( |
| | | 'main' => array('name' => Q(rcube_label('mainoptions'))), |
| | | 'spellcheck' => array('name' => Q(rcube_label('spellcheckoptions'))), |
| | | 'sig' => array('name' => Q(rcube_label('signatureoptions'))), |
| | | 'spellcheck' => array('name' => Q(rcube_label('spellcheckoptions'))), |
| | | ); |
| | | |
| | | // show checkbox to compose messages in a new window |
| | | if (!isset($no_override['compose_extwin'])) { |
| | | $field_id = 'rcmfdcompose_extwin'; |
| | | $input_compextwin = new html_checkbox(array('name' => '_compose_extwin', 'id' => $field_id, 'value' => 1)); |
| | | |
| | | $blocks['main']['options']['compose_extwin'] = array( |
| | | 'title' => html::label($field_id, Q(rcube_label('composeextwin'))), |
| | | 'content' => $input_compextwin->show($config['compose_extwin']?1:0), |
| | | ); |
| | | } |
| | | |
| | | if (!isset($no_override['htmleditor'])) { |
| | | $field_id = 'rcmfd_htmleditor'; |
| | |
| | | |
| | | if (!isset($no_override['reply_mode'])) { |
| | | $field_id = 'rcmfd_reply_mode'; |
| | | $select_replymode = new html_select(array('name' => '_reply_mode', 'id' => $field_id, |
| | | 'onchange' => "\$('#rcmfd_sig_above').attr('disabled',this.selectedIndex<2)")); |
| | | $select_replymode = new html_select(array('name' => '_reply_mode', 'id' => $field_id)); |
| | | $select_replymode->add(rcube_label('replyempty'), -1); |
| | | $select_replymode->add(rcube_label('replybottomposting'), 0); |
| | | $select_replymode->add(rcube_label('replytopposting'), 1); |
| | |
| | | ); |
| | | } |
| | | |
| | | if (!isset($no_override['sig_above'])) { |
| | | $field_id = 'rcmfd_sig_above'; |
| | | $select_sigabove = new html_select(array('name' => '_sig_above', 'id' => $field_id, 'disabled' => $config['reply_mode'] < 1)); |
| | | $select_sigabove->add(rcube_label('belowquote'), 0); |
| | | $select_sigabove->add(rcube_label('abovequote'), 1); |
| | | |
| | | $blocks['sig']['options']['sig_above'] = array( |
| | | 'title' => html::label($field_id, Q(rcube_label('replysignaturepos'))), |
| | | 'content' => $select_sigabove->show($config['sig_above']?1:0), |
| | | ); |
| | | } |
| | | |
| | | if (!isset($no_override['strip_existing_sig'])) { |
| | | $field_id = 'rcmfd_strip_existing_sig'; |
| | | $input_stripexistingsig = new html_checkbox(array('name' => '_strip_existing_sig', 'id' => $field_id, 'value' => 1)); |
| | |
| | | } |
| | | |
| | | if (!isset($no_override['default_font'])) { |
| | | $field_id = 'rcmfd_default_font'; |
| | | $fonts = rcube_fontdefs(); |
| | | $default_font = $config['default_font'] ? $config['default_font'] : 'Verdana'; |
| | | $field_id = 'rcmfd_default_font'; |
| | | $fonts = rcube_fontdefs(); |
| | | $selected = $config['default_font']; |
| | | |
| | | $select = '<select name="_default_font" id="'.$field_id.'">'; |
| | | $select .= '<option value=""' . (!$selected ? ' selected="selected"' : '') . '>---</option>'; |
| | | foreach ($fonts as $fname => $font) |
| | | $select .= '<option value="'.$fname.'"' |
| | | . ($fname == $default_font ? ' selected="selected"' : '') |
| | | . ($fname == $selected ? ' selected="selected"' : '') |
| | | . ' style=\'font-family: ' . $font . '\'>' |
| | | . Q($fname) . '</option>'; |
| | | $select .= '</select>'; |
| | |
| | | ); |
| | | |
| | | if (!isset($no_override['default_addressbook']) |
| | | && ($books = $RCMAIL->get_address_sources(true)) |
| | | && ($books = $RCMAIL->get_address_sources(true, true)) |
| | | ) { |
| | | $field_id = 'rcmfd_default_addressbook'; |
| | | $select_abook = new html_select(array('name' => '_default_addressbook', 'id' => $field_id)); |
| | |
| | | } |
| | | |
| | | $blocks['main']['options']['default_addressbook'] = array( |
| | | 'title' => html::label($field_id, Q(rcube_label('defaultaddressbook'))), |
| | | 'title' => html::label($field_id, Q(rcube_label('defaultabook'))), |
| | | 'content' => $select_abook->show($config['default_addressbook']), |
| | | ); |
| | | } |
| | |
| | | 'purge' => 'folders.inc', |
| | | 'folder-size' => 'folders.inc', |
| | | 'add-identity' => 'edit_identity.inc', |
| | | 'add-response' => 'edit_response.inc', |
| | | 'save-response' => 'edit_response.inc', |
| | | 'delete-response' => 'responses.inc', |
| | | )); |