You are here

fontawesome_iconpicker_widget.module in Font Awesome Icons 8.2

Module for integration of iconpicker with Font Awesome.

File

modules/fontawesome_iconpicker_widget/fontawesome_iconpicker_widget.module
View source
<?php

/**
 * @file
 * Module for integration of iconpicker with Font Awesome.
 */

/**
 * Check to make sure that the iconpicker library is installed.
 *
 * @return bool
 *   Flag indicating if the library is properly installed.
 */
function fontawesome_iconpicker_widget_check_installed() {
  $iconpicker_library = \Drupal::service('library.discovery')
    ->getLibraryByName('fontawesome_iconpicker_widget', 'fonticonpicker');
  return file_exists(DRUPAL_ROOT . '/' . $iconpicker_library['js'][0]['data']);
}

Functions

Namesort descending Description
fontawesome_iconpicker_widget_check_installed Check to make sure that the iconpicker library is installed.