public function ImageEffectFormBase::buildForm in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/image/src/Form/ImageEffectFormBase.php \Drupal\image\Form\ImageEffectFormBase::buildForm()
Parameters
\Drupal\image\ImageStyleInterface $image_style: The image style.
string $image_effect: The image effect ID.
Return value
array The form structure.
Throws
\Symfony\Component\HttpKernel\Exception\NotFoundHttpException
Overrides FormInterface::buildForm
2 calls to ImageEffectFormBase::buildForm()
- ImageEffectAddForm::buildForm in core/modules/ image/ src/ Form/ ImageEffectAddForm.php 
- Form constructor.
- ImageEffectEditForm::buildForm in core/modules/ image/ src/ Form/ ImageEffectEditForm.php 
- Form constructor.
2 methods override ImageEffectFormBase::buildForm()
- ImageEffectAddForm::buildForm in core/modules/ image/ src/ Form/ ImageEffectAddForm.php 
- Form constructor.
- ImageEffectEditForm::buildForm in core/modules/ image/ src/ Form/ ImageEffectEditForm.php 
- Form constructor.
File
- core/modules/ image/ src/ Form/ ImageEffectFormBase.php, line 57 
- Contains \Drupal\image\Form\ImageEffectFormBase.
Class
- ImageEffectFormBase
- Provides a base form for image effects.
Namespace
Drupal\image\FormCode
public function buildForm(array $form, FormStateInterface $form_state, ImageStyleInterface $image_style = NULL, $image_effect = NULL) {
  $this->imageStyle = $image_style;
  try {
    $this->imageEffect = $this
      ->prepareImageEffect($image_effect);
  } catch (PluginNotFoundException $e) {
    throw new NotFoundHttpException("Invalid effect id: '{$image_effect}'.");
  }
  $request = $this
    ->getRequest();
  if (!$this->imageEffect instanceof ConfigurableImageEffectInterface) {
    throw new NotFoundHttpException();
  }
  $form['#attached']['library'][] = 'image/admin';
  $form['uuid'] = array(
    '#type' => 'value',
    '#value' => $this->imageEffect
      ->getUuid(),
  );
  $form['id'] = array(
    '#type' => 'value',
    '#value' => $this->imageEffect
      ->getPluginId(),
  );
  $form['data'] = $this->imageEffect
    ->buildConfigurationForm(array(), $form_state);
  $form['data']['#tree'] = TRUE;
  // Check the URL for a weight, then the image effect, otherwise use default.
  $form['weight'] = array(
    '#type' => 'hidden',
    '#value' => $request->query
      ->has('weight') ? (int) $request->query
      ->get('weight') : $this->imageEffect
      ->getWeight(),
  );
  $form['actions'] = array(
    '#type' => 'actions',
  );
  $form['actions']['submit'] = array(
    '#type' => 'submit',
    '#button_type' => 'primary',
  );
  $form['actions']['cancel'] = array(
    '#type' => 'link',
    '#title' => $this
      ->t('Cancel'),
    '#url' => $this->imageStyle
      ->urlInfo('edit-form'),
    '#attributes' => [
      'class' => [
        'button',
      ],
    ],
  );
  return $form;
}