class DefaultLangcode
Same name in other branches
- 9 core/modules/language/src/Plugin/migrate/destination/DefaultLangcode.php \Drupal\language\Plugin\migrate\destination\DefaultLangcode
- 8.9.x core/modules/language/src/Plugin/migrate/destination/DefaultLangcode.php \Drupal\language\Plugin\migrate\destination\DefaultLangcode
- 11.x core/modules/language/src/Plugin/migrate/destination/DefaultLangcode.php \Drupal\language\Plugin\migrate\destination\DefaultLangcode
Provides a destination plugin for the default langcode config.
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements \Drupal\Component\Plugin\PluginInspectionInterface, \Drupal\Component\Plugin\DerivativeInspectionInterface
- class \Drupal\Core\Plugin\PluginBase extends \Drupal\Component\Plugin\PluginBase uses \Drupal\Core\StringTranslation\StringTranslationTrait, \Drupal\Core\DependencyInjection\DependencySerializationTrait, \Drupal\Core\Messenger\MessengerTrait
- class \Drupal\migrate\Plugin\migrate\destination\DestinationBase extends \Drupal\Core\Plugin\PluginBase implements \Drupal\migrate\Plugin\MigrateDestinationInterface, \Drupal\migrate\Plugin\RequirementsInterface
- class \Drupal\migrate\Plugin\migrate\destination\Config extends \Drupal\migrate\Plugin\migrate\destination\DestinationBase implements \Drupal\Core\Plugin\ContainerFactoryPluginInterface, \Drupal\Component\Plugin\DependentPluginInterface uses \Drupal\Core\Entity\DependencyTrait
- class \Drupal\language\Plugin\migrate\destination\DefaultLangcode extends \Drupal\migrate\Plugin\migrate\destination\Config
- class \Drupal\migrate\Plugin\migrate\destination\Config extends \Drupal\migrate\Plugin\migrate\destination\DestinationBase implements \Drupal\Core\Plugin\ContainerFactoryPluginInterface, \Drupal\Component\Plugin\DependentPluginInterface uses \Drupal\Core\Entity\DependencyTrait
- class \Drupal\migrate\Plugin\migrate\destination\DestinationBase extends \Drupal\Core\Plugin\PluginBase implements \Drupal\migrate\Plugin\MigrateDestinationInterface, \Drupal\migrate\Plugin\RequirementsInterface
- class \Drupal\Core\Plugin\PluginBase extends \Drupal\Component\Plugin\PluginBase uses \Drupal\Core\StringTranslation\StringTranslationTrait, \Drupal\Core\DependencyInjection\DependencySerializationTrait, \Drupal\Core\Messenger\MessengerTrait
Expanded class hierarchy of DefaultLangcode
1 string reference to 'DefaultLangcode'
- ContentEntityCloneTest::testEntityPropertiesModifications in core/
tests/ Drupal/ KernelTests/ Core/ Entity/ ContentEntityCloneTest.php - Tests references of entity properties after entity cloning.
File
-
core/
modules/ language/ src/ Plugin/ migrate/ destination/ DefaultLangcode.php, line 14
Namespace
Drupal\language\Plugin\migrate\destinationView source
class DefaultLangcode extends Config {
/**
* {@inheritdoc}
*/
public function import(Row $row, array $old_destination_id_values = []) {
$destination = $row->getDestination();
$langcode = $destination['default_langcode'];
// Check if the language exists.
if (ConfigurableLanguage::load($langcode) === NULL) {
throw new MigrateException("The language '{$langcode}' does not exist on this site.");
}
$this->config
->set('default_langcode', $destination['default_langcode']);
$this->config
->save();
return [
$this->config
->getName(),
];
}
}
Members
Title Sort descending | Modifiers | Object type | Summary | Overriden Title | Overrides |
---|---|---|---|---|---|
Config::$config | protected | property | The config object. | ||
Config::$language_manager | protected | property | |||
Config::$typedConfigManager | protected | property | The typed config manager service. | ||
Config::calculateDependencies | public | function | Calculates dependencies for the configured plugin. | Overrides DependentPluginInterface::calculateDependencies | |
Config::create | public static | function | Creates an instance of the plugin. | Overrides ContainerFactoryPluginInterface::create | |
Config::fields | public | function | Returns an array of destination fields. | Overrides MigrateDestinationInterface::fields | |
Config::getDestinationModule | public | function | Gets the destination module handling the destination data. | Overrides DestinationBase::getDestinationModule | |
Config::getIds | public | function | Gets the destination IDs. | Overrides MigrateDestinationInterface::getIds | |
Config::isTranslationDestination | protected | function | Get whether this destination is for translations. | ||
Config::rollback | public | function | Delete the specified destination object from the target Drupal. | Overrides DestinationBase::rollback | |
Config::__construct | public | function | Constructs a Config destination object. | Overrides DestinationBase::__construct | |
DefaultLangcode::import | public | function | Import the row. | Overrides Config::import | |
DependencyTrait::$dependencies | protected | property | The object's dependencies. | ||
DependencyTrait::addDependencies | protected | function | Adds multiple dependencies. | ||
DependencyTrait::addDependency | protected | function | Adds a dependency. | ||
DestinationBase::$migration | protected | property | The migration. | ||
DestinationBase::$rollbackAction | protected | property | The rollback action to be saved for the last imported item. | ||
DestinationBase::$supportsRollback | protected | property | Indicates whether the destination can be rolled back. | ||
DestinationBase::checkRequirements | public | function | Checks if requirements for this plugin are OK. | Overrides RequirementsInterface::checkRequirements | |
DestinationBase::rollbackAction | public | function | The rollback action for the last imported item. | Overrides MigrateDestinationInterface::rollbackAction | |
DestinationBase::setRollbackAction | protected | function | For a destination item being updated, set the appropriate rollback action. | ||
DestinationBase::supportsRollback | public | function | Whether the destination can be rolled back or not. | Overrides MigrateDestinationInterface::supportsRollback | |
PluginInspectionInterface::getPluginDefinition | public | function | Gets the definition of the plugin implementation. | 6 | |
PluginInspectionInterface::getPluginId | public | function | Gets the plugin ID of the plugin instance. | 2 |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.