2001-09-05 12:46:39 +02:00
|
|
|
<?php
|
|
|
|
/**************************************************************************\
|
2004-05-05 14:06:13 +02:00
|
|
|
* eGroupWare API - Services Abstraction Class *
|
2004-11-30 14:40:46 +01:00
|
|
|
* This file written by Miles Lott <milos@groupwhere.org> *
|
|
|
|
* Copyright (C) 2001-2004 Miles Lott *
|
|
|
|
* ------------------------------------------------------------------------ *
|
2004-05-05 14:06:13 +02:00
|
|
|
* This library is part of the eGroupWare API *
|
2004-11-30 14:40:46 +01:00
|
|
|
* http://www.egroupware.org/api *
|
2001-09-05 12:46:39 +02:00
|
|
|
* ------------------------------------------------------------------------ *
|
|
|
|
* 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
|
|
|
|
{
|
|
|
|
var $provider = '';
|
|
|
|
var $svc = '';
|
|
|
|
var $type = '';
|
|
|
|
var $function_map = array();
|
|
|
|
|
|
|
|
function exec($service)
|
|
|
|
{
|
|
|
|
if(is_array($service))
|
|
|
|
{
|
|
|
|
$data = $service[2];
|
|
|
|
$function = $service[1];
|
2003-08-28 16:31:11 +02:00
|
|
|
$service = $service[0];
|
2001-09-05 12:46:39 +02:00
|
|
|
}
|
2004-11-30 14:40:46 +01:00
|
|
|
switch($service)
|
2001-09-05 12:46:39 +02:00
|
|
|
{
|
|
|
|
case 'schedule':
|
|
|
|
case 'contacts':
|
|
|
|
case 'notes':
|
|
|
|
case 'todo':
|
|
|
|
$this = CreateObject('phpgwapi.service_' . $service);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
$this = CreateObject($service);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if($function)
|
|
|
|
{
|
|
|
|
return $this->$function($data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function list_methods()
|
|
|
|
{
|
|
|
|
return $this->function_map;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|