function js_injector_perm in JS injector 6
Same name and namespace in other branches
- 6.2 js_injector.module \js_injector_perm()
Implementation of hook_perm().
File
- ./
js_injector.module, line 97 - Allows administrators to inject js into the page output based on configurable rules. Useful for adding simple js tweaks without modifying a site's official theme.
Code
function js_injector_perm() {
return array(
'administer js injection',
);
}