You are here

function og_menu_alter in Organic groups 6.2

Same name and namespace in other branches
  1. 6 og.module \og_menu_alter()

Implementation of hook_menu_alter().

File

./og.module, line 192
Code for the Organic Groups module.

Code

function og_menu_alter(&$menu) {

  // If og_access is disabled, we at least add back the edit tab for group admins to edit their posts.
  $menu['node/%node/edit']['access callback'] = 'og_menu_access_node_edit';
  $menu['node/%node/edit']['access arguments'] = array(
    1,
  );
}