edu_get_classes

one of the documented procedures in this installation of the ACS
Usage:
edu_get_classes   db   user_id
What it does:
returns a list of class_ids of which user_id is a member
Defined in: /web/philip/tcl/education.tcl

Source code:


    return [database_to_tcl_list $db "
    select class_id 
    from edu_classes c, edu_user_group_map m 
    where m.user_id=$user_id
    and m.group_id=c.class_id"]


philg@mit.edu