You are here

protected function MetatagManager::fieldTypes in Metatag 8

Returns a list of fields handled by Metatag.

Return value

array A list of supported field types.

1 call to MetatagManager::fieldTypes()
MetatagManager::getFields in src/MetatagManager.php
Returns a list of the Metatag fields on an entity.

File

src/MetatagManager.php, line 674

Class

MetatagManager
Class MetatagManager.

Namespace

Drupal\metatag

Code

protected function fieldTypes() {

  // @todo Either get this dynamically from field plugins or forget it and
  // just hardcode metatag where this is called.
  return [
    'metatag',
  ];
}