list.inc
来自「开源邮件管理系统」· INC 代码 · 共 35 行
INC
35 行
<?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: list.inc 543 2007-04-28 18:07:12Z thomasb $*/// 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 listrcmail_js_contacts_list($result); // send response$OUTPUT->send();?>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?