function nodejs_get_js_handlers in Node.js integration 7
Same name and namespace in other branches
- 8 nodejs.module \nodejs_get_js_handlers()
- 6 nodejs.module \nodejs_get_js_handlers()
Get a list of javascript handler files.
1 call to nodejs_get_js_handlers()
- nodejs_init in ./
nodejs.module - Implements hook_init().
File
- ./
nodejs.module, line 313
Code
function nodejs_get_js_handlers() {
$handlers = module_invoke_all('nodejs_handlers_info');
drupal_alter('nodejs_js_handlers', $handlers);
return $handlers;
}