public function TranslatableMarkup::getOption in Zircon Profile 8.0
Same name and namespace in other branches
- 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 172 - Contains \Drupal\Core\StringTranslation\TranslatableMarkup.
Class
- TranslatableMarkup
- Provides translatable markup class.
Namespace
Drupal\Core\StringTranslationCode
public function getOption($name) {
return isset($this->options[$name]) ? $this->options[$name] : '';
}