Config.php
Same filename in this branch
Same filename in other branches
- 9 composer/Plugin/VendorHardening/Config.php
- 9 core/modules/migrate_drupal/src/Plugin/migrate/source/d8/Config.php
- 9 core/modules/migrate/src/Plugin/migrate/destination/Config.php
- 9 core/lib/Drupal/Core/Config/Config.php
- 10 composer/Plugin/VendorHardening/Config.php
- 10 core/modules/migrate_drupal/src/Plugin/migrate/source/d8/Config.php
- 10 core/modules/migrate/src/Plugin/migrate/destination/Config.php
- 10 core/lib/Drupal/Core/Config/Config.php
- 11.x composer/Plugin/VendorHardening/Config.php
- 11.x core/modules/migrate_drupal/src/Plugin/migrate/source/d8/Config.php
- 11.x core/modules/migrate/src/Plugin/migrate/destination/Config.php
- 11.x core/lib/Drupal/Core/Config/Config.php
Namespace
Drupal\migrate_drupal\Plugin\migrate\source\d8File
-
core/
modules/ migrate_drupal/ src/ Plugin/ migrate/ source/ d8/ Config.php
View source
<?php
namespace Drupal\migrate_drupal\Plugin\migrate\source\d8;
use Drupal\migrate\Row;
use Drupal\migrate_drupal\Plugin\migrate\source\DrupalSqlBase;
/**
* Drupal config source from database.
*
* @MigrateSource(
* id = "d8_config",
* source_module = "system",
* )
*/
class Config extends DrupalSqlBase {
/**
* {@inheritdoc}
*/
public function query() {
$query = $this->select('config', 'c')
->fields('c', [
'collection',
'name',
'data',
]);
if (!empty($this->configuration['collections'])) {
$query->condition('collection', (array) $this->configuration['collections'], 'IN');
}
if (!empty($this->configuration['names'])) {
$query->condition('name', (array) $this->configuration['names'], 'IN');
}
return $query;
}
/**
* {@inheritdoc}
*/
public function prepareRow(Row $row) {
$row->setSourceProperty('data', unserialize($row->getSourceProperty('data')));
}
/**
* {@inheritdoc}
*/
public function fields() {
return [
'collection' => $this->t('The config object collection.'),
'name' => $this->t('The config object name.'),
'data' => $this->t('Serialized configuration object data.'),
];
}
/**
* {@inheritdoc}
*/
public function getIds() {
$ids['collection']['type'] = 'string';
$ids['name']['type'] = 'string';
return $ids;
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
Config | Drupal config source from database. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.