function bootstrap_library_loaded in Bootstrap Library 7
Check if the Bootstrap library has been loaded.
Return value
A boolean indicating the loaded status.
File
- ./
bootstrap_library.module, line 270 - Primarily Drupal hooks.
Code
function bootstrap_library_loaded() {
if (($library = libraries_load('bootstrap')) && !empty($library['loaded'])) {
return TRUE;
}
else {
return FALSE;
}
}