You are here

public function IconManagerService::getFormattedIconList in Font Awesome Icons 8.2

Get formatted icon list.

Return value

array Formatted list of icons.

Overrides IconManagerServiceInterface::getFormattedIconList

File

modules/fontawesome_iconpicker_widget/src/IconManagerService.php, line 124

Class

IconManagerService
Icon Manager Service for Font Awesome.

Namespace

Drupal\fontawesome_iconpicker_widget

Code

public function getFormattedIconList() {
  $icon_list = $this
    ->formatIconList($this
    ->getIcons());
  return $icon_list;
}