You are here

function dynamic_background_node_permission in Dynamic Background 7

Implementation of hook_permission().

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_permission() {
  return array(
    'configure node dynamic background' => array(
      'title' => t('Configure node dynamic background'),
    ),
  );
}