You are here

function dynamic_background_node_perm in Dynamic Background 6

Implementation of hook_perm().

File

modules/dynamic_background_node/dynamic_background_node.module, line 12
This module provides the node adminitrators with the option to use different dynamic background images for each node.

Code

function dynamic_background_node_perm() {
  return array(
    'configure dynamic background nodes',
    'select node background image',
  );
}