You are here

public function ImageStyleFormBase::__construct in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/image/src/Form/ImageStyleFormBase.php \Drupal\image\Form\ImageStyleFormBase::__construct()

Constructs a base class for image style add and edit forms.

Parameters

\Drupal\Core\Entity\EntityStorageInterface $image_style_storage: The image style entity storage.

1 call to ImageStyleFormBase::__construct()
ImageStyleEditForm::__construct in core/modules/image/src/Form/ImageStyleEditForm.php
Constructs an ImageStyleEditForm object.
1 method overrides ImageStyleFormBase::__construct()
ImageStyleEditForm::__construct in core/modules/image/src/Form/ImageStyleEditForm.php
Constructs an ImageStyleEditForm object.

File

core/modules/image/src/Form/ImageStyleFormBase.php, line 35

Class

ImageStyleFormBase
Base form for image style add and edit forms.

Namespace

Drupal\image\Form

Code

public function __construct(EntityStorageInterface $image_style_storage) {
  $this->imageStyleStorage = $image_style_storage;
}