You are here

function hook_login_security_display_block_attempts_alter in Login Security 7

Alter the login attempts message and display flag before output.

Parameters

string $message_raw: The related login attempts message that will be displayed.

bool $display_block_attempts: A flag to set whether the message will be displayed or not.

int $current_attempts_count: A simple context information to inform the current count of the attempts.

1 invocation of hook_login_security_display_block_attempts_alter()
login_security_validate in ./login_security.module
Implements hook_validate().

File

./login_security.api.php, line 24
Hooks provided by Login Security module.

Code

function hook_login_security_display_block_attempts_alter(&$message_raw, &$display_block_attempts, $current_attempts_count) {
}