Joomla Platform  13.1
Documentation des API du framework Joomla Platform
 Tout Classes Espaces de nommage Fichiers Fonctions Variables Pages
person.php
Aller à la documentation de ce fichier.
1 <?php
2 /**
3  * @package Joomla.Platform
4  * @subpackage Feed
5  *
6  * @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
7  * @license GNU General Public License version 2 or later; see LICENSE
8  */
9 
10 defined('JPATH_PLATFORM') or die;
11 
12 /**
13  * Feed Person class.
14  *
15  * @package Joomla.Platform
16  * @subpackage Feed
17  * @since 12.3
18  */
20 {
21  /**
22  * The email address of the person.
23  *
24  * @var string
25  * @since 12.3
26  */
27  public $email;
28 
29  /**
30  * The full name of the person.
31  *
32  * @var string
33  * @since 12.3
34  */
35  public $name;
36 
37  /**
38  * The type of person.
39  *
40  * @var string
41  * @since 12.3
42  */
43  public $type;
44 
45  /**
46  * The URI for the person.
47  *
48  * @var string
49  * @since 12.3
50  */
51  public $uri;
52 
53  /**
54  * Constructor.
55  *
56  * @param string $name The full name of the person.
57  * @param string $email The email address of the person.
58  * @param string $uri The URI for the person.
59  * @param string $type The type of person.
60  *
61  * @since 12.3
62  */
63  public function __construct($name = null, $email = null, $uri = null, $type = null)
64  {
65  $this->name = $name;
66  $this->email = $email;
67  $this->uri = $uri;
68  $this->type = $type;
69  }
70 }