t('Bootstrap'), 'url' => 'http://getbootstrap.com/components/#glyphicons', ]; return $providers; } /** * Implements hook_icon_bundles(). */ function bootstrap_icon_bundles() { $bundles = []; if (Bootstrap::getTheme()->hasGlyphicons()) { $bundles['bootstrap'] = [ 'render' => 'sprite', 'provider' => 'bootstrap', 'title' => t('Bootstrap'), 'version' => t('Icons by Glyphicons'), 'variations' => [ 'icon-white' => t('White'), ], 'settings' => [ 'tag' => 'span', ], 'icons' => Bootstrap::glyphicons(), ]; } return $bundles; }