Further Drupal 8.6.4 changes. Some core files were not committed before a commit...
[yaffs-website] / web / core / modules / migrate_drupal / src / Plugin / migrate / source / d6 / i18nVariable.php
1 <?php
2
3 namespace Drupal\migrate_drupal\Plugin\migrate\source\d6;
4
5 @trigger_error('The ' . __NAMESPACE__ . '\i18nVariable is deprecated in Drupal 8.4.0 and will be removed before Drupal 9.0.0. Instead, use ' . __NAMESPACE__ . '\VariableTranslation', E_USER_DEPRECATED);
6
7 /**
8  * Drupal i18n_variable source from database.
9  *
10  * @MigrateSource(
11  *   id = "i18n_variable",
12  *   source_module = "system",
13  * )
14  *
15  * @deprecated in Drupal 8.4.x and will be removed in Drupal 9.0.x. Use
16  * \Drupal\migrate_drupal\Plugin\migrate\source\d6\VariableTranslation instead.
17  *
18  * @see https://www.drupal.org/node/2898649
19  */
20 class i18nVariable extends VariableTranslation {}