function bootstrap_icon_providers in Express 8
Implements hook_icon_providers().
File
- themes/
contrib/ bootstrap/ icons.inc, line 12 - Icon API support to provide Bootstrap Framework glyphicons.
Code
function bootstrap_icon_providers() {
$providers['bootstrap'] = [
'title' => t('Bootstrap'),
'url' => 'http://getbootstrap.com/components/#glyphicons',
];
return $providers;
}