function hook_init_flightpath_degree

Allows a module to act on the degree_plan object AFTER being initialized by the FlightPath module.

This happens BEFORE any of the student's courses are assigned to the degree plan.

File

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

Code

function hook_init_flightpath_degree($student_id, &$degree_plan) {
  // Perform actions

  // Nothing is returned, since we are using pass-by-reference
}