You are here

public function ImageToolkitForm::__construct in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/system/src/Form/ImageToolkitForm.php \Drupal\system\Form\ImageToolkitForm::__construct()
  2. 9 core/modules/system/src/Form/ImageToolkitForm.php \Drupal\system\Form\ImageToolkitForm::__construct()

Constructs an ImageToolkitForm object.

Parameters

\Drupal\Core\Config\ConfigFactoryInterface $config_factory: The factory for configuration objects.

\Drupal\Core\ImageToolkit\ImageToolkitManager $manager: The image toolkit plugin manager.

Overrides ConfigFormBase::__construct

File

core/modules/system/src/Form/ImageToolkitForm.php, line 33

Class

ImageToolkitForm
Configures image toolkit settings for this site.

Namespace

Drupal\system\Form

Code

public function __construct(ConfigFactoryInterface $config_factory, ImageToolkitManager $manager) {
  parent::__construct($config_factory);
  foreach ($manager
    ->getAvailableToolkits() as $id => $definition) {
    $this->availableToolkits[$id] = $manager
      ->createInstance($id);
  }
}