You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.3 KiB
PHP
35 lines
1.3 KiB
PHP
<?php
|
|
|
|
/*
|
|
+-----------------------------------------------------------------------+
|
|
| program/steps/addressbook/list.inc |
|
|
| |
|
|
| This file is part of the RoundCube Webmail client |
|
|
| Copyright (C) 2005-2007, RoundCube Dev. - Switzerland |
|
|
| Licensed under the GNU GPL |
|
|
| |
|
|
| PURPOSE: |
|
|
| Send contacts list to client (as remote response) |
|
|
| |
|
|
+-----------------------------------------------------------------------+
|
|
| Author: Thomas Bruederli <roundcube@gmail.com> |
|
|
+-----------------------------------------------------------------------+
|
|
|
|
$Id$
|
|
|
|
*/
|
|
|
|
// get contacts for this user
|
|
$result = $CONTACTS->list_records();
|
|
|
|
// update message count display
|
|
$OUTPUT->set_env('pagecount', ceil($result->count / $CONTACTS->page_size));
|
|
$OUTPUT->command('set_rowcount', rcmail_get_rowcount_text($rowcount));
|
|
|
|
// create javascript list
|
|
rcmail_js_contacts_list($result);
|
|
|
|
// send response
|
|
$OUTPUT->send();
|
|
|
|
?>
|