AlkantarClanX12

Your IP : 216.73.217.128


Current Path : /var/www/concellodapobradobrollon.gal/web/modules/user/tests/
Upload File :
Current File : /var/www/concellodapobradobrollon.gal/web/modules/user/tests/user_email_validation_test.module

<?php

/**
 * @file
 * Dummy module implementing hook_valid_email_address_alter.
 */

/**
 * Implements hook_valid_email_address_alter().
 */
function user_email_validation_test_valid_email_address_alter(&$valid, $mail) {
  $local = '.local';
  // Invalidate all e-mails ending with .local.
  if (substr_compare($mail, $local, -strlen($local)) === 0) {
    $valid = FALSE;
  }
}