You are here

function dynamic_background_perm in Dynamic Background 6

Implementation of hook_perm().

File

./dynamic_background.module, line 17
This module enables administrators to upload images used as background on the site. The selected background image link is exposed as either $background in the page.tpl file or as /background.css.

Code

function dynamic_background_perm() {
  return array(
    'configure dynamic backgrounds',
    'set dynamic backgrounds',
    'dynamic backgrounds css',
  );
}