function ArgumentPluginBase::title

Get the title this argument will assign the view, given the argument.

This usually needs to be overridden to provide a proper title.

1 call to ArgumentPluginBase::title()
10 methods override ArgumentPluginBase::title()

File

drupal/core/modules/views/lib/Drupal/views/Plugin/views/argument/ArgumentPluginBase.php, line 921
Definition of Drupal\views\Plugin\views\argument\ArgumentPluginBase.

Class

ArgumentPluginBase
Base class for arguments.

Namespace

Drupal\views\Plugin\views\argument

Code

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