By damiankloip on
Change record status:
Published (View all published change records)
Project:
Introduced in branch:
8.x
Issue links:
Description:
In Drupal 7 each view result returned from its query was a stdClass object. In Drupal 8 this has been changed so each view result will be an instance of Drupal\views\ResultRow.
E.g.
Drupal 7:
function render_link($data, $values) {}
Drupal 8:
protected function renderLink($data, ResultRow $values) {}
Impacts:
Module developers