Array ( * [0] => top * [1] => person * [2] => inetOrgPerson * ) * [cn] => John * [sn] => Doe * ... * ) * * @deprecated */ function preEntryCreate( $server_id, $dn, $attrs ) { // Fill me in return true; } /* * This function is executed before an entry is deleted. * If it returns true, the entry is deleted, if false * is returned, the entry is not deleted. * @deprecated */ function preEntryDelete( $server_id, $dn ) { // Fill me in return true; } /* * This function is executed after an entry is deleted. * Unlike preEntryDelete(), this function's return * value is ignored. * @deprecated */ function postEntryDelete( $server_id, $dn ) { // Fill me in } /** * This function is called, after a new session is initilaized * @deprecated */ function postSessionInit() { // Fill me in } ?>