You are here

PagerParameters.php in Drupal 8

Same filename and directory in other branches
  1. 9 core/lib/Drupal/Core/Pager/PagerParameters.php

Namespace

Drupal\Core\Pager

File

core/lib/Drupal/Core/Pager/PagerParameters.php
View source
<?php

namespace Drupal\Core\Pager;

use Drupal\Component\Utility\UrlHelper;
use Symfony\Component\HttpFoundation\RequestStack;

/**
 * Provides pager information contained within the current request.
 *
 * @see \Drupal\Core\Pager\PagerManagerInterface
 */
class PagerParameters implements PagerParametersInterface {

  /**
   * The HTTP request stack.
   *
   * @var \Symfony\Component\HttpFoundation\RequestStack
   */
  protected $requestStack;

  /**
   * Construct a PagerManager object.
   *
   * @param \Symfony\Component\HttpFoundation\RequestStack $stack
   *   The current HTTP request stack.
   */
  public function __construct(RequestStack $stack) {
    $this->requestStack = $stack;
  }

  /**
   * {@inheritdoc}
   */
  public function getQueryParameters() {
    $request = $this->requestStack
      ->getCurrentRequest();
    if ($request) {
      return UrlHelper::filterQueryParameters($request->query
        ->all(), [
        'page',
      ]);
    }
    return [];
  }

  /**
   * {@inheritdoc}
   */
  public function findPage($pager_id = 0) {
    $pages = $this
      ->getPagerQuery();
    return (int) ($pages[$pager_id] ?? 0);
  }

  /**
   * {@inheritdoc}
   */
  public function getPagerQuery() {
    $query = $this
      ->getPagerParameter();
    return !empty($query) ? explode(',', $query) : [];
  }

  /**
   * {@inheritdoc}
   */
  public function getPagerParameter() {
    $request = $this->requestStack
      ->getCurrentRequest();
    if ($request) {
      return $request->query
        ->get('page', '');
    }
    return '';
  }

}

Classes

Namesort descending Description
PagerParameters Provides pager information contained within the current request.