You are here

function simplenews_statistics_access in Simplenews Statistics 6.3

Access for newsletter statistics.

File

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

Code

function simplenews_statistics_access($node = NULL) {

  // If the user has the global permission, allow access.
  if (user_access('view newsletters statistics')) {
    return TRUE;
  }
  return FALSE;
}