phpgroupware-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Phpgroupware-cvs] phpgwapi/inc/class.service_notes.inc.php, 1.5


From: nomail
Subject: [Phpgroupware-cvs] phpgwapi/inc/class.service_notes.inc.php, 1.5
Date: Thu, 30 Dec 2004 07:47:31 +0100

Update of /phpgwapi/inc
Added Files:
        Branch: 
          class.service_notes.inc.php

date: 2004/12/30 06:47:31;  author: skwashd;  state: Exp;  lines: +20 -26

Log Message:
new HEAD
=====================================================================
<?php
        /**
        * Services abstraction class for notes
        * @author Miles Lott <address@hidden>
        * @copyright Copyright (C) 2001 Miles Lott
        * @copyright Portions Copyright (C) 2004 Free Software Foundation, Inc. 
http://www.fsf.org/
        * @license http://www.fsf.org/licenses/lgpl.html GNU Lesser General 
Public License
        * @package phpgwapi
        * @subpackage application
        * @version $Id: class.service_notes.inc.php,v 1.5 2004/12/30 06:47:31 
skwashd Exp $
        */

        /**
        * Services abstraction class for notes
        * 
        * @package phpgwapi
        * @subpackage application
        */
        class service_contacts extends service
        {
                function service_contacts()
                {
                        $this->provider = 
$GLOBALS['phpgw_info']['notes_service'] ? 
$GLOBALS['phpgw_info']['notes_service'] : 'notes';
                        $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);
                }
        }
?>




reply via email to

[Prev in Thread] Current Thread [Next in Thread]