public static function View::postLoad in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/views/src/Entity/View.php \Drupal\views\Entity\View::postLoad()
Acts on loaded entities.
Parameters
\Drupal\Core\Entity\EntityStorageInterface $storage: The entity storage object.
\Drupal\Core\Entity\EntityInterface[] $entities: An array of entities.
Overrides Entity::postLoad
File
- core/
modules/ views/ src/ Entity/ View.php, line 362 - Contains \Drupal\views\Entity\View.
Class
- View
- Defines a View configuration entity class.
Namespace
Drupal\views\EntityCode
public static function postLoad(EntityStorageInterface $storage, array &$entities) {
parent::postLoad($storage, $entities);
foreach ($entities as $entity) {
$entity
->mergeDefaultDisplaysOptions();
}
}