You are here

public function EmbedTypeInterface::getConfigurationValue in Embed 8

Gets a configuration value.

Parameters

string $name: The name of the plugin configuration value.

mixed $default: The default value to return if the configuration value does not exist.

Return value

mixed The currently set configuration value, or the value of $default if the configuration value is not set.

1 method overrides EmbedTypeInterface::getConfigurationValue()
EmbedTypeBase::getConfigurationValue in src/EmbedType/EmbedTypeBase.php
Gets a configuration value.

File

src/EmbedType/EmbedTypeInterface.php, line 29

Class

EmbedTypeInterface
Provides an interface for an embed type and its metadata.

Namespace

Drupal\embed\EmbedType

Code

public function getConfigurationValue($name, $default = NULL);