'addressbook',
'noheader' => True,
'nonavbar' => True
);
include('../header.inc.php');
$obj = CreateObject('phpgwapi.service');
/* Entire addressbook */
$tmp = $obj->exec(array('contacts','read_list'));
echo '
Entire list:';
_debug_array($tmp);
/* Single entry with id of 182 */
$tmp = $obj->exec(array('contacts','read',array('id' => 182)));
echo '
Single entry:';
_debug_array($tmp);
$GLOBALS['phpgw']->common->phpgw_footer();
?>