function hook_fp_get_student_majors

Returns a full listing of the student's majors.

See also

fp_get_student_majors()

1 function implements hook_fp_get_student_majors()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

system_fp_get_student_majors in modules/system/system.module
Implements hook_fp_get_student_majors.

File

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

Code

function hook_fp_get_student_majors($student_cwid, $bool_return_as_full_record = FALSE, $perform_join_with_degrees = TRUE, $bool_skip_directives = TRUE, $bool_check_for_allow_dynamic = TRUE) {

  // Example code from system.module:
  $db = get_global_database_handler();
  $rtn = $db->get_student_majors_from_db($student_cwid, $bool_return_as_full_record, $perform_join_with_degrees, $bool_skip_directives, $bool_check_for_allow_dynamic);

  return $rtn;



}