| | |
| | | $select_default_font->add('', ''); |
| | | |
| | | $fonts = rcmail::font_defs(); |
| | | foreach ($fonts as $fname => $font) { |
| | | foreach (array_keys($fonts) as $fname) { |
| | | $select_default_font->add($fname, $fname); |
| | | } |
| | | |
| | |
| | | $blocks['main']['options']['reply_all_mode'] = array( |
| | | 'title' => html::label($field_id, rcube::Q($RCMAIL->gettext('replyallmode'))), |
| | | 'content' => $select->show(intval($config['reply_all_mode'])), |
| | | ); |
| | | } |
| | | |
| | | if (!isset($no_override['compose_save_localstorage'])) { |
| | | if (!$current) { |
| | | continue 2; |
| | | } |
| | | |
| | | $field_id = 'rcmfd_compose_save_localstorage'; |
| | | $input = new html_checkbox(array('name' => '_compose_save_localstorage', 'id' => $field_id, 'value' => 1)); |
| | | |
| | | $blocks['advanced']['options']['compose_save_localstorage'] = array( |
| | | 'title' => html::label($field_id, rcube::Q($RCMAIL->gettext('savelocalstorage'))), |
| | | 'content' => $input->show($config['compose_save_localstorage']?1:0), |
| | | ); |
| | | } |
| | | |
| | |
| | | $tagname = $attrib['tagname']; |
| | | $tabs = array(); |
| | | |
| | | foreach ($plugin['actions'] as $k => $action) { |
| | | foreach ($plugin['actions'] as $action) { |
| | | if (!$action['command'] && !$action['href'] && $action['action']) { |
| | | $action['href'] = $RCMAIL->url(array('_action' => $action['action'])); |
| | | } |