views.post_update.php
Same filename in other branches
Post update functions for Views.
File
-
core/
modules/ views/ views.post_update.php
View source
<?php
/**
* @file
* Post update functions for Views.
*/
use Drupal\Core\Config\Entity\ConfigEntityUpdater;
use Drupal\views\ViewEntityInterface;
use Drupal\views\ViewsConfigUpdater;
/**
* Implements hook_removed_post_updates().
*/
function views_removed_post_updates() {
return [
'views_post_update_update_cacheability_metadata' => '9.0.0',
'views_post_update_cleanup_duplicate_views_data' => '9.0.0',
'views_post_update_field_formatter_dependencies' => '9.0.0',
'views_post_update_taxonomy_index_tid' => '9.0.0',
'views_post_update_serializer_dependencies' => '9.0.0',
'views_post_update_boolean_filter_values' => '9.0.0',
'views_post_update_grouped_filters' => '9.0.0',
'views_post_update_revision_metadata_fields' => '9.0.0',
'views_post_update_entity_link_url' => '9.0.0',
'views_post_update_bulk_field_moved' => '9.0.0',
'views_post_update_filter_placeholder_text' => '9.0.0',
'views_post_update_views_data_table_dependencies' => '9.0.0',
'views_post_update_table_display_cache_max_age' => '9.0.0',
'views_post_update_exposed_filter_blocks_label_display' => '9.0.0',
'views_post_update_make_placeholders_translatable' => '9.0.0',
'views_post_update_limit_operator_defaults' => '9.0.0',
'views_post_update_remove_core_key' => '9.0.0',
'views_post_update_field_names_for_multivalue_fields' => '10.0.0',
'views_post_update_configuration_entity_relationships' => '10.0.0',
'views_post_update_rename_default_display_setting' => '10.0.0',
'views_post_update_remove_sorting_global_text_field' => '10.0.0',
'views_post_update_title_translations' => '10.0.0',
'views_post_update_sort_identifier' => '10.0.0',
'views_post_update_provide_revision_table_relationship' => '10.0.0',
'views_post_update_image_lazy_load' => '10.0.0',
];
}
/**
* Update Views config schema to make boolean custom titles translatable.
*/
function views_post_update_boolean_custom_titles(?array &$sandbox = NULL) : void {
// Empty update to rebuild Views config schema.
}
/**
* Add eager load option to all oembed type field configurations.
*/
function views_post_update_oembed_eager_load(?array &$sandbox = NULL) : void {
/** @var \Drupal\views\ViewsConfigUpdater $view_config_updater */
$view_config_updater = \Drupal::classResolver(ViewsConfigUpdater::class);
\Drupal::classResolver(ConfigEntityUpdater::class)->update($sandbox, 'view', function (ViewEntityInterface $view) use ($view_config_updater) : bool {
return $view_config_updater->needsOembedEagerLoadFieldUpdate($view);
});
}
/**
* Add lazy load options to all responsive image type field configurations.
*/
function views_post_update_responsive_image_lazy_load(?array &$sandbox = NULL) : void {
/** @var \Drupal\views\ViewsConfigUpdater $view_config_updater */
$view_config_updater = \Drupal::classResolver(ViewsConfigUpdater::class);
\Drupal::classResolver(ConfigEntityUpdater::class)->update($sandbox, 'view', function (ViewEntityInterface $view) use ($view_config_updater) : bool {
return $view_config_updater->needsResponsiveImageLazyLoadFieldUpdate($view);
});
}
/**
* Update timestamp formatter settings for views.
*/
function views_post_update_timestamp_formatter(?array &$sandbox = NULL) : void {
/** @var \Drupal\views\ViewsConfigUpdater $view_config_updater */
$view_config_updater = \Drupal::classResolver(ViewsConfigUpdater::class);
\Drupal::classResolver(ConfigEntityUpdater::class)->update($sandbox, 'view', function (ViewEntityInterface $view) use ($view_config_updater) : bool {
return $view_config_updater->needsTimestampFormatterTimeDiffUpdate($view);
});
}
/**
* Fix '-revision_id' replacement token syntax.
*/
function views_post_update_fix_revision_id_part(&$sandbox = NULL) : void {
/** @var \Drupal\views\ViewsConfigUpdater $view_config_updater */
$view_config_updater = \Drupal::classResolver(ViewsConfigUpdater::class);
$view_config_updater->setDeprecationsEnabled(FALSE);
\Drupal::classResolver(ConfigEntityUpdater::class)->update($sandbox, 'view', function (ViewEntityInterface $view) use ($view_config_updater) {
return $view_config_updater->needsRevisionFieldHyphenFix($view);
});
}
/**
* Add labels to views which don't have one.
*/
function views_post_update_add_missing_labels(&$sandbox = NULL) : void {
/** @var \Drupal\views\ViewsConfigUpdater $view_config_updater */
$view_config_updater = \Drupal::classResolver(ViewsConfigUpdater::class);
\Drupal::classResolver(ConfigEntityUpdater::class)->update($sandbox, 'view', function (ViewEntityInterface $view) use ($view_config_updater) : bool {
return $view_config_updater->addLabelIfMissing($view);
});
}
/**
* Remove the skip_cache settings.
*/
function views_post_update_remove_skip_cache_setting() : void {
\Drupal::configFactory()->getEditable('views.settings')
->clear('skip_cache')
->save(TRUE);
}
/**
* Remove default_argument_skip_url setting.
*/
function views_post_update_remove_default_argument_skip_url(?array &$sandbox = NULL) : void {
/** @var \Drupal\views\ViewsConfigUpdater $view_config_updater */
$view_config_updater = \Drupal::classResolver(ViewsConfigUpdater::class);
\Drupal::classResolver(ConfigEntityUpdater::class)->update($sandbox, 'view', function (ViewEntityInterface $view) use ($view_config_updater) : bool {
return $view_config_updater->needsDefaultArgumentSkipUrlUpdate($view);
});
}
/**
* Removes User context from views with taxonomy filters.
*/
function views_post_update_taxonomy_filter_user_context(?array &$sandbox = NULL) : void {
/** @var \Drupal\views\ViewsConfigUpdater $view_config_updater */
$view_config_updater = \Drupal::classResolver(ViewsConfigUpdater::class);
\Drupal::classResolver(ConfigEntityUpdater::class)->update($sandbox, 'view', function (ViewEntityInterface $view) use ($view_config_updater) : bool {
return $view_config_updater->needsTaxonomyTermFilterUpdate($view);
});
}
/**
* Adds a default pager heading.
*/
function views_post_update_pager_heading(?array &$sandbox = NULL) : void {
/** @var \Drupal\views\ViewsConfigUpdater $view_config_updater */
$view_config_updater = \Drupal::classResolver(ViewsConfigUpdater::class);
\Drupal::classResolver(ConfigEntityUpdater::class)->update($sandbox, 'view', function (ViewEntityInterface $view) use ($view_config_updater) : bool {
return $view_config_updater->needsPagerHeadingUpdate($view);
});
}
/**
* Removes entity display cache metadata from views with rendered entity fields.
*/
function views_post_update_rendered_entity_field_cache_metadata(?array &$sandbox = NULL) : void {
/** @var \Drupal\views\ViewsConfigUpdater $view_config_updater */
$view_config_updater = \Drupal::classResolver(ViewsConfigUpdater::class);
\Drupal::classResolver(ConfigEntityUpdater::class)->update($sandbox, 'view', function (ViewEntityInterface $view) use ($view_config_updater) : bool {
return $view_config_updater->needsRenderedEntityFieldUpdate($view);
});
}
/**
* Post update configured views for entity reference argument plugin IDs.
*/
function views_post_update_views_data_argument_plugin_id(?array &$sandbox = NULL) : void {
/** @var \Drupal\views\ViewsConfigUpdater $view_config_updater */
$view_config_updater = \Drupal::classResolver(ViewsConfigUpdater::class);
$view_config_updater->setDeprecationsEnabled(FALSE);
\Drupal::classResolver(ConfigEntityUpdater::class)->update($sandbox, 'view', function (ViewEntityInterface $view) use ($view_config_updater) : bool {
return $view_config_updater->needsEntityArgumentUpdate($view);
});
}
Functions
Title | Deprecated | Summary |
---|---|---|
views_post_update_add_missing_labels | Add labels to views which don't have one. | |
views_post_update_boolean_custom_titles | Update Views config schema to make boolean custom titles translatable. | |
views_post_update_fix_revision_id_part | Fix '-revision_id' replacement token syntax. | |
views_post_update_oembed_eager_load | Add eager load option to all oembed type field configurations. | |
views_post_update_pager_heading | Adds a default pager heading. | |
views_post_update_remove_default_argument_skip_url | Remove default_argument_skip_url setting. | |
views_post_update_remove_skip_cache_setting | Remove the skip_cache settings. | |
views_post_update_rendered_entity_field_cache_metadata | Removes entity display cache metadata from views with rendered entity fields. | |
views_post_update_responsive_image_lazy_load | Add lazy load options to all responsive image type field configurations. | |
views_post_update_taxonomy_filter_user_context | Removes User context from views with taxonomy filters. | |
views_post_update_timestamp_formatter | Update timestamp formatter settings for views. | |
views_post_update_views_data_argument_plugin_id | Post update configured views for entity reference argument plugin IDs. | |
views_removed_post_updates | Implements hook_removed_post_updates(). |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.