function theme_ldap_authentication_message_not_authenticated in Lightweight Directory Access Protocol (LDAP) 7.2
Same name and namespace in other branches
- 8.2 ldap_authentication/ldap_authentication.theme.inc \theme_ldap_authentication_message_not_authenticated()
- 7 ldap_authentication/ldap_authentication.theme.inc \theme_ldap_authentication_message_not_authenticated()
Provides a theme callback for authentication failure messages.
Parameters
string $message: A text string containing a translatable "authentication failure" message.
Return value
string
File
- ldap_authentication/ldap_authentication.theme.inc, line 151 
- Theming functions for ldap_authentication module.
Code
function theme_ldap_authentication_message_not_authenticated($variables) {
  /** @var string $message */
  extract($variables);
  return $message;
}