pager.html.twig |
file |
core/themes/stable/templates/navigation/pager.html.twig |
Theme override to display a pager. |
pager.html.twig |
file |
core/themes/classy/templates/navigation/pager.html.twig |
Theme override to display a pager. |
pager.inc |
file |
core/includes/pager.inc |
Functions to aid in presenting database results as a set of pages. |
pager.manager |
service |
core/core.services.yml |
Drupal\Core\Pager\PagerManager |
pager.parameters |
service |
core/core.services.yml |
Drupal\Core\Pager\PagerParameters |
pager.pcss.css |
file |
core/themes/claro/css/components/pager.pcss.css |
Styles for Claro's Pagination. |
Pager.php |
file |
core/lib/Drupal/Core/Render/Element/Pager.php |
|
Pager.php |
file |
core/lib/Drupal/Core/Pager/Pager.php |
|
Pager::$currentPage |
property |
core/lib/Drupal/Core/Pager/Pager.php |
The current page of the pager. |
Pager::$limit |
property |
core/lib/Drupal/Core/Pager/Pager.php |
The maximum number of items per page. |
Pager::$totalItems |
property |
core/lib/Drupal/Core/Pager/Pager.php |
The total number of items . |
Pager::$totalPages |
property |
core/lib/Drupal/Core/Pager/Pager.php |
The total number of pages. |
Pager::getCurrentPage |
function |
core/lib/Drupal/Core/Pager/Pager.php |
Gets the current page. |
Pager::getInfo |
function |
core/lib/Drupal/Core/Render/Element/Pager.php |
Returns the element properties for this element. |
Pager::getLimit |
function |
core/lib/Drupal/Core/Pager/Pager.php |
Gets the maximum number of items per page. |
Pager::getTotalItems |
function |
core/lib/Drupal/Core/Pager/Pager.php |
Gets the total number of items. |
Pager::getTotalPages |
function |
core/lib/Drupal/Core/Pager/Pager.php |
Gets the total number of pages. |
Pager::preRenderPager |
function |
core/lib/Drupal/Core/Render/Element/Pager.php |
#pre_render callback to associate the appropriate cache context. |
Pager::setCurrentPage |
function |
core/lib/Drupal/Core/Pager/Pager.php |
Sets the current page to a valid value within range. |
Pager::setTotalPages |
function |
core/lib/Drupal/Core/Pager/Pager.php |
Sets the total number of pages. |
Pager::__construct |
function |
core/lib/Drupal/Core/Pager/Pager.php |
Pager constructor. |
PagerDeprecationTest |
class |
core/modules/system/tests/src/Kernel/Pager/PagerDeprecationTest.php |
Ensure that deprecated pager functions trigger deprecation errors. |
PagerDeprecationTest.php |
file |
core/modules/system/tests/src/Kernel/Pager/PagerDeprecationTest.php |
|
PagerDeprecationTest::testDefaultInitialize |
function |
core/modules/system/tests/src/Kernel/Pager/PagerDeprecationTest.php |
@expectedDeprecation pager_default_initialize is deprecated in drupal:8.8.0 and is removed from drupal:9.0.0. Use \Drupal\Core\Pager\PagerManagerInterface->createPager() instead. See https://www.drupal.org/node/2779457 |
PagerDeprecationTest::testFindPage |
function |
core/modules/system/tests/src/Kernel/Pager/PagerDeprecationTest.php |
@expectedDeprecation pager_find_page is deprecated in drupal:8.8.0 and is removed from drupal:9.0.0. Use \Drupal\Core\Pager\PagerParametersInterface->findPage() instead. See https://www.drupal.org/node/2779457 |
PagerDeprecationTest::testGetQueryParameters |
function |
core/modules/system/tests/src/Kernel/Pager/PagerDeprecationTest.php |
@expectedDeprecation pager_get_query_parameters is deprecated in drupal:8.8.0 and is removed from drupal:9.0.0. Use \Drupal\Core\Pager\PagerParametersInterface->getQueryParameters() instead. See https://www.drupal.org/node/2779457 |
PagerDeprecationTest::testQueryAddPage |
function |
core/modules/system/tests/src/Kernel/Pager/PagerDeprecationTest.php |
@expectedDeprecation pager_query_add_page is deprecated in drupal:8.8.0 and is removed from drupal:9.0.0. Use \Drupal\Core\Pager\PagerManagerInterface->getUpdatedParameters() instead. See https://www.drupal.org/node/2779457 |
PageRenderTest |
class |
core/modules/system/tests/src/Kernel/Common/PageRenderTest.php |
Test page rendering hooks. |
PageRenderTest.php |
file |
core/modules/system/tests/src/Kernel/Common/PageRenderTest.php |
|
PageRenderTest::assertPageRenderHookExceptions |
function |
core/modules/system/tests/src/Kernel/Common/PageRenderTest.php |
Asserts whether expected exceptions are thrown for invalid hook implementations. |
PageRenderTest::testHookPageAlter |
function |
core/modules/system/tests/src/Kernel/Common/PageRenderTest.php |
Tests hook_page_attachments_alter() exceptions. |
PageRenderTest::testHookPageAttachmentsExceptions |
function |
core/modules/system/tests/src/Kernel/Common/PageRenderTest.php |
Tests hook_page_attachments() exceptions. |
PagerKernelTest |
class |
core/modules/views/tests/src/Kernel/Plugin/PagerKernelTest.php |
Tests pager-related APIs. |
PagerKernelTest.php |
file |
core/modules/views/tests/src/Kernel/Plugin/PagerKernelTest.php |
|
PagerKernelTest::$modules |
property |
core/modules/views/tests/src/Kernel/Plugin/PagerKernelTest.php |
Modules to enable. |
PagerKernelTest::$testViews |
property |
core/modules/views/tests/src/Kernel/Plugin/PagerKernelTest.php |
Views to be enabled. |
PagerKernelTest::setUp |
function |
core/modules/views/tests/src/Kernel/Plugin/PagerKernelTest.php |
|
PagerKernelTest::testSetPagerMethods |
function |
core/modules/views/tests/src/Kernel/Plugin/PagerKernelTest.php |
Tests pager-related setter methods on ViewExecutable. |
PagerManager |
class |
core/lib/Drupal/Core/Pager/PagerManager.php |
Provides a manager for pagers. |
PagerManager.php |
file |
core/lib/Drupal/Core/Pager/PagerManager.php |
|
PagerManager::$pagerParams |
property |
core/lib/Drupal/Core/Pager/PagerManager.php |
The pager parameters. |
PagerManager::$pagers |
property |
core/lib/Drupal/Core/Pager/PagerManager.php |
An associative array of pagers. |
PagerManager::createPager |
function |
core/lib/Drupal/Core/Pager/PagerManager.php |
Initializes a pager. |
PagerManager::getMaxPagerElementId |
function |
core/lib/Drupal/Core/Pager/PagerManager.php |
Gets the extent of the pager page element IDs. |
PagerManager::getPager |
function |
core/lib/Drupal/Core/Pager/PagerManager.php |
Gets a pager from the static cache. |
PagerManager::getUpdatedParameters |
function |
core/lib/Drupal/Core/Pager/PagerManager.php |
Gets the URL query parameter array of a pager link. |
PagerManager::setPager |
function |
core/lib/Drupal/Core/Pager/PagerManager.php |
Saves a pager to the static cache. |
PagerManager::updateGlobals |
function |
core/lib/Drupal/Core/Pager/PagerManager.php |
Updates global variables with a pager data for backwards compatibility. |
PagerManager::__construct |
function |
core/lib/Drupal/Core/Pager/PagerManager.php |
Construct a PagerManager object. |
PagerManagerInterface |
interface |
core/lib/Drupal/Core/Pager/PagerManagerInterface.php |
This is a service for pager information. |