You are here

function simplenews_statistics_perm in Simplenews Statistics 6.3

Implements hook_perm().

File

./simplenews_statistics.module, line 40
Main simplenews statistics file.

Code

function simplenews_statistics_perm() {
  $perms = array(
    'administer newsletter statistics',
    'view newsletters statistics',
  );
  return $perms;
}