protected function ArgumentPluginBase::defaultNotFound

Default action: not found.

If an argument was expected and was not given, in this case, report the view as 'not found' or hide it.

File

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

Class

ArgumentPluginBase
Base class for arguments.

Namespace

Drupal\views\Plugin\views\argument

Code

protected function defaultNotFound() {

  // Set a failure condition and let the display manager handle it.
  $this->view->build_info['fail'] = TRUE;
  return FALSE;
}