mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-27 09:09:04 +01:00
not working with up-to-date version
This commit is contained in:
parent
88048ecc2f
commit
01461852ed
@ -1,35 +0,0 @@
|
||||
<?php
|
||||
/**************************************************************************\
|
||||
* eGroupWare - Addressbook - API contacts service test *
|
||||
* http://www.egroupware.org *
|
||||
* -------------------------------------------- *
|
||||
* This program is free software; you can redistribute it and/or modify it *
|
||||
* under the terms of the GNU General Public License as published by the *
|
||||
* Free Software Foundation; either version 2 of the License, or (at your *
|
||||
* option) any later version. *
|
||||
\**************************************************************************/
|
||||
|
||||
/* $Id$ */
|
||||
|
||||
$GLOBALS['egw_info'] = array();
|
||||
$GLOBALS['egw_info']['flags'] = array(
|
||||
'currentapp' => 'addressbook',
|
||||
'noheader' => True,
|
||||
'nonavbar' => True
|
||||
);
|
||||
include('../header.inc.php');
|
||||
|
||||
$obj = CreateObject('phpgwapi.service');
|
||||
|
||||
/* Entire addressbook */
|
||||
$tmp = $obj->exec(array('contacts','read_list'));
|
||||
echo '<br/>Entire list:';
|
||||
_debug_array($tmp);
|
||||
|
||||
/* Single entry with id of 182 */
|
||||
$tmp = $obj->exec(array('contacts','read',array('id' => 182)));
|
||||
echo '<br/>Single entry:';
|
||||
_debug_array($tmp);
|
||||
|
||||
$GLOBALS['phpgw']->common->phpgw_footer();
|
||||
?>
|
Loading…
Reference in New Issue
Block a user