function hook_group_load
Search API
Allows modules to act after a group object has been loaded.
Specifically, this is called at the end of Group::load_group()
See also
File
- includes/
hook.api.php, line 706 - Lists all available hooks within FlightPath's core code.
Code
function hook_group_load(&$group) {
if ($group->group_name == "YXZ") {
$group->is_xyz = TRUE;
}
}