diff options
| author | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2007-08-07 21:02:12 +0000 |
|---|---|---|
| committer | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2007-08-07 21:02:12 +0000 |
| commit | 04107213faada624e58c82712ce1429a9d6db8a2 (patch) | |
| tree | abf2b1b5689dd080a34b383d7651e3a58f6c7c55 /roundcubemail/program/include/rcube_contacts.inc | |
| parent | f46626aaf2426cb1374628c8c4194c64bc716fd6 (diff) | |
Documentation, code style and cleanup
git-svn-id: https://svn.roundcube.net/trunk@666 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/include/rcube_contacts.inc')
| -rw-r--r-- | roundcubemail/program/include/rcube_contacts.inc | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/roundcubemail/program/include/rcube_contacts.inc b/roundcubemail/program/include/rcube_contacts.inc index c6dc40dfd..9ba965e2f 100644 --- a/roundcubemail/program/include/rcube_contacts.inc +++ b/roundcubemail/program/include/rcube_contacts.inc @@ -19,6 +19,12 @@ */ + +/** + * Model class for the local address book database + * + * @package Addressbook + */ class rcube_contacts { var $db = null; @@ -55,7 +61,7 @@ class rcube_contacts /** * PHP 4 object constructor * - * @see rcube_contacts::__construct + * @see rcube_contacts::__construct() */ function rcube_contacts($dbconn, $user) { @@ -125,6 +131,7 @@ class rcube_contacts * List the current set of contact records * * @param array List of cols to show + * @param int Only return this number of records, use negative values for tail * @return array Indexed list of contact records, each a hash array */ function list_records($cols=null, $subset=0) |
