function ldaphelp_arraytohtmllist in LDAP integration 6
File
- ldaphelp/
ldaphelp.module, line 282 - The ldaphelp module is a module to help admins debug ldap_integration modules.
Code
function ldaphelp_arraytohtmllist($array) {
foreach ($array as $key => $value) {
$text .= "<li>{$key}: {$value}</li>\r\n";
}
return "<ul>{$text}</ul>";
}