
| Current Path : /var/www/html1/testsite/web/core/modules/image/src/Plugin/migrate/source/d6/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html1/testsite/web/core/modules/image/src/Plugin/migrate/source/d6/ImageCachePreset.php |
<?php
namespace Drupal\image\Plugin\migrate\source\d6;
use Drupal\migrate_drupal\Plugin\migrate\source\DrupalSqlBase;
use Drupal\migrate\Row;
/**
* Drupal 6 imagecache presets source from database.
*
* @MigrateSource(
* id = "d6_imagecache_presets",
* source_module = "imagecache"
* )
*/
class ImageCachePreset extends DrupalSqlBase {
/**
* {@inheritdoc}
*/
public function query() {
$query = $this->select('imagecache_preset', 'icp')
->fields('icp');
return $query;
}
/**
* {@inheritdoc}
*/
public function fields() {
$fields = [
'presetid' => $this->t('Preset ID'),
'presetname' => $this->t('Preset Name'),
];
return $fields;
}
/**
* {@inheritdoc}
*/
public function getIds() {
$ids['presetid']['type'] = 'integer';
return $ids;
}
/**
* {@inheritdoc}
*/
public function prepareRow(Row $row) {
$actions = [];
$results = $this->select('imagecache_action', 'ica')
->fields('ica')
->condition('presetid', $row->getSourceProperty('presetid'))
->execute();
foreach ($results as $key => $result) {
$actions[$key] = $result;
$actions[$key]['data'] = unserialize($result['data']);
}
$row->setSourceProperty('actions', $actions);
return parent::prepareRow($row);
}
}