function PagerExamplePage::__construct

Same name in other branches
  1. 8.x-1.x pager_example/src/Controller/PagerExamplePage.php \Drupal\pager_example\Controller\PagerExamplePage::__construct()
  2. 4.0.x modules/pager_example/src/Controller/PagerExamplePage.php \Drupal\pager_example\Controller\PagerExamplePage::__construct()

PagerExamplePage constructor.

Parameters

\Drupal\Core\Entity\EntityStorageInterface $node_storage: Entity storage for node entities.

\Drupal\Core\Session\AccountInterface $current_user: The current user.

File

modules/pager_example/src/Controller/PagerExamplePage.php, line 42

Class

PagerExamplePage
Controller for pager_example.page route.

Namespace

Drupal\pager_example\Controller

Code

public function __construct(EntityStorageInterface $node_storage, AccountInterface $current_user) {
    $this->nodeStorage = $node_storage;
    $this->currentUser = $current_user;
}