You are here

function theme_ldap_authentication_message_not_found in Lightweight Directory Access Protocol (LDAP) 7

Same name and namespace in other branches
  1. 8.2 ldap_authentication/ldap_authentication.theme.inc \theme_ldap_authentication_message_not_found()
  2. 7.2 ldap_authentication/ldap_authentication.theme.inc \theme_ldap_authentication_message_not_found()

Provides a theme callback for user not found messages.

Parameters

$message: A text string containing a translatable "user not found" message

File

ldap_authentication/ldap_authentication.theme.inc, line 117
theming functions for ldap_authentication module

Code

function theme_ldap_authentication_message_not_found($variables) {
  extract($variables);
  return $message;
}