public function EncryptionProfileForm::__construct in Encrypt 8.3
Constructs a EncryptionProfileForm object.
Parameters
\Drupal\Core\Config\ConfigFactoryInterface $config_factory: The config factory.
\Drupal\Encrypt\EncryptService $encrypt_service: The lazy context repository service.
File
- src/
Form/ EncryptionProfileForm.php, line 57
Class
- EncryptionProfileForm
- Provides the form to add / edit an EncryptionProfile entity.
Namespace
Drupal\encrypt\FormCode
public function __construct(ConfigFactoryInterface $config_factory, EncryptService $encrypt_service) {
$this->configFactory = $config_factory;
$this->encryptService = $encrypt_service;
}