| | |
| | | +-----------------------------------------------------------------------+ |
| | | | Author: Thomas Bruederli <roundcube@gmail.com> | |
| | | +-----------------------------------------------------------------------+ |
| | | |
| | | $Id$ |
| | | |
| | | */ |
| | | |
| | | // process ajax requests only |
| | |
| | | $deleted = !$plugin['abort'] ? $CONTACTS->delete($cid, $undo_time < 1) : $plugin['result']; |
| | | |
| | | if (!$deleted) { |
| | | $OUTPUT->show_message($plugin['message'] ? $plugin['message'] : 'contactdelerror', 'error'); |
| | | if ($plugin['message']) { |
| | | $error = $plugin['message']; |
| | | } |
| | | else if (($error = $CONTACTS->get_error()) && $error['message']) { |
| | | $error = $error['message']; |
| | | } |
| | | else { |
| | | $error = 'contactdelerror'; |
| | | } |
| | | |
| | | $OUTPUT->show_message($error, 'error'); |
| | | $OUTPUT->command('list_contacts'); |
| | | $OUTPUT->send(); |
| | | } |
| | |
| | | $page = isset($_SESSION['page']) ? $_SESSION['page'] : 1; |
| | | |
| | | // update saved search after data changed |
| | | if (($search_request = $_REQUEST['_search']) && isset($_SESSION['search'][$search_request])) { |
| | | $search = (array)$_SESSION['search'][$search_request]; |
| | | $records = array(); |
| | | |
| | | // Get records from all sources (refresh search) |
| | | foreach ($search as $s => $set) { |
| | | $source = $RCMAIL->get_address_book($s); |
| | | |
| | | // reset page |
| | | $source->set_page(1); |
| | | $source->set_pagesize(9999); |
| | | $source->set_search_set($set); |
| | | |
| | | // get records |
| | | $result = $source->list_records(array('name', 'email')); |
| | | |
| | | if (!$result->count) { |
| | | unset($search[$s]); |
| | | continue; |
| | | } |
| | | |
| | | while ($row = $result->next()) { |
| | | $row['sourceid'] = $s; |
| | | $key = $row['name'] . ':' . $row['sourceid']; |
| | | $records[$key] = $row; |
| | | } |
| | | unset($result); |
| | | |
| | | $search[$s] = $source->get_search_set(); |
| | | } |
| | | |
| | | $_SESSION['search'][$search_request] = $search; |
| | | |
| | | if (($records = rcmail_search_update(true)) !== false) { |
| | | // create resultset object |
| | | $count = count($records); |
| | | $first = ($page-1) * $PAGE_SIZE; |
| | | $result = new rcube_result_set($count, $first); |
| | | $pages = ceil((count($records) + $delcnt) / $PAGE_SIZE); |
| | | |
| | | // get records from the next page to add to the list |
| | | $pages = ceil((count($records) + $delcnt) / $PAGE_SIZE); |
| | | if ($_GET['_from'] != 'show' && $pages > 1 && $page < $pages) { |
| | | // sort the records |
| | | ksort($records, SORT_LOCALE_STRING); |