-localized pagetitle in Settings and Address book
-removed useless and not working code
| | |
| | | CHANGELOG RoundCube Webmail |
| | | --------------------------- |
| | | |
| | | 2008/05/21 (alec) |
| | | ---------- |
| | | - Localized pagetitle in Settings |
| | | |
| | | 2008/05/19 (alec) |
| | | ---------- |
| | | - Fixed Mysql DDL for default identities creation (#1485070) |
| | |
| | | |
| | | return $out; |
| | | } |
| | | |
| | | |
| | | $OUTPUT->set_pagetitle(rcube_label('addressbook')); |
| | | |
| | | // register UI objects |
| | | $OUTPUT->add_handlers(array( |
| | |
| | | |
| | | */ |
| | | |
| | | $OUTPUT->set_pagetitle(rcube_label('identities')); |
| | | |
| | | if (($_GET['_iid'] || $_POST['_iid']) && $RCMAIL->action=='edit-identity') |
| | | { |
| | | $IDENTITY_RECORD = $USER->get_identity(get_input_value('_iid', RCUBE_INPUT_GPC)); |
| | | |
| | | if (is_array($IDENTITY_RECORD)) |
| | | $OUTPUT->set_env('iid', $IDENTITY_RECORD['identity_id']); |
| | | |
| | | $OUTPUT->set_pagetitle(rcube_label('edititem')); |
| | | } |
| | | else |
| | | $OUTPUT->set_pagetitle(rcube_label('newitem')); |
| | | |
| | | |
| | | $OUTPUT->include_script('list.js'); |
| | |
| | | |
| | | */ |
| | | |
| | | |
| | | if ($USER->ID) |
| | | $OUTPUT->set_pagetitle(rcube_label('settingsfor') . " ". $USER->get_username()); |
| | | |
| | | $OUTPUT->set_pagetitle(rcube_label('preferences')); |
| | | |
| | | |
| | | function rcmail_user_prefs_form($attrib) |
| | |
| | | |
| | | */ |
| | | |
| | | if ($USER_DATA = $DB->fetch_assoc($sql_result)) |
| | | $OUTPUT->set_pagetitle(sprintf('%s (%s@%s)', rcube_label('identities'), $USER_DATA['username'], $USER_DATA['mail_host'])); |
| | | $OUTPUT->set_pagetitle(rcube_label('identities')); |
| | | |
| | | $OUTPUT->include_script('list.js'); |
| | | |
| | |
| | | |
| | | */ |
| | | |
| | | $OUTPUT->set_pagetitle(rcube_label('folders')); |
| | | |
| | | // init IMAP connection |
| | | $RCMAIL->imap_init(true); |
| | | |