--- loncom/enrollment/localenroll.pm 2011/01/11 22:17:39 1.41 +++ loncom/enrollment/localenroll.pm 2011/10/14 17:13:25 1.43 @@ -1,6 +1,6 @@ # functions to glue school database system into Lon-CAPA for # automated enrollment -# $Id: localenroll.pm,v 1.41 2011/01/11 22:17:39 raeburn Exp $ +# $Id: localenroll.pm,v 1.43 2011/10/14 17:13:25 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -378,7 +378,7 @@ lonnet -> lond -> localenroll.pm) The do a table where columns are course type (official, unofficial or community) and rows are institutional affiliations (e.g., Faculty, Staff, Student etc.). -crsreq_checks() takes three arguments: $dom, $reqtyes, $validations. +crsreq_checks() takes three arguments: $dom, $reqtypes, $validations. $dom - the domain for which validation options are needed. $reqtypes - ref to an ARRAY of course types (i.e., official, unofficial and community. $validations - ref to a hash of a hash which will determine whether "validate" @@ -735,6 +735,9 @@ sub instcode_defaults { keys will be unique IDs (student or faculty/staff ID) values will be either: scalar (username) or an array if a single ID matches multiple usernames. + (d) $lc_users - reference to hash containing LON-CAPA usernames in + in domain $dom, as keys. Needed if institutional + data source only allows query by username. returns 1 parameter - 'ok' if no processing error, or other value if an error occurred. side effects - populates the $instusers and $instids refs to hashes. @@ -745,7 +748,7 @@ sub instcode_defaults { =cut sub allusers_info { - my ($dom,$instusers,$instids) = @_; + my ($dom,$instusers,$instids,$lc_users) = @_; my $outcome = 'ok'; return $outcome; }