TYPO3 CMS
TYPO3_6-2
Main Page
Related Pages
+
Classes
Class List
Class Index
Class Hierarchy
+
Class Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
+
Variables
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
+
Files
File List
+
File Members
+
All
$
(
_
a
c
d
e
f
h
i
l
o
p
r
s
t
u
x
+
Functions
_
a
c
d
e
f
i
l
o
p
r
s
u
x
+
Variables
$
(
_
a
d
e
h
i
p
r
s
t
Examples
•
All
Classes
Namespaces
Files
Functions
Variables
Pages
AbstractParty.php
Go to the documentation of this file.
1
<?php
2
namespace
TYPO3\Flow\Package\MetaData
;
3
4
/* *
5
* This script belongs to the TYPO3 Flow framework. *
6
* *
7
* It is free software; you can redistribute it and/or modify it under *
8
* the terms of the GNU Lesser General Public License, either version 3 *
9
* of the License, or (at your option) any later version. *
10
* *
11
* The TYPO3 project - inspiring people to share! *
12
* */
13
18
abstract
class
AbstractParty
{
19
25
protected
$role
;
26
32
protected
$name
;
33
39
protected
$email
;
40
46
protected
$website
;
47
56
public
function
__construct
(
$role
,
$name
,
$email
= NULL,
$website
= NULL) {
57
$this->role =
$role
;
58
$this->name =
$name
;
59
$this->email =
$email
;
60
$this->website =
$website
;
61
}
62
66
public
function
getRole
() {
67
return
$this->role
;
68
}
69
73
public
function
getName
() {
74
return
$this->name
;
75
}
76
80
public
function
getEmail
() {
81
return
$this->email
;
82
}
83
87
public
function
getWebsite
() {
88
return
$this->website
;
89
}
90
96
abstract
public
function
getPartyType
();
97
}
98
?>
TYPO3\Flow\Package\MetaData\AbstractParty
Definition:
AbstractParty.php:18
TYPO3\Flow\Package\MetaData\AbstractParty\$website
$website
Definition:
AbstractParty.php:46
TYPO3\Flow\Package\MetaData\AbstractParty\getRole
getRole()
Definition:
AbstractParty.php:66
TYPO3\Flow\Package\MetaData
Definition:
AbstractConstraint.php:2
TYPO3\Flow\Package\MetaData\AbstractParty\getWebsite
getWebsite()
Definition:
AbstractParty.php:87
TYPO3\Flow\Package\MetaData\AbstractParty\getEmail
getEmail()
Definition:
AbstractParty.php:80
TYPO3\Flow\Package\MetaData\AbstractParty\$role
$role
Definition:
AbstractParty.php:25
TYPO3\Flow\Package\MetaData\AbstractParty\__construct
__construct($role, $name, $email=NULL, $website=NULL)
Definition:
AbstractParty.php:56
TYPO3\Flow\Package\MetaData\AbstractParty\getPartyType
getPartyType()
TYPO3\Flow\Package\MetaData\AbstractParty\$email
$email
Definition:
AbstractParty.php:39
TYPO3\Flow\Package\MetaData\AbstractParty\$name
$name
Definition:
AbstractParty.php:32
TYPO3\Flow\Package\MetaData\AbstractParty\getName
getName()
Definition:
AbstractParty.php:73
typo3
sysext
core
Resources
PHP
TYPO3.Flow
Classes
TYPO3
Flow
Package
MetaData
AbstractParty.php
Generated on Wed Aug 7 2019 09:52:22 for TYPO3 CMS by
1.8.13