By robloach on
Change record status:
Published (View all published change records)
Project:
Introduced in branch:
8.x
Issue links:
Description:
In light of the core subsystems move to PSR-4 autoloading, the drupal_depth_first_search() function has been moved to a Graph class.
Drupal 7
require_once DRUPAL_ROOT . '/includes/graph.inc';
drupal_depth_first_search($graph);
Drupal 8
use Drupal\Component\Graph\Graph;
$graph_object = new Graph($graph);
$graph = $graph_object->searchAndSort($graph);
Impacts:
Module developers