VariableMultiRow.php

Same filename in other branches
  1. 9 core/modules/migrate_drupal/src/Plugin/migrate/source/VariableMultiRow.php
  2. 10 core/modules/migrate_drupal/src/Plugin/migrate/source/VariableMultiRow.php
  3. 11.x core/modules/migrate_drupal/src/Plugin/migrate/source/VariableMultiRow.php

Namespace

Drupal\migrate_drupal\Plugin\migrate\source

File

core/modules/migrate_drupal/src/Plugin/migrate/source/VariableMultiRow.php

View source
<?php

namespace Drupal\migrate_drupal\Plugin\migrate\source;

use Drupal\migrate\Row;

/**
 * Multiple variables source from database.
 *
 * Unlike the variable source plugin, this one returns one row per
 * variable.
 *
 * @MigrateSource(
 *   id = "variable_multirow",
 *   source_module = "system",
 * )
 */
class VariableMultiRow extends DrupalSqlBase {
    
    /**
     * {@inheritdoc}
     */
    public function query() {
        return $this->select('variable', 'v')
            ->fields('v', [
            'name',
            'value',
        ])
            ->condition('name', (array) $this->configuration['variables'], 'IN');
    }
    
    /**
     * {@inheritdoc}
     */
    public function fields() {
        return [
            'name' => $this->t('Name'),
            'value' => $this->t('Value'),
        ];
    }
    
    /**
     * {@inheritdoc}
     */
    public function prepareRow(Row $row) {
        if ($value = $row->getSourceProperty('value')) {
            $row->setSourceProperty('value', unserialize($value));
        }
        return parent::prepareRow($row);
    }
    
    /**
     * {@inheritdoc}
     */
    public function getIds() {
        $ids['name']['type'] = 'string';
        return $ids;
    }

}

Classes

Title Deprecated Summary
VariableMultiRow Multiple variables source from database.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.