You are here

public static function SendinblueManager::isLoggedInV2State in SendinBlue 7.2

Check if current state is logged in V2 API.

Return value

bool A status of login of user.

1 call to SendinblueManager::isLoggedInV2State()
sendiblue_custom_iframe_access in ./sendinblue.module
Check whether it is possible to access or not.

File

includes/sendinblue.manage.inc, line 187
Manage class file.

Class

SendinblueManager
Basic manager of module.

Code

public static function isLoggedInV2State() {
  $sendinblueMailin = new SendinblueMailin();
  return $sendinblueMailin
    ->getApiVersion() === SendinblueMailin::SENDINBLUE_API_VERSION_V2;
}