source: subversion/branches/devel-vnext/program/steps/addressbook/delete.inc @ 589

Last change on this file since 589 was 589, checked in by till, 6 years ago

+ rc1 based checkin

File size: 1.8 KB
Line 
1<?php
2
3/*
4 +-----------------------------------------------------------------------+
5 | program/steps/addressbook/delete.inc                                  |
6 |                                                                       |
7 | This file is part of the RoundCube Webmail client                     |
8 | Copyright (C) 2005-2007, RoundCube Dev. - Switzerland                 |
9 | Licensed under the GNU GPL                                            |
10 |                                                                       |
11 | PURPOSE:                                                              |
12 |   Delete the submitted contacts (CIDs) from the users address book    |
13 |                                                                       |
14 +-----------------------------------------------------------------------+
15 | Author: Thomas Bruederli <roundcube@gmail.com>                        |
16 +-----------------------------------------------------------------------+
17
18 $Id: delete.inc 573 2007-05-18 11:29:25Z thomasb $
19
20*/
21
22if (($cid = get_input_value('_cid', RCUBE_INPUT_POST)) && preg_match('/^[0-9]+(,[0-9]+)*$/', $cid))
23  {
24  $deleted = $CONTACTS->delete($cid);
25  if (!$deleted)
26    {
27    // send error message
28    exit;
29    }
30
31  // count contacts for this user
32  $result = $CONTACTS->count();
33
34  // update message count display
35  $OUTPUT->set_env('pagecount', ceil($result->count / $CONTACTS->page_size));
36  $OUTPUT->command('set_rowcount', rcmail_get_rowcount_text($result->count));
37
38  // add new rows from next page (if any)
39  $pages = ceil(($result->count + $deleted) / $CONTACTS->page_size);
40  if ($_GET['_from'] != 'show' && $pages > 1 && $CONTACTS->list_page < $pages)
41    rcmail_js_contacts_list($CONTACTS->list_records(null, -$deleted));
42
43  // send response
44  $OUTPUT->send();
45  }
46
47exit;
48?>
Note: See TracBrowser for help on using the repository browser.