You are here

function css_injector_permission in CSS Injector 7

Same name and namespace in other branches
  1. 7.2 css_injector.module \css_injector_permission()

Implements hook_permission().

File

./css_injector.module, line 206
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_permission() {
  return array(
    'administer css injection' => array(
      'title' => t('Administer CSS Injection'),
    ),
  );
}