You are here

function feeds_xls_permission in Feeds XLS 7

Implements hook_permission().

File

./feeds_xls.module, line 73

Code

function feeds_xls_permission() {
  return array(
    'feeds xls allow download of all entities' => array(
      'title' => t('Feeds XLS allow download of all entities'),
      'description' => t('Allow the user to download all of the site\'s data in an Excel template, bypassing ALL access permissions.'),
      'restrict access' => TRUE,
      'warning' => t('Warning: This permission provides access to ALL entity data stored within this site.'),
    ),
  );
}