function ConfigEntity::prepareRow
Overrides SourcePluginBase::prepareRow
File
- 
              core/modules/ migrate/ src/ Plugin/ migrate/ source/ ConfigEntity.php, line 73 
Class
- ConfigEntity
- Drupal configuration source from database.
Namespace
Drupal\migrate\Plugin\migrate\sourceCode
public function prepareRow(Row $row) {
  // @see \Drupal\Core\Config\DatabaseStorage::decode()
  $row->setSourceProperty('data', unserialize($row->getSourceProperty('data'), [
    'allowed_classes' => FALSE,
  ]));
  return parent::prepareRow($row);
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
