Issue #2683263 by claudiu.cristea, alexpott: Update text for views_post_update_image_style_dependencies() wrong

8.2.x
Nathaniel Catchpole 2016-03-10 17:20:22 +09:00
parent 054d153ff9
commit 0dc48d0cca
1 changed files with 19 additions and 19 deletions

View File

@ -9,25 +9,6 @@ use Drupal\Core\StringTranslation\TranslatableMarkup;
use Drupal\views\Entity\View;
use Drupal\views\Views;
/**
* @addtogroup updates-8.0.x
* @{
*/
/**
* Update dependencies to image style.
*/
function views_post_update_image_style_dependencies() {
$views = View::loadMultiple();
array_walk($views, function(View $view) {
$view->save();
});
}
/**
* @} End of "addtogroup updates-8.0.x".
*/
/**
* @addtogroup updates-8.0.0-beta
* @{
@ -159,3 +140,22 @@ function views_post_update_cleanup_duplicate_views_data() {
/**
* @} End of "addtogroup updates-8.0.0-rc".
*/
/**
* @addtogroup updates-8.0.x
* @{
*/
/**
* Include field formatter dependencies in a view when the formatter is used.
*/
function views_post_update_field_formatter_dependencies() {
$views = View::loadMultiple();
array_walk($views, function(View $view) {
$view->save();
});
}
/**
* @} End of "addtogroup updates-8.0.x".
*/