Joomla Platform
13.1
Documentation des API du framework Joomla Platform
Page principale
Pages associées
Espaces de nommage
Classes
Fichiers
Exemples
Liste des fichiers
Membres de fichier
Joomla Platform
Liste des choses à faire
Liste des éléments obsolètes
Espaces de nommage
Classes
Fichiers
Liste des fichiers
jplatform-13.1
compat
joomla
access
application
archive
base
cache
client
controller
crypt
data
database
date
document
environment
event
facebook
feed
parser
entry.php
factory.php
feed.php
link.php
parser.php
person.php
filesystem
filter
form
github
google
grid
http
image
input
keychain
language
linkedin
log
mail
mediawiki
microdata
model
oauth1
oauth2
object
observable
observer
openstreetmap
profiler
registry
session
string
table
twitter
updater
uri
user
utilities
view
factory.php
legacy
phpmailer
phputf8
simplepie
cms.php
import.legacy.php
import.php
loader.php
platform.php
Membres de fichier
Exemples
•
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
*/
19
class
JFeedPerson
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
}
Documentation et API générés le 16/11/2013 par l'équipe
Dev.joomla.fr
de l'
AFUJ
avec la solution