public function ViewsConfigUpdater::needsMultivalueBaseFieldUpdate in Drupal 9
Same name and namespace in other branches
- 8 core/modules/views/src/ViewsConfigUpdater.php \Drupal\views\ViewsConfigUpdater::needsMultivalueBaseFieldUpdate()
Update field names for multi-value base fields.
Parameters
\Drupal\views\ViewEntityInterface $view: The View to update.
Return value
bool Whether the view was updated.
Deprecated
in drupal:9.0.0 and is removed from drupal:10.0.0. Module-provided Views configuration should be updated to accommodate the changes described below.
See also
https://www.drupal.org/node/2900684
File
- core/
modules/ views/ src/ ViewsConfigUpdater.php, line 328
Class
- ViewsConfigUpdater
- Provides a BC layer for modules providing old configurations.
Namespace
Drupal\viewsCode
public function needsMultivalueBaseFieldUpdate(ViewEntityInterface $view) {
if ($this
->getMultivalueBaseFieldUpdateTableInfo()) {
return $this
->processDisplayHandlers($view, TRUE, function (&$handler, $handler_type, $key, $display_id) use ($view) {
return $this
->processMultivalueBaseFieldHandler($handler, $handler_type, $key, $display_id, $view);
});
}
return FALSE;
}