You are here

function js_injector_perm in JS injector 6.2

Same name and namespace in other branches
  1. 6 js_injector.module \js_injector_perm()

Implementation of hook_perm().

File

./js_injector.module, line 116
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',
  );
}