You are here

function domain_nav_check in Domain Access 7.3

Same name and namespace in other branches
  1. 6.2 domain_nav/domain_nav.module \domain_nav_check()
  2. 7.2 domain_nav/domain_nav.module \domain_nav_check()

Menu access check.

Parameters

$access: The status set by our menu checks, which is always TRUE. It defaults to FALSE here because that is a good habit.

1 string reference to 'domain_nav_check'
domain_nav_menu in domain_nav/domain_nav.module
Implements hook_menu()

File

domain_nav/domain_nav.module, line 68
Navigation block and menu options for Domain Access

Code

function domain_nav_check($access = FALSE) {
  return $access;
}