You are here

public function SendinblueManager::getLists in SendinBlue 8

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

Get lists.

Return value

array An array of lists.

File

src/SendinblueManager.php, line 545

Class

SendinblueManager
Basic manager of module.

Namespace

Drupal\sendinblue

Code

public function getLists() {
  $lists = $this->sendinblueMailin
    ->getLists();
  if ($lists !== NULL) {
    return $lists
      ->getLists();
  }
  return [];
}