You are here

public function IconsetFinderService::getInstallDirs in Social Media Links Block and Field 8.2

Get the directories where iconsets should be saved.

Return value

array The paths to the directories where iconsets should be saved.

File

src/IconsetFinderService.php, line 100

Class

IconsetFinderService
Service class to detect the files of the iconsets/ in various directories.

Namespace

Drupal\social_media_links

Code

public function getInstallDirs() {
  if (empty($this->installDirs)) {
    $this
      ->setInstallDirs();
  }
  return $this->installDirs;
}