Attention
TYPO3 v12 has reached end-of-life as of April 30th 2026 and is no longer being maintained. Use the version switcher on the top left of this page to select documentation for a supported version of TYPO3.
Need more time before upgrading? You can purchase Extended Long Term Support (ELTS) for TYPO3 v12 here: TYPO3 ELTS.
Working with collections
The
\TYPO3\ class
provides a convenience method to retrieve a
File Collection.
<?php
declare(strict_types=1);
namespace MyVendor\MyExtension;
use TYPO3\CMS\Core\Resource\ResourceFactory;
final class CollectionExample
{
public function __construct(
private readonly ResourceFactory $resourceFactory,
) {}
public function doSomething(): void
{
// Get collection with uid 1
$collection = $this->resourceFactory->getCollectionObject(1);
// Load the contents of the collection
$collection->loadContents();
}
}
In this example, we retrieve and load the content from the
File Collection with a uid of "1". Any collection
implements the
\Iterator interface, which means that a collection
can be looped over (once its content has been loaded). Thus,
if the above code passed the
$collection variable to
a Fluid view, you could do the following: