Property | Type | Description | |
---|---|---|---|
$addedResources | SplObjectStorage | ||
$entityManager | Doctrine\Common\Persistence\ObjectManager | ||
$persistenceManager | Neos\Flow\Persistence\PersistenceManagerInterface | ||
$removedResources | SplObjectStorage |
Method | Description | |
---|---|---|
__construct ( ) | Constructor | |
add ( object $object ) | ||
findAllIterator ( ) : Doctrine\ORM\Internal\Hydration\IterableResult | Finds all objects and return an IterableResult | |
findByCollectionNameIterator ( string $collectionName ) : Doctrine\ORM\Internal\Hydration\IterableResult | Finds all objects by collection name and return an IterableResult | |
findByIdentifier ( mixed $identifier ) : object | Finds an object matching the given identifier. | |
findBySha1 ( string $sha1Hash ) : array | Find all resources with the same SHA1 hash | |
findOneBySha1 ( string $sha1Hash ) : |
Find one resource by SHA1 | |
findSimilarResources ( |
Finds other resources which are referring to the same resource data and filename | |
getAddedResources ( ) : SplObjectStorage | ||
iterate ( Doctrine\ORM\Internal\Hydration\IterableResult $iterator, callable $callback = null ) : Generator | Allow to iterate on an IterableResult and return a Generator | |
remove ( object $object ) : void | Removes a PersistentResource object from this repository |
public findAllIterator ( ) : Doctrine\ORM\Internal\Hydration\IterableResult | ||
return | Doctrine\ORM\Internal\Hydration\IterableResult |
public findByCollectionNameIterator ( string $collectionName ) : Doctrine\ORM\Internal\Hydration\IterableResult | ||
$collectionName | string | |
return | Doctrine\ORM\Internal\Hydration\IterableResult |
public findByIdentifier ( mixed $identifier ) : object | ||
$identifier | mixed | The identifier of the object to find |
return | object | The matching object if found, otherwise NULL |
public findBySha1 ( string $sha1Hash ) : array | ||
$sha1Hash | string | |
return | array |
public findOneBySha1 ( string $sha1Hash ) : |
||
$sha1Hash | string | |
return |
public findSimilarResources ( |
||
$resource | The resource used for finding similar resources | |
return | Neos\Flow\Persistence\QueryResultInterface | The result, including the given resource |
public getAddedResources ( ) : SplObjectStorage | ||
return | SplObjectStorage |
protected SplObjectStorage $addedResources | ||
return | SplObjectStorage |
protected ObjectManager,Doctrine\Common\Persistence $entityManager | ||
return | Doctrine\Common\Persistence\ObjectManager |
protected PersistenceManagerInterface,Neos\Flow\Persistence $persistenceManager | ||
return | Neos\Flow\Persistence\PersistenceManagerInterface |