~ubuntu-branches/ubuntu/wily/php-horde-kolab-format/wily

« back to all changes in this revision

Viewing changes to Horde_Kolab_Format-2.0.4/lib/Horde/Kolab/Format/Xml/Type/Multiple/SimplePerson.php

  • Committer: Package Import Robot
  • Author(s): Mathieu Parent
  • Date: 2013-11-30 19:44:36 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20131130194436-qsnbl3s5446l9l4g
Tags: 2.0.5-1
New upstream version 2.0.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?php
2
 
/**
3
 
 * Handles the multiple simple person attributes.
4
 
 *
5
 
 * PHP version 5
6
 
 *
7
 
 * @category Kolab
8
 
 * @package  Kolab_Format
9
 
 * @author   Gunnar Wrobel <wrobel@pardus.de>
10
 
 * @license  http://www.horde.org/licenses/lgpl21 LGPL
11
 
 * @link     http://www.horde.org/libraries/Horde_Kolab_Format
12
 
 */
13
 
 
14
 
/**
15
 
 * Handles the multiple simple person attributes.
16
 
 *
17
 
 * Copyright 2011-2013 Horde LLC (http://www.horde.org/)
18
 
 *
19
 
 * See the enclosed file COPYING for license information (LGPL). If you did not
20
 
 * receive this file, see
21
 
 * http://www.horde.org/licenses/lgpl21.
22
 
 *
23
 
 * @category Kolab
24
 
 * @package  Kolab_Format
25
 
 * @author   Gunnar Wrobel <wrobel@pardus.de>
26
 
 * @license  http://www.horde.org/licenses/lgpl21 LGPL
27
 
 * @link     http://www.horde.org/libraries/Horde_Kolab_Format
28
 
 */
29
 
class Horde_Kolab_Format_Xml_Type_Multiple_SimplePerson
30
 
extends Horde_Kolab_Format_Xml_Type_Multiple
31
 
{
32
 
    /**
33
 
     * The class name representing the element that can occur multiple times.
34
 
     *
35
 
     * @var string
36
 
     */
37
 
    protected $element = 'Horde_Kolab_Format_Xml_Type_Composite_SimplePerson';
38
 
}