You are here

public function SqlBase::__construct in Drupal 10

Same name in this branch
  1. 10 core/modules/views/src/Plugin/views/pager/SqlBase.php \Drupal\views\Plugin\views\pager\SqlBase::__construct()
  2. 10 core/modules/migrate/src/Plugin/migrate/source/SqlBase.php \Drupal\migrate\Plugin\migrate\source\SqlBase::__construct()
Same name and namespace in other branches
  1. 8 core/modules/views/src/Plugin/views/pager/SqlBase.php \Drupal\views\Plugin\views\pager\SqlBase::__construct()
  2. 9 core/modules/views/src/Plugin/views/pager/SqlBase.php \Drupal\views\Plugin\views\pager\SqlBase::__construct()

Constructs a SqlBase object.

Parameters

array $configuration: A configuration array containing information about the plugin instance.

string $plugin_id: The plugin_id for the plugin instance.

mixed $plugin_definition: The plugin implementation definition.

\Drupal\Core\Pager\PagerManagerInterface $pager_manager: The pager manager.

\Drupal\Core\Pager\PagerParametersInterface $pager_parameters: The pager parameters.

Overrides PluginBase::__construct

File

core/modules/views/src/Plugin/views/pager/SqlBase.php, line 46

Class

SqlBase
A common base class for sql based pager.

Namespace

Drupal\views\Plugin\views\pager

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition, PagerManagerInterface $pager_manager, PagerParametersInterface $pager_parameters) {
  parent::__construct($configuration, $plugin_id, $plugin_definition);
  $this->pagerManager = $pager_manager;
  $this->pagerParameters = $pager_parameters;
}