| | |
| | | +-----------------------------------------------------------------------+ |
| | | | program/steps/addressbook/edit.inc | |
| | | | | |
| | | | This file is part of the RoundCube Webmail client | |
| | | | Copyright (C) 2005, RoundCube Dev. - Switzerland | |
| | | | This file is part of the Roundcube Webmail client | |
| | | | Copyright (C) 2005-2007, Roundcube Dev. - Switzerland | |
| | | | Licensed under the GNU GPL | |
| | | | | |
| | | | PURPOSE: | |
| | |
| | | */ |
| | | |
| | | |
| | | if (($_GET['_cid'] || $_POST['_cid']) && $_action=='edit') |
| | | { |
| | | $cid = $_POST['_cid'] ? $_POST['_cid'] : $_GET['_cid']; |
| | | $DB->query("SELECT * FROM ".get_table_name('contacts')." |
| | | WHERE contact_id=? |
| | | AND user_id=? |
| | | AND del<>'1'", |
| | | $cid, |
| | | $_SESSION['user_id']); |
| | | |
| | | $CONTACT_RECORD = $DB->fetch_assoc(); |
| | | if (($cid = get_input_value('_cid', RCUBE_INPUT_GPC)) && ($record = $CONTACTS->get_record($cid, true))) |
| | | $OUTPUT->set_env('cid', $record['ID']); |
| | | |
| | | if (is_array($CONTACT_RECORD)) |
| | | $OUTPUT->add_script(sprintf("%s.set_env('cid', '%s');", $JS_OBJECT_NAME, $CONTACT_RECORD['contact_id'])); |
| | | } |
| | | |
| | | // adding not allowed here |
| | | if ($CONTACTS->readonly) { |
| | | $OUTPUT->show_message('sourceisreadonly'); |
| | | rcmail_overwrite_action('show'); |
| | | return; |
| | | } |
| | | |
| | | |
| | | function rcmail_contact_editform($attrib) |
| | | { |
| | | global $CONTACT_RECORD, $JS_OBJECT_NAME; |
| | | { |
| | | global $RCMAIL, $CONTACTS, $OUTPUT; |
| | | |
| | | if (!$CONTACT_RECORD && $GLOBALS['_action']!='add') |
| | | return rcube_label('contactnotfound'); |
| | | |
| | | // add some labels to client |
| | | rcube_add_label('noemailwarning'); |
| | | rcube_add_label('nonamewarning'); |
| | | |
| | | list($form_start, $form_end) = get_form_tags($attrib); |
| | | unset($attrib['form']); |
| | | |
| | | |
| | | // a specific part is requested |
| | | if ($attrib['part']) |
| | | { |
| | | $out = $form_start; |
| | | $out .= rcmail_get_edit_field($attrib['part'], $CONTACT_RECORD[$attrib['part']], $attrib); |
| | | return $out; |
| | | // check if we have a valid result |
| | | if ($RCMAIL->action != 'add' |
| | | && !(($result = $CONTACTS->get_result()) && ($record = $result->first())) |
| | | ) { |
| | | $OUTPUT->show_message('contactnotfound'); |
| | | return false; |
| | | } |
| | | |
| | | // add some labels to client |
| | | $OUTPUT->add_label('noemailwarning', 'nonamewarning'); |
| | | |
| | | // return the complete address edit form as table |
| | | $out = "$form_start<table>\n\n"; |
| | | $i_size = !empty($attrib['size']) ? $attrib['size'] : 40; |
| | | $t_rows = !empty($attrib['textarearows']) ? $attrib['textarearows'] : 6; |
| | | $t_cols = !empty($attrib['textareacols']) ? $attrib['textareacols'] : 40; |
| | | |
| | | $a_show_cols = array('name', 'firstname', 'surname', 'email'); |
| | | foreach ($a_show_cols as $col) |
| | | { |
| | | $attrib['id'] = 'rcmfd_'.$col; |
| | | $title = rcube_label($col); |
| | | $value = rcmail_get_edit_field($col, $CONTACT_RECORD[$col], $attrib); |
| | | $out .= sprintf("<tr><td class=\"title\"><label for=\"%s\">%s</label></td><td>%s</td></tr>\n", |
| | | $attrib['id'], |
| | | $title, |
| | | $value); |
| | | } |
| | | $form = array( |
| | | 'info' => array( |
| | | 'name' => rcube_label('contactproperties'), |
| | | 'content' => array( |
| | | 'name' => array('type' => 'text', 'size' => $i_size), |
| | | 'firstname' => array('type' => 'text', 'size' => $i_size), |
| | | 'surname' => array('type' => 'text', 'size' => $i_size), |
| | | 'email' => array('type' => 'text', 'size' => $i_size), |
| | | ), |
| | | ), |
| | | ); |
| | | |
| | | $out .= "\n</table>$form_end"; |
| | | |
| | | return $out; |
| | | } |
| | | list($form_start, $form_end) = get_form_tags($attrib); |
| | | unset($attrib['form']); |
| | | |
| | | // return the complete address edit form as table |
| | | $out = rcmail_contact_form($form, $record); |
| | | |
| | | return $form_start . $out . $form_end; |
| | | } |
| | | |
| | | |
| | | // similar function as in /steps/settings/edit_identity.inc |
| | | function get_form_tags($attrib) |
| | | { |
| | | global $CONTACT_RECORD, $OUTPUT, $JS_OBJECT_NAME, $EDIT_FORM, $SESS_HIDDEN_FIELD; |
| | | { |
| | | global $CONTACTS, $EDIT_FORM, $RCMAIL; |
| | | |
| | | $form_start = ''; |
| | | if (!strlen($EDIT_FORM)) |
| | | { |
| | | $hiddenfields = new hiddenfield(array('name' => '_task', 'value' => $GLOBALS['_task'])); |
| | | $hiddenfields->add(array('name' => '_action', 'value' => 'save')); |
| | | |
| | | if ($_GET['_framed'] || $_POST['_framed']) |
| | | $hiddenfields->add(array('name' => '_framed', 'value' => 1)); |
| | | |
| | | if ($CONTACT_RECORD['contact_id']) |
| | | $hiddenfields->add(array('name' => '_cid', 'value' => $CONTACT_RECORD['contact_id'])); |
| | | |
| | | $form_start = !strlen($attrib['form']) ? '<form name="form" action="./" method="post">' : ''; |
| | | $form_start .= "\n$SESS_HIDDEN_FIELD\n"; |
| | | $form_start .= $hiddenfields->show(); |
| | | $form_start = $form_end = ''; |
| | | |
| | | if (empty($EDIT_FORM)) { |
| | | $hiddenfields = new html_hiddenfield(array( |
| | | 'name' => '_source', 'value' => get_input_value('_source', RCUBE_INPUT_GPC))); |
| | | $hiddenfields->add(array('name' => '_gid', 'value' => $CONTACTS->group_id)); |
| | | |
| | | if (($result = $CONTACTS->get_result()) && ($record = $result->first())) |
| | | $hiddenfields->add(array('name' => '_cid', 'value' => $record['ID'])); |
| | | |
| | | $form_start = $RCMAIL->output->request_form(array( |
| | | 'name' => "form", 'method' => "post", |
| | | 'task' => $RCMAIL->task, 'action' => 'save', |
| | | 'request' => 'save.'.intval($record['ID']), |
| | | 'noclose' => true) + $attrib, $hiddenfields->show()); |
| | | $form_end = !strlen($attrib['form']) ? '</form>' : ''; |
| | | |
| | | $EDIT_FORM = !empty($attrib['form']) ? $attrib['form'] : 'form'; |
| | | $RCMAIL->output->add_gui_object('editform', $EDIT_FORM); |
| | | } |
| | | |
| | | $form_end = (strlen($EDIT_FORM) && !strlen($attrib['form'])) ? '</form>' : ''; |
| | | $form_name = strlen($attrib['form']) ? $attrib['form'] : 'form'; |
| | | |
| | | if (!strlen($EDIT_FORM)) |
| | | $OUTPUT->add_script("$JS_OBJECT_NAME.gui_object('editform', '$form_name');"); |
| | | |
| | | $EDIT_FORM = $form_name; |
| | | |
| | | return array($form_start, $form_end); |
| | | } |
| | | return array($form_start, $form_end); |
| | | } |
| | | |
| | | |
| | | $OUTPUT->add_handler('contacteditform', 'rcmail_contact_editform'); |
| | | |
| | | if (!$CONTACT_RECORD && template_exists('addcontact')) |
| | | parse_template('addcontact'); |
| | | if (!$CONTACTS->get_result() && $OUTPUT->template_exists('contactadd')) |
| | | $OUTPUT->send('contactadd'); |
| | | |
| | | // this will be executed if no template for addcontact exists |
| | | parse_template('editcontact'); |
| | | ?> |
| | | $OUTPUT->send('contactedit'); |