updated some inline comments for me to better test the inilinedocparser

This commit is contained in:
seek3r 2001-12-24 22:48:40 +00:00
parent 115c4bb540
commit 25f80219c0
2 changed files with 21 additions and 8 deletions

View File

@ -65,6 +65,11 @@
'ldap' => True, 'backup' => True
);
/*!
@class_start accounts
@abstract Class for handling user and group accounts
*/
class accounts extends accounts_
{
var $memberships = Array();
@ -175,10 +180,6 @@
return $this->members;
}
/*!
@class_start accounts
@abstract a test.
*/
/*!
@function get_nextid
@ -235,6 +236,4 @@
}
/*!
@class_end accounts
@abstract a test.
*/
?>

View File

@ -24,6 +24,10 @@
/* $Id$ */
/*!
@class_start accounts
@abstract Class for handling user and group accounts
*/
class accounts_
{
var $db;
@ -37,6 +41,10 @@
$this->db = $GLOBALS['phpgw']->db;
}
/*!
@function read_repository
@abstract grabs the records from the data store
*/
function read_repository()
{
$this->db->query("SELECT * FROM phpgw_accounts WHERE account_id='" . $this->account_id . "'",__LINE__,__FILE__);
@ -57,6 +65,10 @@
return $this->data;
}
/*!
@function save_repository
@abstract saves the records to the data store
*/
function save_repository()
{
$this->db->query("UPDATE phpgw_accounts SET account_firstname='" . $this->data['firstname']
@ -356,5 +368,7 @@
$lname = $account_name[$account_id]['lname'];
return;
}
} //end of class
?>
}
/*!
@class_end accounts
*/