You are here

protected function EntityDisplayModeListBuilder::isValidEntity in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/field_ui/src/EntityDisplayModeListBuilder.php \Drupal\field_ui\EntityDisplayModeListBuilder::isValidEntity()

Filters entities based on their controllers.

Parameters

$entity_type: The entity type of the entity that needs to be validated.

Return value

bool TRUE if the entity has the correct controller, FALSE if the entity doesn't has the correct controller.

1 call to EntityDisplayModeListBuilder::isValidEntity()
EntityDisplayModeListBuilder::render in core/modules/field_ui/src/EntityDisplayModeListBuilder.php
Builds the entity listing as renderable array for table.html.twig.
1 method overrides EntityDisplayModeListBuilder::isValidEntity()
EntityFormModeListBuilder::isValidEntity in core/modules/field_ui/src/EntityFormModeListBuilder.php
Filters entities based on their controllers.

File

core/modules/field_ui/src/EntityDisplayModeListBuilder.php, line 142
Contains \Drupal\field_ui\EntityDisplayModeListBuilder.

Class

EntityDisplayModeListBuilder
Defines a class to build a listing of view mode entities.

Namespace

Drupal\field_ui

Code

protected function isValidEntity($entity_type) {
  return $this->entityTypes[$entity_type]
    ->get('field_ui_base_route') && $this->entityTypes[$entity_type]
    ->hasViewBuilderClass();
}