By dawehner on
Change record status:
Published (View all published change records)
Project:
Introduced in branch:
8.x-3.x
Issue links:
Description:
Instead of calling views_fetch_data() directly you should now use the service.
Before:
$data = views_fetch_data('node');
After:
$data = drupal_container()->get('views.views_data')->get('node');
Impacts:
Module developers