localbackend == 0) { plain_error_message(_("No personal address book is defined. Contact administrator.")); exit(); } $current_backend = $abook->localbackend; if (sqgetGlobalVar('new_bnum',$new_backend,SQ_POST) && array_key_exists($new_backend,$abook->backends)) { $current_backend = (int) $new_backend; } $abook_selection = ' '; $list_backends = array(); if (count($abook->backends) > 1) { foreach($abook->get_backend_list() as $oBackend) { if ($oBackend->listing) { $list_backends[$oBackend->bnum]=$oBackend->sname; } } if (count($list_backends)>1) { $abook_selection = addSelect('new_bnum',$list_backends,$current_backend,true) .addSubmit(_("Change"),'change_abook'); } } $defdata = array(); $formerror = ''; $abortform = false; $showaddrlist = true; $defselected = array(); $form_url = 'addressbook.php'; /* Handle user's actions */ //if(sqgetGlobalVar('REQUEST_METHOD', $req_method, SQ_SERVER) && $req_method == 'POST' && !isset($change_abook)) { if(sqgetGlobalVar('REQUEST_METHOD', $req_method, SQ_SERVER) && $req_method == 'POST') { /************************************************** * Add new address * **************************************************/ if (isset($addaddr)) { if (isset($backend)) { $r = $abook->add($addaddr, $backend); } else { $r = $abook->add($addaddr, $abook->localbackend); } /* Handle error messages */ if (!$r) { /* Remove backend name from error string */ $errstr = $abook->error; $errstr = ereg_replace('^\[.*\] *', '', $errstr); $formerror = $errstr; $showaddrlist = false; $defdata = $addaddr; } } else { /************************************************ * Delete address(es) * ************************************************/ if ((!empty($deladdr)) && sizeof($sel) > 0) { $orig_sel = $sel; sort($sel); /* The selected addresses are identidied by "backend:nickname". * * Sort the list and process one backend at the time */ $prevback = -1; $subsel = array(); $delfailed = false; for ($i = 0 ; (($i < sizeof($sel)) && !$delfailed) ; $i++) { list($sbackend, $snick) = explode(':', $sel[$i]); /* When we get to a new backend, process addresses in * * previous one. */ if ($prevback != $sbackend && $prevback != -1) { $r = $abook->remove($subsel, $prevback); if (!$r) { $formerror = $abook->error; $i = sizeof($sel); $delfailed = true; break; } $subsel = array(); } /* Queue for processing */ array_push($subsel, $snick); $prevback = $sbackend; } if (!$delfailed) { $r = $abook->remove($subsel, $prevback); if (!$r) { /* Handle errors */ $formerror = $abook->error; $delfailed = true; } } if ($delfailed) { $showaddrlist = true; $defselected = $orig_sel; } } else { /*********************************************** * Update/modify address * ***********************************************/ if (!empty($editaddr)) { /* Stage one: Copy data into form */ if (isset($sel) && sizeof($sel) > 0) { if(sizeof($sel) > 1) { $formerror = _("You can only edit one address at the time"); $showaddrlist = true; $defselected = $sel; } else { $abortform = true; list($ebackend, $enick) = explode(':', current($sel)); $olddata = $abook->lookup($enick, $ebackend); // Test if $olddata really contains anything and return an error message if it doesn't if (!$olddata) { error_box(nl2br(htmlspecialchars($abook->error))); } else { /* Display the "new address" form */ abook_create_form($form_url,'editaddr',_("Update address"),_("Update address"),$olddata); echo addHidden('oldnick', $olddata['nickname']). addHidden('backend', $olddata['backend']). addHidden('doedit', '1'). ''; } } } elseif ($doedit == 1) { /* Stage two: Write new data */ $newdata = $editaddr; $r = $abook->modify($oldnick, $newdata, $backend); /* Handle error messages */ if (!$r) { /* Display error */ echo html_tag( 'table', html_tag( 'tr', html_tag( 'td', "\n". '' . _("ERROR") . ': ' . $abook->error . '' ."\n", 'center' ) ), 'center', '', 'width="100%"' ); /* Display the "new address" form again */ abook_create_form($form_url,'editaddr',_("Update address"),_("Update address"),$newdata); echo addHidden('oldnick', $oldnick). addHidden('backend', $backend). addHidden('doedit', '1'). "\n" . ''; $abortform = true; } } else { /** * $editaddr is set, but $sel (address selection in address listing) * and $doedit (address edit form) are not set. * Assume that user clicked on "Edit address" without selecting any address. */ $formerror = _("Please select address that you want to edit"); $showaddrlist = true; } /* end of edit stage detection */ } /* !empty($editaddr) - Update/modify address */ } /* (!empty($deladdr)) && sizeof($sel) > 0 - Delete address(es) */ } /* !empty($addaddr['nickname']) - Add new address */ // Some times we end output before forms are printed if($abortform) { echo "\n"; exit(); } } /* =================================================================== * * The following is only executed on a GET request, or on a POST when * * a user is added, or when "delete" or "modify" was successful. * * =================================================================== */ /* Display error messages */ if (!empty($formerror)) { plain_error_message(nl2br(htmlspecialchars($formerror))); } /* Display the address management part */ $addresses = array(); while (list($k, $backend) = each ($abook->backends)) { $a = array(); $a['BackendID'] = $backend->bnum; $a['BackendSource'] = $backend->sname; $a['BackendWritable'] = $backend->writeable; $a['Addresses'] = array(); $alist = $abook->list_addr($backend->bnum); usort($alist,'alistcmp'); $start = 200; $count = count($alist); if ($start >= $count) $start = 0; $alist = array_slice($alist,$start,15); while(list($undef,$row) = each($alist)) { $contact = array ( 'FirstName' => htmlspecialchars($row['firstname']), 'LastName' => htmlspecialchars($row['lastname']), 'FullName' => htmlspecialchars($row['name']), 'NickName' => htmlspecialchars($row['nickname']), 'Email' => htmlspecialchars($row['email']), 'FullAddress' => htmlspecialchars($abook->full_address($row)), 'Info' => htmlspecialchars($row['label']), 'Extra' => (isset($row['extra']) ? $row['extra'] : NULL), ); $a['Addresses'][] = $contact; } $addresses[$backend->bnum] = $a; } if ($showaddrlist) { echo addForm($form_url, 'post'); $oTemplate->assign('addresses', $addresses); $oTemplate->assign('current_backend', $current_backend); $oTemplate->assign('backends', $list_backends); $oTemplate->display('addressbook_list.tpl'); echo "\n"; } /* Display the "new address" form */ echo '' . "\n"; abook_create_form($form_url,'addaddr',_("Add to address book"),_("Add address"),$defdata); echo "\n"; /* Hook for extra address book blocks */ echo "\n"; do_hook('addressbook_bottom'); echo "\n\n"; $oTemplate->display('footer.tpl'); ?>