You are here

public function RotateImageEffect::buildConfigurationForm in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/image/src/Plugin/ImageEffect/RotateImageEffect.php \Drupal\image\Plugin\ImageEffect\RotateImageEffect::buildConfigurationForm()
  2. 9 core/modules/image/src/Plugin/ImageEffect/RotateImageEffect.php \Drupal\image\Plugin\ImageEffect\RotateImageEffect::buildConfigurationForm()

File

core/modules/image/src/Plugin/ImageEffect/RotateImageEffect.php, line 82

Class

RotateImageEffect
Rotates an image resource.

Namespace

Drupal\image\Plugin\ImageEffect

Code

public function buildConfigurationForm(array $form, FormStateInterface $form_state) {
  $form['degrees'] = [
    '#type' => 'number',
    '#default_value' => $this->configuration['degrees'],
    '#title' => t('Rotation angle'),
    '#description' => t('The number of degrees the image should be rotated. Positive numbers are clockwise, negative are counter-clockwise.'),
    '#field_suffix' => '°',
    '#required' => TRUE,
  ];
  $form['bgcolor'] = [
    '#type' => 'textfield',
    '#default_value' => $this->configuration['bgcolor'],
    '#title' => t('Background color'),
    '#description' => t('The background color to use for exposed areas of the image. Use web-style hex colors (#FFFFFF for white, #000000 for black). Leave blank for transparency on image types that support it.'),
    '#size' => 7,
    '#maxlength' => 7,
  ];
  $form['random'] = [
    '#type' => 'checkbox',
    '#default_value' => $this->configuration['random'],
    '#title' => t('Randomize'),
    '#description' => t('Randomize the rotation angle for each image. The angle specified above is used as a maximum.'),
  ];
  return $form;
}