Skip to content
Snippets Groups Projects
Commit c728e353 authored by catch's avatar catch
Browse files

Issue #3269141 by longwave, sharayurajput, andypost: Alias deprecated...

Issue #3269141 by longwave, sharayurajput, andypost: Alias deprecated Drupal\Core\StringTranslation\TranslationWrapper to TranslatableMarkup
parent 42be883e
No related branches found
No related tags found
No related merge requests found
......@@ -60,6 +60,11 @@
*/
define('DRUPAL_ROOT', dirname(__DIR__, 2));
/**
* Keep backward compatibility for sites with references to TranslationWrapper.
*/
class_alias(TranslatableMarkup::class, '\Drupal\Core\StringTranslation\TranslationWrapper', TRUE);
/**
* Translates a string to the current language or to a given language.
*
......
<?php
namespace Drupal\Core\StringTranslation;
/**
* Provides translatable string class.
*
* @deprecated in drupal:8.0.0 and is removed from drupal:10.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:10.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);
}
}
......@@ -7,7 +7,7 @@
use Drupal\Tests\UnitTestCase;
/**
* Tests the TranslationWrapper class.
* Tests the TranslationWrapper backward compatibility layer.
*
* @coversDefaultClass \Drupal\Core\StringTranslation\TranslationWrapper
* @group StringTranslation
......@@ -16,11 +16,9 @@ class TranslationWrapperTest extends UnitTestCase {
/**
* @covers ::__construct
* @group legacy
*/
public function testTranslationWrapper() {
$this->expectDeprecation('Drupal\Core\StringTranslation\TranslationWrapper is deprecated in drupal:8.0.0 and is removed from drupal:10.0.0. Use the \Drupal\Core\StringTranslation\TranslatableMarkup class instead. See https://www.drupal.org/node/2571255');
$object = new TranslationWrapper('Deprecated');
$object = new TranslationWrapper('Backward compatibility');
$this->assertInstanceOf(TranslatableMarkup::class, $object);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment