You are here

public function SendinblueManager::getAccessKeyToken in SendinBlue 8.2

Same name and namespace in other branches
  1. 8 src/SendinblueManager.php \Drupal\sendinblue\SendinblueManager::getAccessKeyToken()

Get the access token store in configuration.

Return value

string The SiB access token

File

src/SendinblueManager.php, line 287

Class

SendinblueManager
Basic manager of module.

Namespace

Drupal\sendinblue

Code

public function getAccessKeyToken() {
  return $this->configFactory
    ->get(self::CONFIG_SETTINGS)
    ->get(self::ACCESS_TOKEN);
}