Skip to content
Snippets Groups Projects

Issue #3238915: Refactor (if feasible) uses of the jQuery ready function to use VanillaJS

Closed Issue #3238915: Refactor (if feasible) uses of the jQuery ready function to use VanillaJS
Closed Harumi Jang requested to merge issue/drupal-3238915:3238915-refactor-if-feasible into 9.3.x
2 files
+ 40
1
Compare changes
  • Side-by-side
  • Inline
Files
2
  • 04f25785
    Issue #3087332 by quietone, huzooka, amateescu, danflanagan8: Deprecate the... · 04f25785
    Alex Pott authored
    Issue #3087332 by quietone, huzooka, amateescu, danflanagan8: Deprecate the 'd6_url_alias_language' migration process plugin
@@ -11,11 +11,25 @@
@@ -11,11 +11,25 @@
* Url alias language code process.
* Url alias language code process.
*
*
* @MigrateProcessPlugin(
* @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 {
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}
* {@inheritdoc}
*/
*/
Loading