You are here

function merci_rro_node_type_menu_access in MERCI (Manage Equipment Reservations, Checkout and Inventory) 6

1 string reference to 'merci_rro_node_type_menu_access'
merci_rro_menu in modules/merci_rro/merci_rro.module
Implementation of hook_menu().

File

modules/merci_rro/merci_rro.module, line 37
Hooks and utility functions for MERCI Role Rule Override

Code

function merci_rro_node_type_menu_access($type_name) {
  $merci_settings = merci_load_content_type_settings($type_name);
  if ($merci_settings->type_setting != 'disabled' && user_access('administer MERCI')) {
    return TRUE;
  }

  // if
  return FALSE;
}