PHP 클래스 Neos\Flow\Package\MetaData\AbstractParty

파일 보기 프로젝트 열기: neos/flow-development-collection 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
$email string Email of the party
$name string Name of the party
$role string The party role
$website string Website of the party

공개 메소드들

메소드 설명
__construct ( string $role, string $name, string $email = null, string $website = null ) Meta data party model constructor
getEmail ( ) : string
getName ( ) : string
getPartyType ( ) : string Get the party type (MetaData\PARTY_TYPE_PERSON, MetaData\PARTY_TYPE_COMPANY)
getRole ( ) : string
getWebsite ( ) : string

메소드 상세

__construct() 공개 메소드

Meta data party model constructor
public __construct ( string $role, string $name, string $email = null, string $website = null )
$role string
$name string
$email string
$website string

getEmail() 공개 메소드

public getEmail ( ) : string
리턴 string The email of the party

getName() 공개 메소드

public getName ( ) : string
리턴 string The name of the party

getPartyType() 추상적인 공개 메소드

Get the party type (MetaData\PARTY_TYPE_PERSON, MetaData\PARTY_TYPE_COMPANY)
abstract public getPartyType ( ) : string
리턴 string The type of the party (person, company)

getRole() 공개 메소드

public getRole ( ) : string
리턴 string The role of the party

getWebsite() 공개 메소드

public getWebsite ( ) : string
리턴 string The website of the party

프로퍼티 상세

$email 보호되어 있는 프로퍼티

Email of the party
protected string $email
리턴 string

$name 보호되어 있는 프로퍼티

Name of the party
protected string $name
리턴 string

$role 보호되어 있는 프로퍼티

The party role
protected string $role
리턴 string

$website 보호되어 있는 프로퍼티

Website of the party
protected string $website
리턴 string