ImageStyleEditForm::updateEffectWeights

protected ImageStyleEditForm::updateEffectWeights(array $effects)

Updates image effect weights.

Parameters

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

File

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

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']);
    }
  }
}
doc_Drupal
2016-10-29 09:19:46
Comments
Leave a Comment

Please login to continue.