Skip to content
Snippets Groups Projects
Unverified Commit c4debe70 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #3087332 by quietone, huzooka, amateescu, danflanagan8: Deprecate the...

Issue #3087332 by quietone, huzooka, amateescu, danflanagan8: Deprecate the 'd6_url_alias_language' migration process plugin

(cherry picked from commit 04f25785)
parent 32c93c8b
No related branches found
No related tags found
No related merge requests found
......@@ -11,11 +11,25 @@
* Url alias language code process.
*
* @MigrateProcessPlugin(
* id = "d6_url_alias_language"
* id = "d6_url_alias_language",
* no_ui = TRUE
* )
*
* @deprecated in drupal:9.3.0 and is removed from drupal:10.0.0. No direct
* replacement is provided.
*
* @see https://www.drupal.org/node/3219051
*/
class UrlAliasLanguage extends ProcessPluginBase {
/**
* {@inheritdoc}
*/
public function __construct(array $configuration, $plugin_id, $plugin_definition) {
@trigger_error(__CLASS__ . ' is deprecated in drupal:9.3.0 and is removed from drupal:10.0.0. No direct replacement is provided. See https://www.drupal.org/node/3219051', E_USER_DEPRECATED);
parent::__construct($configuration, $plugin_id, $plugin_definition);
}
/**
* {@inheritdoc}
*/
......
<?php
namespace Drupal\Tests\path\Unit\migrate\process\d6;
use Drupal\path\Plugin\migrate\process\d6\UrlAliasLanguage;
use Drupal\Tests\migrate\Unit\process\MigrateProcessTestCase;
/**
* Tests error message from deprecated UrlAliasLanguage process plugin.
*
* @group path
* @group legacy
* @coversDefaultClass \Drupal\path\Plugin\migrate\process\d6\UrlAliasLanguage
*/
class UrlAliasLanguageDeprecatedTest extends MigrateProcessTestCase {
/**
* Tests legacy UrlAliasLanguage process plugin.
*/
public function testUrlAliasLanguageDeprecation() {
$this->expectDeprecation("Drupal\path\Plugin\migrate\process\d6\UrlAliasLanguage is deprecated in drupal:9.3.0 and is removed from drupal:10.0.0. No direct replacement is provided. See https://www.drupal.org/node/3219051");
new UrlAliasLanguage([], 'test', []);
}
}
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