Overview

Packages

  • Itip

Classes

  • Horde_Itip
  • Horde_Itip_Event_Vevent
  • Horde_Itip_Exception
  • Horde_Itip_Resource_Base
  • Horde_Itip_Resource_Identity
  • Horde_Itip_Response
  • Horde_Itip_Response_Options_Base
  • Horde_Itip_Response_Options_Horde
  • Horde_Itip_Response_Options_Kolab
  • Horde_Itip_Response_Type_Accept
  • Horde_Itip_Response_Type_Base
  • Horde_Itip_Response_Type_Decline
  • Horde_Itip_Response_Type_Tentative
  • Horde_Itip_Translation

Interfaces

  • Horde_Itip_Event
  • Horde_Itip_Resource
  • Horde_Itip_Response_Options
  • Horde_Itip_Response_Type
  • Overview
  • Package
  • Class
  • Tree
 1: <?php
 2: /**
 3:  * Provides information about an invited resource.
 4:  *
 5:  * PHP version 5
 6:  *
 7:  * @category Horde
 8:  * @package  Itip
 9:  * @author   Gunnar Wrobel <wrobel@pardus.de>
10:  * @license  http://www.horde.org/licenses/lgpl21 LGPL
11:  * @link     http://pear.horde.org/index.php?package=Itip
12:  */
13: 
14: /**
15:  * Provides information about an invited resource.
16:  *
17:  * Copyright 2010 Kolab Systems AG
18:  *
19:  * See the enclosed file COPYING for license information (LGPL). If you did not
20:  * receive this file, see
21:  * {@link http://www.horde.org/licenses/lgpl21 LGPL}.
22:  *
23:  * @category Horde
24:  * @package  Itip
25:  * @author   Gunnar Wrobel <wrobel@pardus.de>
26:  * @license  http://www.horde.org/licenses/lgpl21 LGPL
27:  * @link     http://pear.horde.org/index.php?package=Itip
28:  */
29: interface Horde_Itip_Resource
30: {
31:     /**
32:      * Retrieve the mail address of the resource.
33:      *
34:      * @return string The mail address.
35:      */
36:     public function getMailAddress();
37: 
38:     /**
39:      * Retrieve the reply-to address for the resource.
40:      *
41:      * @return string The reply-to address.
42:      */
43:     public function getReplyTo();
44: 
45:     /**
46:      * Retrieve the common name of the resource.
47:      *
48:      * @return string The common name.
49:      */
50:     public function getCommonName();
51: 
52:     /**
53:      * Retrieve the "From" address for this resource.
54:      *
55:      * @return string The "From" address.
56:      */
57:     public function getFrom();
58: }
API documentation generated by ApiGen