bitpatroon / bpn_handle
Pseudo index called handle
Package info
github.com/bitpatroon/bpn_handle
Type:typo3-cms-extension
pkg:composer/bitpatroon/bpn_handle
v10.4.2
2021-05-21 19:34 UTC
This package is auto-updated.
Last update: 2026-02-22 06:22:32 UTC
README
Allows to set handles on pages, tt_content and usergroups. Technically allows the developer to retrieve records using handles.
Retrieve a record by calling
/** @var \BPN\BpnHandle\Domain\Repository\PageRepository $pageRepository
$pageRepository->findByHandle($handle);
retrieves the pages by a string handle. Returns all records containg this handle. The collection (array) is associative by uid.
Similarly works for usergroups:
/** @var \BPN\BpnHandle\Domain\Repository\FrontendUserGroupRepository $repository
$repository->findByHandle($handle);
and content:
/** @var \BPN\BpnHandle\Domain\Repository\ContentRepository $repository
$repository->findByHandle($handle);
Thanks to
Many thanks for the concept by Frans van der Veen
May the force be with you!
Ported to TYPO3 10.4 by Sjoerd Zonneveld