public function TranslatableMarkup::getArguments in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/StringTranslation/TranslatableMarkup.php \Drupal\Core\StringTranslation\TranslatableMarkup::getArguments()
Gets all argments from this translated string.
Return value
mixed[] The array of arguments.
2 calls to TranslatableMarkup::getArguments()
- PluralTranslatableMarkup::render in core/
lib/ Drupal/ Core/ StringTranslation/ PluralTranslatableMarkup.php - Renders the object as a string.
- TranslatableMarkup::render in core/
lib/ Drupal/ Core/ StringTranslation/ TranslatableMarkup.php - Renders the object as a string.
File
- core/
lib/ Drupal/ Core/ StringTranslation/ TranslatableMarkup.php, line 192 - Contains \Drupal\Core\StringTranslation\TranslatableMarkup.
Class
- TranslatableMarkup
- Provides translatable markup class.
Namespace
Drupal\Core\StringTranslationCode
public function getArguments() {
return $this->arguments;
}