Download & Extend

Entity Query support for config entities

Project: 
Drupal core
Introduced in branch: 
8.x
Description: 

Similar to EntityFieldQuery has been rewritten config entities now also have support to be queried using a query.

Before

<?php
$enabled_views
= array();
foreach (
entity_load_multiple('view') as $view) {
  if (
$view->isEnabled()) {
   
$enabled_views[] = $view->id();
  }
}
?>

After (with entity query)

<?php
$enabled_views
= Drupal::entityQuery('view')
  ->
condition('disabled', FALSE)
  ->
execute();
?>
Impacts: 
Module developers
Updates Done (doc team, etc.)
Online documentation: 
Not done
Theming guide: 
Not done
Module developer documentation: 
Not done
Examples project: 
Not done
Coder Review: 
Not done
Coder Upgrade: 
Not done
Other: 
Other updates done
nobody click here