plugin->test_constructor_gatekeeper(); $institution_id = get_input("institution_id"); $html = ""; $proctors = $TeKe->plugin->users->getInstitutionProctors($institution_id); $i = 0; foreach ($proctors as $proctor) { $i++; $class = $i%2==1?'even':'odd'; $html .= "
"; $html .= ""; $html .= " {$proctor->fullname} ({$proctor->email})"; $html .= "
"; } echo $html; ?>