function ImageToolkitForm::__construct

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

Constructs a 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);
    }
}

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