Skip to content
Snippets Groups Projects
Commit 0dc48d0c authored by catch's avatar catch
Browse files

Issue #2683263 by claudiu.cristea, alexpott: Update text for...

Issue #2683263 by claudiu.cristea, alexpott: Update text for views_post_update_image_style_dependencies() wrong
parent 054d153f
No related branches found
No related tags found
No related merge requests found
......@@ -9,25 +9,6 @@
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".
*/
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment