You are here

public function AdminConfigureForm::__construct in IP Geolocation Views & Maps 8

Constructs a \Drupal\ip_geoloc\Form\AdminConfigureForm object.

Overrides ConfigFormBase::__construct

File

src/Form/AdminConfigureForm.php, line 28

Class

AdminConfigureForm
Pending doc.

Namespace

Drupal\ip_geoloc\Form

Code

public function __construct(ConfigFactoryInterface $config_factory, MessengerInterface $messenger, Connection $connection, IpGeoLocSession $ipGeolocSession) {
  parent::__construct($config_factory);
  $this->messenger = $messenger;
  $this->connection = $connection;
  $this->ipGeolocSession = $ipGeolocSession;
}