You are here

function og_ui_get_group_admin in Organic groups 7

Same name and namespace in other branches
  1. 7.2 og_ui/og_ui.module \og_ui_get_group_admin()

Get all the group admin menu items.

1 call to og_ui_get_group_admin()
og_ui_group_admin_overview in og_ui/og_ui.admin.inc
Provide an overview of the administrator menu items.

File

og_ui/og_ui.module, line 699
Organic groups UI.

Code

function og_ui_get_group_admin($gid) {
  $data = module_invoke_all('og_ui_get_group_admin', $gid);

  // Allow other modules to alter the menu items.
  drupal_alter('og_ui_get_group_admin', $data, $gid);
  return $data;
}