You are here

function dynamic_background_views_permission in Dynamic Background 7

Implementation of hook_perm().

File

modules/dynamic_background_views/dynamic_background_views.module, line 14
This module implements the views extension for dynamic background.

Code

function dynamic_background_views_permission() {
  return array(
    'configure views dynamic background' => array(
      'title' => t('Configure views dynamic background'),
    ),
    'views selection of background' => array(
      'title' => t('Allow selection of backgrounds in views'),
    ),
  );
}