You are here

function Type::title in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/node/src/Plugin/views/argument/Type.php \Drupal\node\Plugin\views\argument\Type::title()

Override the behavior of title(). Get the user friendly version of the node type.

Overrides StringArgument::title

File

core/modules/node/src/Plugin/views/argument/Type.php, line 71
Contains \Drupal\node\Plugin\views\argument\Type.

Class

Type
Argument handler to accept a node type.

Namespace

Drupal\node\Plugin\views\argument

Code

function title() {
  return $this
    ->node_type($this->argument);
}