You are here

function icomoon_icon_providers in Icomoon 7

Implements hook_icon_providers().

File

./icomoon.module, line 25
icomoon.module Integrates the Icomoon service as an icon provider for Icon API.

Code

function icomoon_icon_providers() {
  $providers['icomoon'] = array(
    'title' => t('Icomoon'),
    'url' => 'http://icomoon.io/app',
    'default bundle' => array(
      'render' => 'sprite',
      'settings' => icomoon_default_settings(),
    ),
  );
  return $providers;
}