
| Current Path : /var/www/html/sirius-pallets/web/core/lib/Drupal/Core/StringTranslation/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/sirius-pallets/web/core/lib/Drupal/Core/StringTranslation/TranslationWrapper.php |
<?php
namespace Drupal\Core\StringTranslation;
/**
* Provides translatable string class.
*
* @deprecated in drupal:8.0.0 and is removed from drupal:11.0.0.
* Use the \Drupal\Core\StringTranslation\TranslatableMarkup class instead.
*
* @see https://www.drupal.org/node/2571255
*/
class TranslationWrapper extends TranslatableMarkup {
/**
* {@inheritdoc}
*/
public function __construct($string, array $arguments = [], array $options = [], ?TranslationInterface $string_translation = NULL) {
@trigger_error(__CLASS__ . ' is deprecated in drupal:8.0.0 and is removed from drupal:11.0.0. Use the \Drupal\Core\StringTranslation\TranslatableMarkup class instead. See https://www.drupal.org/node/2571255', E_USER_DEPRECATED);
parent::__construct($string, $arguments, $options, $string_translation);
}
}