You are here

protected function AssetRefreshManager::getItemsTypesToTrack in Media: Acquia DAM 8

Returns the list of item types to track.

Return value

string[] List of item types (machine) names.

1 call to AssetRefreshManager::getItemsTypesToTrack()
AssetRefreshManager::extractAssetIds in src/Service/AssetRefreshManager.php
Extracts asset id values from the response body.

File

src/Service/AssetRefreshManager.php, line 104

Class

AssetRefreshManager
Class AssetRefreshManager.

Namespace

Drupal\media_acquiadam\Service

Code

protected function getItemsTypesToTrack() : array {
  return [
    'asset',
    'video',
    'image',
    'document',
    'audio',
  ];
}