You are here

public function BrightcoveCustomField::getEnumValues in Brightcove Video Connect 8.2

Same name and namespace in other branches
  1. 8 src/Entity/BrightcoveCustomField.php \Drupal\brightcove\Entity\BrightcoveCustomField::getEnumValues()
  2. 3.x src/Entity/BrightcoveCustomField.php \Drupal\brightcove\Entity\BrightcoveCustomField::getEnumValues()

Returns enum values.

Return value

array The enum values in array.

Overrides BrightcoveCustomFieldInterface::getEnumValues

File

src/Entity/BrightcoveCustomField.php, line 60

Class

BrightcoveCustomField
Defines the Brightcove Custom Field.

Namespace

Drupal\brightcove\Entity

Code

public function getEnumValues() {
  return $this
    ->get('enum_values')
    ->getValue();
}