You are here

public function TranslatableMarkup::getOption in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/StringTranslation/TranslatableMarkup.php \Drupal\Core\StringTranslation\TranslatableMarkup::getOption()

Gets a specific option from this translated string.

Parameters

string $name: Option name.

Return value

mixed The value of this option or empty string of option is not set.

1 call to TranslatableMarkup::getOption()
PluralTranslatableMarkup::getPluralIndex in core/lib/Drupal/Core/StringTranslation/PluralTranslatableMarkup.php
Gets the plural index through the gettext formula.

File

core/lib/Drupal/Core/StringTranslation/TranslatableMarkup.php, line 158

Class

TranslatableMarkup
Provides translatable markup class.

Namespace

Drupal\Core\StringTranslation

Code

public function getOption($name) {
  return isset($this->options[$name]) ? $this->options[$name] : '';
}