You are here

function _hybridauth_registration_block in HybridAuth Social Login 7.2

1 call to _hybridauth_registration_block()
_hybridauth_window_process_auth in ./hybridauth.pages.inc
Handle the Drupal authentication.

File

./hybridauth.module, line 1254
Main file for the HybridAuth module.

Code

function _hybridauth_registration_block($data) {
  $result = array_filter(module_invoke_all('hybridauth_registration_block', $data));
  if (count($result)) {
    return array_shift($result);
  }
  return FALSE;
}