function ImageStyleEditForm::updateEffectWeights

Same name in other branches
  1. 9 core/modules/image/src/Form/ImageStyleEditForm.php \Drupal\image\Form\ImageStyleEditForm::updateEffectWeights()
  2. 8.9.x core/modules/image/src/Form/ImageStyleEditForm.php \Drupal\image\Form\ImageStyleEditForm::updateEffectWeights()
  3. 11.x core/modules/image/src/Form/ImageStyleEditForm.php \Drupal\image\Form\ImageStyleEditForm::updateEffectWeights()

Updates image effect weights.

Parameters

array $effects: Associative array with effects having effect uuid as keys and array with effect data as values.

1 call to ImageStyleEditForm::updateEffectWeights()
ImageStyleEditForm::submitForm in core/modules/image/src/Form/ImageStyleEditForm.php

File

core/modules/image/src/Form/ImageStyleEditForm.php, line 268

Class

ImageStyleEditForm
Controller for image style edit form.

Namespace

Drupal\image\Form

Code

protected function updateEffectWeights(array $effects) {
    foreach ($effects as $uuid => $effect_data) {
        if ($this->entity
            ->getEffects()
            ->has($uuid)) {
            $this->entity
                ->getEffect($uuid)
                ->setWeight($effect_data['weight']);
        }
    }
}

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