| | |
| | | |
| | | $table->add('title', html::label($field_id, Q(rcube_label('keepalive')))); |
| | | $table->add(null, $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)); |
| | | $table->add('title', html::label($field_id, Q(rcube_label('checkallfolders')))); |
| | | $table->add(null, $input_check_all->show($config['check_all_folders']?1:0)); |
| | | } |
| | | |
| | | $out .= html::tag('fieldset', null, html::tag('legend', null, Q(rcube_label('mailboxview'))) . $table->show($attrib)); |