From 6d969b4d9020560d3491d19a5b0487e325e9bce4 Mon Sep 17 00:00:00 2001 From: thomascube <thomas@roundcube.net> Date: Tue, 07 Aug 2007 17:02:12 -0400 Subject: [PATCH] Documentation, code style and cleanup --- program/include/rcube_contacts.inc | 9 ++++++++- 1 files changed, 8 insertions(+), 1 deletions(-) diff --git a/program/include/rcube_contacts.inc b/program/include/rcube_contacts.inc index c6dc40d..9ba965e 100644 --- a/program/include/rcube_contacts.inc +++ b/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 @@ /** * PHP 4 object constructor * - * @see rcube_contacts::__construct + * @see rcube_contacts::__construct() */ function rcube_contacts($dbconn, $user) { @@ -125,6 +131,7 @@ * 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) -- Gitblit v1.9.1