You are here

function css_injector_perm in CSS Injector 6

Implementation of hook_perm().

File

./css_injector.module, line 97
Allows administrators to inject CSS into the page output based on configurable rules. Useful for adding simple CSS tweaks without modifying a site's official theme.

Code

function css_injector_perm() {
  return array(
    'administer css injection',
  );
}