LanguageContentSettingsTaxonomyVocabulary.php
Same filename in this branch
Same filename in other branches
- 9 core/modules/language/src/Plugin/migrate/source/d6/LanguageContentSettingsTaxonomyVocabulary.php
- 9 core/modules/language/src/Plugin/migrate/source/d7/LanguageContentSettingsTaxonomyVocabulary.php
- 8.9.x core/modules/language/src/Plugin/migrate/source/d6/LanguageContentSettingsTaxonomyVocabulary.php
- 8.9.x core/modules/language/src/Plugin/migrate/source/d7/LanguageContentSettingsTaxonomyVocabulary.php
- 10 core/modules/language/src/Plugin/migrate/source/d6/LanguageContentSettingsTaxonomyVocabulary.php
- 10 core/modules/language/src/Plugin/migrate/source/d7/LanguageContentSettingsTaxonomyVocabulary.php
Namespace
Drupal\language\Plugin\migrate\source\d7File
-
core/
modules/ language/ src/ Plugin/ migrate/ source/ d7/ LanguageContentSettingsTaxonomyVocabulary.php
View source
<?php
namespace Drupal\language\Plugin\migrate\source\d7;
use Drupal\taxonomy\Plugin\migrate\source\d7\Vocabulary;
/**
* Drupal 7 i18n vocabularies source from database.
*
* For available configuration keys, refer to the parent classes.
*
* @see \Drupal\migrate\Plugin\migrate\source\SqlBase
* @see \Drupal\migrate\Plugin\migrate\source\SourcePluginBas
*
* @MigrateSource(
* id = "d7_language_content_settings_taxonomy_vocabulary",
* source_module = "i18n_taxonomy"
* )
*/
class LanguageContentSettingsTaxonomyVocabulary extends Vocabulary {
/**
* {@inheritdoc}
*/
public function query() {
$query = parent::query();
if ($this->getDatabase()
->schema()
->fieldExists('taxonomy_vocabulary', 'i18n_mode')) {
$query->addField('v', 'language');
$query->addField('v', 'i18n_mode');
}
return $query;
}
/**
* {@inheritdoc}
*/
public function fields() {
$fields = parent::fields();
$fields['language'] = $this->t('i18n language');
$fields['i18n_mode'] = $this->t('i18n mode');
return $fields;
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
LanguageContentSettingsTaxonomyVocabulary | Drupal 7 i18n vocabularies source from database. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.