function hook_group_load

Allows modules to act after a group object has been loaded.

Specifically, this is called at the end of Group::load_group()

See also

hook_degree_plan_load()

File

includes/hook.api.php, line 634
Lists all available hooks within FlightPath's core code.

Code

function hook_group_load(&$group) {
  if ($group->group_name == "YXZ") {
    $group->is_xyz = TRUE;
  }
}