You are here

function ldaphelp_arraytohtml in LDAP integration 6

1 call to ldaphelp_arraytohtml()
ldaphelp_get_ldap_server in ldaphelp/ldaphelp_status.inc
Use the LDAP server info to create the status array for theme_status_report

File

ldaphelp/ldaphelp.module, line 289
The ldaphelp module is a module to help admins debug ldap_integration modules.

Code

function ldaphelp_arraytohtml($array) {
  foreach ($array as $key => $value) {
    $text .= "<br/>{$key}: {$value}";
  }
  return $text;
}