public EntityDisplayModeController::viewModeTypeSelection()
Provides a list of eligible entity types for adding view modes.
Return value
array A list of entity types to add a view mode for.
File
- core/modules/field_ui/src/Controller/EntityDisplayModeController.php, line 19
Class
- EntityDisplayModeController
- Provides methods for entity display mode routes.
Namespace
Drupal\field_ui\Controller
Code
public function viewModeTypeSelection() { $entity_types = array(); foreach ($this->entityManager()->getDefinitions() as $entity_type_id => $entity_type) { if ($entity_type->get('field_ui_base_route') && $entity_type->hasViewBuilderClass()) { $entity_types[$entity_type_id] = array( 'title' => $entity_type->getLabel(), 'url' => Url::fromRoute('entity.entity_view_mode.add_form', array('entity_type_id' => $entity_type_id)), 'localized_options' => array(), ); } } return array( '#theme' => 'admin_block_content', '#content' => $entity_types, ); }
Please login to continue.