PHP Class Neos\Flow\Mvc\Routing\ObjectPathMapping

Datei anzeigen Open project: neos/flow-development-collection Class Usage Examples

Protected Properties

Property Type Description
$identifier string Identifier of the object this mapping belongs to
$objectType string Class name of the object this mapping belongs to
$pathSegment string Path segment (URI representation) of the object this mapping belongs to
$uriPattern string Pattern of the path segment (for example "{date}/{title}")

Public Methods

Method Description
getIdentifier ( ) : string
getObjectType ( ) : string
getPathSegment ( ) : string
getUriPattern ( ) : string
setIdentifier ( string $identifier )
setObjectType ( string $objectType )
setPathSegment ( string $pathSegment )
setUriPattern ( string $uriPattern )

Method Details

getIdentifier() public method

public getIdentifier ( ) : string
return string

getObjectType() public method

public getObjectType ( ) : string
return string

getPathSegment() public method

public getPathSegment ( ) : string
return string

getUriPattern() public method

public getUriPattern ( ) : string
return string

setIdentifier() public method

public setIdentifier ( string $identifier )
$identifier string

setObjectType() public method

public setObjectType ( string $objectType )
$objectType string

setPathSegment() public method

public setPathSegment ( string $pathSegment )
$pathSegment string

setUriPattern() public method

public setUriPattern ( string $uriPattern )
$uriPattern string

Property Details

$identifier protected_oe property

Identifier of the object this mapping belongs to
protected string $identifier
return string

$objectType protected_oe property

Class name of the object this mapping belongs to
protected string $objectType
return string

$pathSegment protected_oe property

Path segment (URI representation) of the object this mapping belongs to
protected string $pathSegment
return string

$uriPattern protected_oe property

Pattern of the path segment (for example "{date}/{title}")
protected string $uriPattern
return string