Initial commit - Typo3 11.5.41

This commit is contained in:
Matteo Gallo
2026-07-03 17:53:31 +02:00
commit 5ca4743197
6811 changed files with 568848 additions and 0 deletions

View File

@@ -0,0 +1,66 @@
<?php
namespace Brightside\Paginatedprocessors\Routing\Aspect;
use TYPO3\CMS\Core\Database\ConnectionPool;
use TYPO3\CMS\Core\Routing\Aspect\StaticMappableAspectInterface;
use TYPO3\CMS\Core\Utility\GeneralUtility;
class PaginatedprocessorsContentMapper implements StaticMappableAspectInterface
{
public function generate(string $value): ?string
{
if (($this->isValidContentElementUid($value)) OR ($this->isValidContentElementPaginatedprocessorsUrlsegment($value))) {
return $value;
}
return null;
}
public function resolve(string $value): ?string
{
if (($this->isValidContentElementUid($value)) OR ($this->isValidContentElementPaginatedprocessorsUrlsegment($value))) {
return $value;
}
return null;
}
/**
* Validate, if $value is a valid uid in tt_content
*
* @param mixed $uid
* @return bool
*/
protected function isValidContentElementUid($value): bool
{
$queryBuilder = GeneralUtility::makeInstance(ConnectionPool::class)->getQueryBuilderForTable('tt_content');
$data = (bool)$queryBuilder
->select('uid')
->from('tt_content')
->where(
$queryBuilder->expr()->eq('uid', $queryBuilder->createNamedParameter($value)),
$queryBuilder->expr()->eq('tx_paginatedprocessors_paginationenabled', $queryBuilder->createNamedParameter(true))
)
->executeQuery()
->rowCount();
return $data;
}
/**
* Validate, if $value is a valid tx_paginatedprocessors_slug in tt_content
*
* @param mixed $tx_paginatedprocessors_slug
* @return bool
*/
protected function isValidContentElementPaginatedprocessorsUrlsegment($value): bool
{
$queryBuilder = GeneralUtility::makeInstance(ConnectionPool::class)->getQueryBuilderForTable('tt_content');
$data = (bool)$queryBuilder
->select('tx_paginatedprocessors_urlsegment')
->from('tt_content')
->where(
$queryBuilder->expr()->eq('tx_paginatedprocessors_urlsegment', $queryBuilder->createNamedParameter($value)),
$queryBuilder->expr()->eq('tx_paginatedprocessors_paginationenabled', $queryBuilder->createNamedParameter(true))
)
->executeQuery()
->rowCount();
return $data;
}
}