You are here

public function ConfigurationSendinblueForm::__construct in SendinBlue 8

Same name and namespace in other branches
  1. 8.2 src/Form/ConfigurationSendinblueForm.php \Drupal\sendinblue\Form\ConfigurationSendinblueForm::__construct()

Constructs a \Drupal\system\ConfigFormBase object.

Parameters

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

\Drupal\sendinblue\SendinblueManager $sendinblueManager: SendinblueManager.

\Drupal\Core\Cache\CacheBackendInterface $cacheBackend: CacheBackendInterface.

\Drupal\Core\Menu\MenuLinkManagerInterface $menuLinkManager: MenuLinkManagerInterface.

Overrides ConfigFormBase::__construct

File

src/Form/ConfigurationSendinblueForm.php, line 49

Class

ConfigurationSendinblueForm
Parameter Form to login SendinBlue.

Namespace

Drupal\sendinblue\Form

Code

public function __construct(ConfigFactoryInterface $config_factory, SendinblueManager $sendinblueManager, CacheBackendInterface $cacheBackend, MenuLinkManagerInterface $menuLinkManager) {
  parent::__construct($config_factory);
  $this->sendinblueManager = $sendinblueManager;
  $this->cacheBackend = $cacheBackend;
  $this->menuLinkManager = $menuLinkManager;
}