You are here

public function TipPluginBase::set in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/tour/src/TipPluginBase.php \Drupal\tour\TipPluginBase::set()

Used for returning values by key.

Key of the value.

Value of the key.

Overrides TipPluginInterface::set

File

core/modules/tour/src/TipPluginBase.php, line 118

Class

TipPluginBase
Defines a base tour item implementation.

Namespace

Drupal\tour

Code

public function set($key, $value) {
  $this->configuration[$key] = $value;
}