Property | Type | Description | |
---|---|---|---|
$defaultOrderings | array | ||
$entityManager | Doctrine\Common\Persistence\ObjectManager | Doctrine's Entity Manager. Note that "ObjectManager" is the name of the related interface. |
Method | Description | |
---|---|---|
findOneByObjectTypeUriPatternAndIdentifier ( string $objectType, string $uriPattern, string | integer $identifier ) : |
||
findOneByObjectTypeUriPatternAndPathSegment ( string $objectType, string $uriPattern, string $pathSegment, boolean $caseSensitive = false ) : |
||
persistEntities ( ) : void | Persists all entities managed by the repository and all cascading dependencies |
public findOneByObjectTypeUriPatternAndIdentifier ( string $objectType, string $uriPattern, string | integer $identifier ) : |
||
$objectType | string | the object type of the ObjectPathMapping object |
$uriPattern | string | the URI pattern of the ObjectPathMapping object |
$identifier | string | integer | the identifier of the object, for example the UUID, @see \Neos\Flow\Persistence\PersistenceManagerInterface::getIdentifierByObject() |
return |
public findOneByObjectTypeUriPatternAndPathSegment ( string $objectType, string $uriPattern, string $pathSegment, boolean $caseSensitive = false ) : |
||
$objectType | string | the object type of the ObjectPathMapping object |
$uriPattern | string | the URI pattern of the ObjectPathMapping object |
$pathSegment | string | the URI path segment of the ObjectPathMapping object |
$caseSensitive | boolean | whether the path segment lookup should be done case-sensitive |
return |
public persistEntities ( ) : void | ||
return | void |