Redesign of the identities settings + add config option to disable multiple identities
1 files deleted
14 files modified
| | |
| | | CHANGELOG RoundCube Webmail |
| | | --------------------------- |
| | | |
| | | 2008/09/15 (thomasb) |
| | | ---------- |
| | | - Redesign of the identities settings (#1484042) |
| | | - Add config option to disable creation/deletion of identities (#1484498) |
| | | |
| | | 2008/09/15 (alec) |
| | | ---------- |
| | | - Added 'sendmail_delay' option to restrict messages sending interval (#1484491) |
| | |
| | | // don't allow these settings to be overriden by the user |
| | | $rcmail_config['dont_override'] = array(); |
| | | |
| | | // allow users to add and delete sender identities |
| | | $rcmail_config['multiple_identities'] = true; |
| | | |
| | | // try to load host-specific configuration |
| | | // see http://trac.roundcube.net/wiki/Howto_Config for more details |
| | | $rcmail_config['include_host_config'] = false; |
| | |
| | | $this->pagetitle = $title; |
| | | } |
| | | |
| | | |
| | | /** |
| | | * Getter for the current page title |
| | | * |
| | | * @return string The page title |
| | | */ |
| | | public function get_pagetitle() |
| | | { |
| | | if (!empty($this->pagetitle)) { |
| | | $title = $this->pagetitle; |
| | | } |
| | | else if ($this->env['task'] == 'login') { |
| | | $title = rcube_label(array('name' => 'welcome', 'vars' => array('product' => $this->config['product_name']))); |
| | | } |
| | | else { |
| | | $title = ucfirst($this->env['task']); |
| | | } |
| | | |
| | | return $title; |
| | | } |
| | | |
| | | |
| | | /** |
| | | * Set skin |
| | | */ |
| | |
| | | implode(',', $args) |
| | | ); |
| | | } |
| | | // add command to set page title |
| | | if ($this->ajax_call && !empty($this->pagetitle)) { |
| | | $out .= sprintf( |
| | | "this.set_pagetitle('%s');\n", |
| | | JQ((!empty($this->config['product_name']) ? $this->config['product_name'].' :: ' : '') . $this->pagetitle) |
| | | ); |
| | | } |
| | | |
| | | return $out; |
| | | } |
| | | |
| | |
| | | $condition = preg_replace( |
| | | array( |
| | | '/session:([a-z0-9_]+)/i', |
| | | '/config:([a-z0-9_]+)/i', |
| | | '/config:([a-z0-9_]+)(:([a-z0-9_]+))?/i', |
| | | '/env:([a-z0-9_]+)/i', |
| | | '/request:([a-z0-9_]+)/ie' |
| | | ), |
| | | array( |
| | | "\$_SESSION['\\1']", |
| | | "\$this->config['\\1']", |
| | | "\$this->app->config->get('\\1',get_boolean('\\3'))", |
| | | "\$this->env['\\1']", |
| | | "get_input_value('\\1', RCUVE_INPUT_GPC)" |
| | | ), |
| | |
| | | } |
| | | return $ver; |
| | | } |
| | | if ($object=='steptitle') { |
| | | return Q($this->get_pagetitle()); |
| | | } |
| | | if ($object=='pagetitle') { |
| | | $task = $this->env['task']; |
| | | $title = !empty($this->config['product_name']) ? $this->config['product_name'].' :: ' : ''; |
| | | |
| | | if (!empty($this->pagetitle)) { |
| | | $title .= $this->pagetitle; |
| | | } |
| | | else if ($task == 'login') { |
| | | $title = rcube_label(array('name' => 'welcome', 'vars' => array('product' => $this->config['product_name']))); |
| | | } |
| | | else { |
| | | $title .= ucfirst($task); |
| | | } |
| | | |
| | | $title .= $this->get_pagetitle(); |
| | | return Q($title); |
| | | } |
| | | break; |
| | |
| | | case 'settings': |
| | | this.enable_command('preferences', 'identities', 'save', 'folders', true); |
| | | |
| | | if (this.env.action=='identities' || this.env.action=='edit-identity' || this.env.action=='add-identity') |
| | | this.enable_command('edit', 'add', 'delete', true); |
| | | if (this.env.action=='identities' || this.env.action=='edit-identity' || this.env.action=='add-identity') { |
| | | this.enable_command('add', 'delete', this.env.multiple_identities); |
| | | this.enable_command('edit', true); |
| | | } |
| | | |
| | | if (this.env.action=='edit-identity' || this.env.action=='add-identity') |
| | | this.enable_command('save', true); |
| | |
| | | $messages['importwait'] = 'Daten werden importiert, bitte warten...'; |
| | | $messages['importerror'] = 'Import fehlgeschlagen! Die hochgeladene Datei ist nicht im vCard-Format.'; |
| | | $messages['importconfirm'] = '<b>Es wurden $inserted Adressen erfolgreich importiert und $skipped bestehende Einträge übersprungen</b>:<p><em>$names</em></p>'; |
| | | $messages['opnotpermitted'] = 'Operation nicht erlaubt!'; |
| | | |
| | | ?> |
| | |
| | | $messages['importwait'] = 'Daten werden importiert, bitte warten...'; |
| | | $messages['importerror'] = 'Import fehlgeschlagen! Die hochgeladene Datei ist nicht im vCard-Format.'; |
| | | $messages['importconfirm'] = 'Es wurden $inserted Adressen erfolgreich importiert und $skipped bestehende Einträge übersprungen:$names'; |
| | | $messages['opnotpermitted'] = 'Operation nicht erlaubt!'; |
| | | |
| | | ?> |
| | |
| | | $messages['importwait'] = 'Importing, please wait...'; |
| | | $messages['importerror'] = 'Import failed! The uploaded file is not a valid vCard file.'; |
| | | $messages['importconfirm'] = '<b>Successfully imported $inserted contacts, $skipped existing entries skipped</b>:<p><em>$names</em></p>'; |
| | | $messages['opnotpermitted'] = 'Operation not permitted!'; |
| | | |
| | | ?> |
| | |
| | | |
| | | if (($ids = get_input_value('_iid', RCUBE_INPUT_GET)) && preg_match('/^[0-9]+(,[0-9]+)*$/', $ids)) |
| | | { |
| | | |
| | | if ($USER->delete_identity($ids)) |
| | | { |
| | | $OUTPUT->show_message('deletedsuccessfully', 'confirmation'); |
| | | if ($RCMAIL->config->get('multiple_identities', true)) { |
| | | if ($USER->delete_identity($ids)) { |
| | | $OUTPUT->show_message('deletedsuccessfully', 'confirmation'); |
| | | } |
| | | else { |
| | | $OUTPUT->show_message('nodeletelastidentity', 'error'); |
| | | } |
| | | } |
| | | else |
| | | { |
| | | $OUTPUT->show_message('nodeletelastidentity', 'error'); |
| | | else { |
| | | $OUTPUT->show_message('opnotpermitted', 'error'); |
| | | } |
| | | |
| | | // send response |
| | | if ($OUTPUT->ajax_call) |
| | | $OUTPUT->send(); |
| | |
| | | |
| | | $OUTPUT->set_pagetitle(rcube_label('identities')); |
| | | |
| | | if (($_GET['_iid'] || $_POST['_iid']) && $RCMAIL->action=='edit-identity') |
| | | { |
| | | 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']); |
| | | } |
| | | |
| | | } |
| | | else if (!$RCMAIL->config->get('multiple_identities', true)) { |
| | | $OUTPUT->show_message('opnotpermitted', 'error'); |
| | | // go to identities page |
| | | rcmail_overwrite_action('identities'); |
| | | return; |
| | | } |
| | | |
| | | $OUTPUT->include_script('list.js'); |
| | | |
| | |
| | | |
| | | $OUTPUT->add_handler('identityform', 'rcube_identity_form'); |
| | | |
| | | $OUTPUT->set_pagetitle(rcube_label(($RCMAIL->action=='add-identity' ? 'newidentity' : 'edititem'))); |
| | | |
| | | if ($RCMAIL->action=='add-identity' && $OUTPUT->template_exists('addidentity')) |
| | | $OUTPUT->send('addidentity'); |
| | | |
| | |
| | | $attrib['id'] = 'rcmIdentitiesList'; |
| | | |
| | | // define list of cols to be displayed |
| | | $a_show_cols = array('name', 'email', 'organization', 'reply-to'); |
| | | $a_show_cols = array('name', 'email'); |
| | | |
| | | // create XHTML table |
| | | $out = rcube_table_output($attrib, $USER->list_identities(), $a_show_cols, 'identity_id'); |
| | |
| | | return $skins; |
| | | } |
| | | |
| | | $OUTPUT->set_env('multiple_identities', $RCMAIL->config->get('multiple_identities', true)); |
| | | |
| | | // register UI objects |
| | | $OUTPUT->add_handlers(array( |
| | |
| | | } |
| | | |
| | | // insert a new identity record |
| | | else |
| | | else if ($RCMAIL->config->get('multiple_identities', true)) |
| | | { |
| | | if ($insert_id = $USER->insert_identity($save_data)) |
| | | { |
| | |
| | | return; |
| | | } |
| | | } |
| | | else |
| | | $OUTPUT->show_message('opnotpermitted', 'error'); |
| | | |
| | | |
| | | // mark all other identities as 'not-default' |
| | |
| | | position: absolute; |
| | | top: 50px; |
| | | left: 220px; |
| | | right: 60px; |
| | | right: 40px; |
| | | height: 22px; |
| | | border-bottom: 1px solid #999999; |
| | | white-space: nowrap; |
| | | /* css hack for IE */ |
| | | width: expression((parseInt(document.documentElement.clientWidth)-280)+'px'); |
| | | width: expression((parseInt(document.documentElement.clientWidth)-260)+'px'); |
| | | } |
| | | |
| | | span.tablink, |
| | |
| | | background-color: #FFFFA6; |
| | | } |
| | | |
| | | #identities-list |
| | | { |
| | | bottom: 60px; |
| | | width: 420px; |
| | | border: 1px solid #999999; |
| | | } |
| | | |
| | | #listbuttons |
| | | { |
| | | position: absolute; |
| | | left: 20px; |
| | | bottom: 18px; |
| | | } |
| | | |
| | | #identities-table |
| | | { |
| | | width: 600px; |
| | | border: 1px solid #999999; |
| | | width: 420px; |
| | | table-layout: fixed; |
| | | background-color: #F9F9F9; |
| | | } |
| | | |
| | | #identities-table tbody td |
| | | { |
| | | cursor: default; |
| | | overflow: hidden; |
| | | text-overflow: ellipsis; |
| | | } |
| | | |
| | | #identities-table thead td.name |
| | | { |
| | | width: 55%; |
| | | } |
| | | |
| | | #identities-table thead td.email |
| | | { |
| | | width: 45%; |
| | | } |
| | | |
| | | #identity-frame |
| | |
| | | |
| | | #identity-details |
| | | { |
| | | margin-top: 30px; |
| | | width: 600px; |
| | | position: absolute; |
| | | top: 95px; |
| | | left: 450px; |
| | | right: 40px; |
| | | bottom: 60px; |
| | | border: 1px solid #999999; |
| | | overflow: auto; |
| | | /* css hack for IE */ |
| | | width: expression((parseInt(document.documentElement.clientWidth)-490)+'px'); |
| | | height: expression((parseInt(document.documentElement.clientHeight)-160)+'px'); |
| | | } |
| | | |
| | | #identity-details table td.title |
| | |
| | | |
| | | <div id="identities-list"> |
| | | <roundcube:object name="identitiesList" id="identities-table" class="records-table" cellspacing="0" summary="Identities list" editIcon="" /> |
| | | </div> |
| | | |
| | | <p><roundcube:button command="add" type="input" label="newidentity" class="button" /></p> |
| | | <p id="listbuttons"> |
| | | <roundcube:button command="add" type="input" label="newidentity" class="button" condition="config:multiple_identities:true" /> |
| | | </p> |
| | | |
| | | <div id="identity-details"> |
| | | <div id="identity-title"><roundcube:label name="edititem" /></div> |
| | | <div id="identity-title"><roundcube:object name="steptitle" /></div> |
| | | |
| | | <div style="padding:15px;"> |
| | | <roundcube:object name="identityform" size="40" /> |
| | | |
| | | <p><br /> |
| | | <roundcube:button command="delete" type="input" class="button" label="delete" /> |
| | | <roundcube:button command="delete" type="input" class="button" label="delete" condition="env:action=='edit-identity'&&config:multiple_identities:true" style="margin-right:0.5em" /> |
| | | <roundcube:button command="save" type="input" class="button mainaction" label="save" /> |
| | | </p> |
| | | </div> |
| | | </div> |
| | | </div> |
| | | |
| | |
| | | |
| | | <div id="identities-list"> |
| | | <roundcube:object name="identitiesList" id="identities-table" class="records-table" cellspacing="0" summary="Identities list" editIcon="" /> |
| | | </div> |
| | | |
| | | <p><roundcube:button command="add" type="input" label="newidentity" class="button" /></p> |
| | | <p id="listbuttons"> |
| | | <roundcube:button command="add" type="input" label="newidentity" class="button" condition="config:multiple_identities:true" /> |
| | | </p> |
| | | |
| | | <div id="identity-details"> |
| | | <div style="margin:10px auto; text-align:center"> |
| | | <img src="/images/rcube_watermark.png" width="245" height="245" alt="RoundCube" /> |
| | | </div> |
| | | </div> |
| | | |
| | | <roundcube:include file="/includes/settingscripts.html" /> |