You are here

function drupalchat_verify_access_callback in DrupalChat 6.2

1 string reference to 'drupalchat_verify_access_callback'
drupalchat_menu in ./drupalchat.module
Implementaiton of hook_menu()

File

./drupalchat.module, line 292
Module code for DrupalChat.

Code

function drupalchat_verify_access_callback($case = 'or', $perm = array()) {
  $check = false;
  if ($case == 'or') {
    foreach ($perm as $p) {
      if (user_access($p)) {
        return true;
      }
    }
  }
  return $check;
}