You are here

function userone_admin_access in User One 6

Same name and namespace in other branches
  1. 7 userone.module \userone_admin_access()
1 string reference to 'userone_admin_access'
userone_menu in ./userone.module
Implementation of hook_menu().

File

./userone.module, line 208
User One module.

Code

function userone_admin_access() {
  return $GLOBALS['user']->uid == 1 ? TRUE : FALSE;
}