Initial commit - Typo3 11.5.41
This commit is contained in:
15
typo3conf/ext/numbered_pagination/ext_localconf.php
Normal file
15
typo3conf/ext/numbered_pagination/ext_localconf.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
if (!interface_exists('TYPO3\CMS\Core\Pagination\PaginationInterface', false)) {
|
||||
class_alias(
|
||||
\GeorgRinger\NumberedPagination\Contract\PaginationInterface::class,
|
||||
'TYPO3\CMS\Core\Pagination\PaginationInterface'
|
||||
);
|
||||
}
|
||||
|
||||
if (!interface_exists('TYPO3\CMS\Core\Pagination\PaginatorInterface', false)) {
|
||||
class_alias(
|
||||
\GeorgRinger\NumberedPagination\Contract\PaginatorInterface::class,
|
||||
'TYPO3\CMS\Core\Pagination\PaginatorInterface'
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user