function ImageEffectAddForm::buildForm

Same name and namespace in other branches
  1. 11.x core/modules/image/src/Form/ImageEffectAddForm.php \Drupal\image\Form\ImageEffectAddForm::buildForm()
  2. 10 core/modules/image/src/Form/ImageEffectAddForm.php \Drupal\image\Form\ImageEffectAddForm::buildForm()
  3. 8.9.x core/modules/image/src/Form/ImageEffectAddForm.php \Drupal\image\Form\ImageEffectAddForm::buildForm()

File

core/modules/image/src/Form/ImageEffectAddForm.php, line 46

Class

ImageEffectAddForm
Provides an add form for image effects.

Namespace

Drupal\image\Form

Code

public function buildForm(array $form, FormStateInterface $form_state, ImageStyleInterface $image_style = NULL, $image_effect = NULL) {
  $form = parent::buildForm($form, $form_state, $image_style, $image_effect);
  $form['#title'] = $this->t('Add %label effect to style %style', [
    '%label' => $this->imageEffect
      ->label(),
    '%style' => $image_style->label(),
  ]);
  $form['actions']['submit']['#value'] = $this->t('Add effect');
  return $form;
}

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