function labjs_get_path in LABjs 7
Helper for search for LAB.min.js file.
If our system does not have libraries module, that file must reside at sites/all/libraries/labjs/LAB.min.js. If Libraries API is available, there are more choices.
2 calls to labjs_get_path()
- labjs_advagg_js_groups_alter in ./
labjs.module - Implements hook_advagg_js_groups_alter().
- labjs_init in ./
labjs.module - Implements hook_init().
File
- ./
labjs.module, line 336 - LABjs module
Code
function labjs_get_path() {
return drupal_get_path('module', 'labjs') . '/labjs.min.js';
}