private function EntityManager::getExcludedContentEntityTypeIds in Acquia Content Hub 8
List of Content Entity Type Ids that are excluded from Content Hub.
Return value
array List of content entity type IDs.
2 calls to EntityManager::getExcludedContentEntityTypeIds()
- EntityManager::getAllowedEntityTypes in src/EntityManager.php 
- Obtains the list of entity types.
- EntityManager::isSupportedContentHubEntity in src/EntityManager.php 
- Checks whether the current entity is supported by Content Hub.
File
- src/EntityManager.php, line 745 
Class
- EntityManager
- Provides a service for managing entity actions for Content Hub.
Namespace
Drupal\acquia_contenthubCode
private function getExcludedContentEntityTypeIds() {
  return [
    'comment',
    'contact_message',
    'crop',
    'menu_link_content',
    'scheduled_update',
    'search_api_task',
    'shortcut',
    'user',
  ];
}