diff --git a/phpgwapi/inc/class.service_notes.inc.php b/phpgwapi/inc/class.service_notes.inc.php index f0e00e6456..468d4f6083 100644 --- a/phpgwapi/inc/class.service_notes.inc.php +++ b/phpgwapi/inc/class.service_notes.inc.php @@ -22,9 +22,9 @@ /* $Id$ */ - class service_contacts extends service + class service_notes extends service { - function service_contacts() + function service_notes() { $this->provider = $GLOBALS['phpgw_info']['notes_service'] ? $GLOBALS['phpgw_info']['notes_service'] : 'notes'; $this->svc = $this->provider . '.bo' . $this->provider; diff --git a/phpgwapi/inc/class.service_schedule.inc.php b/phpgwapi/inc/class.service_schedule.inc.php index dda025c268..5824850296 100644 --- a/phpgwapi/inc/class.service_schedule.inc.php +++ b/phpgwapi/inc/class.service_schedule.inc.php @@ -22,9 +22,9 @@ /* $Id$ */ - class service_contacts extends service + class service_schedule extends service { - function service_contacts() + function service_schedule() { $this->provider = $GLOBALS['phpgw_info']['schedule_service'] ? $GLOBALS['phpgw_info']['schedule_service'] : 'calendar'; $this->svc = $this->provider . '.bo' . $this->provider; diff --git a/phpgwapi/inc/class.service_todo.inc.php b/phpgwapi/inc/class.service_todo.inc.php new file mode 100644 index 0000000000..d69a0a0ab1 --- /dev/null +++ b/phpgwapi/inc/class.service_todo.inc.php @@ -0,0 +1,60 @@ + * + * Copyright (C) 2001 Miles Lott * + * -------------------------------------------------------------------------* + * This library is part of the phpGroupWare API * + * http://www.phpgroupware.org/api * + * ------------------------------------------------------------------------ * + * This library is free software; you can redistribute it and/or modify it * + * under the terms of the GNU Lesser General Public License as published by * + * the Free Software Foundation; either version 2.1 of the License, * + * or any later version. * + * This library is distributed in the hope that it will be useful, but * + * WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * + * See the GNU Lesser General Public License for more details. * + * You should have received a copy of the GNU Lesser General Public License * + * along with this library; if not, write to the Free Software Foundation, * + * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * + \**************************************************************************/ + + /* $Id$ */ + + class service_todo extends service + { + function service_todo() + { + $this->provider = $GLOBALS['phpgw_info']['todo_service'] ? $GLOBALS['phpgw_info']['todo_service'] : 'todo'; + $this->svc = $this->provider . '.bo' . $this->provider; + $type = $this->type ? $this->type : 'xmlrpc'; + $this->function_map = ExecMethod($this->svc . '.list_methods',$type); + } + + function read($data) + { + return ExecMethod($this->svc . '.' . $this->function_map['read']['function'],$data); + } + + function read_list($data) + { + return ExecMethod($this->svc . '.' . $this->function_map['read_list']['function'],$data); + } + + function save($data) + { + return ExecMethod($this->svc . '.' . $this->function_map['save']['function'],$data); + } + + function add($data) + { + return ExecMethod($this->svc . '.' . $this->function_map['save']['function'],$data); + } + + function delete($data) + { + return ExecMethod($this->svc . '.' . $this->function_map['delete']['function'],$data); + } + } +?>