class ImageStyles

Same name and namespace in other branches
  1. 11.x core/modules/image/src/Plugin/migrate/source/d7/ImageStyles.php \Drupal\image\Plugin\migrate\source\d7\ImageStyles

Drupal 7 image styles source from database.

For available configuration keys, refer to the parent classes.

Plugin annotation


@MigrateSource(
  id = "d7_image_styles",
  source_module = "image"
)

Hierarchy

Expanded class hierarchy of ImageStyles

See also

\Drupal\migrate\Plugin\migrate\source\SqlBase

\Drupal\migrate\Plugin\migrate\source\SourcePluginBase

File

core/modules/image/src/Plugin/migrate/source/d7/ImageStyles.php, line 23

Namespace

Drupal\image\Plugin\migrate\source\d7
View source
class ImageStyles extends DrupalSqlBase {
  
  /**
   * {@inheritdoc}
   */
  public function query() {
    return $this->select('image_styles', 'ims')
      ->fields('ims');
  }
  
  /**
   * {@inheritdoc}
   */
  public function fields() {
    $fields = [
      'isid' => $this->t('The primary identifier for an image style.'),
      'name' => $this->t('The style machine name.'),
      'label' => $this->t('The style administrative name.'),
    ];
    return $fields;
  }
  
  /**
   * {@inheritdoc}
   */
  public function getIds() {
    $ids['isid']['type'] = 'integer';
    return $ids;
  }
  
  /**
   * {@inheritdoc}
   */
  public function prepareRow(Row $row) {
    $effects = [];
    $results = $this->select('image_effects', 'ie')
      ->fields('ie')
      ->condition('isid', $row->getSourceProperty('isid'))
      ->execute();
    foreach ($results as $key => $result) {
      $result['data'] = unserialize($result['data']);
      $effects[$key] = $result;
    }
    $row->setSourceProperty('effects', $effects);
    return parent::prepareRow($row);
  }

}

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