function Node::getArgument

Same name and namespace in other branches
  1. 11.x core/modules/node/src/Plugin/views/argument_default/Node.php \Drupal\node\Plugin\views\argument_default\Node::getArgument()

File

core/modules/node/src/Plugin/views/argument_default/Node.php, line 62

Class

Node
Default argument plugin to extract a node.

Namespace

Drupal\node\Plugin\views\argument_default

Code

public function getArgument() {
  if (($node = $this->routeMatch
    ->getParameter('node')) && $node instanceof NodeInterface) {
    return $node->id();
  }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.