function ViewsConfigUpdater::needsDefaultArgumentSkipUrlUpdate

Checks for each view if default_argument_skip_url needs to be removed.

Parameters

\Drupal\views\ViewEntityInterface $view: The view entity.

Return value

bool TRUE if the view has any arguments that need to have default_argument_skip_url removed.

File

core/modules/views/src/ViewsConfigUpdater.php, line 475

Class

ViewsConfigUpdater
Provides a BC layer for modules providing old configurations.

Namespace

Drupal\views

Code

public function needsDefaultArgumentSkipUrlUpdate(ViewEntityInterface $view) {
    return $this->processDisplayHandlers($view, TRUE, function (&$handler, $handler_type) {
        return $this->processDefaultArgumentSkipUrlUpdate($handler, $handler_type);
    });
}

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