You are here

function ulogin_hook_info in uLogin (advanced version) 7

Same name and namespace in other branches
  1. 8 ulogin.module \ulogin_hook_info()

Implements hook_hook_info().

File

./ulogin.module, line 10
Main file for the uLogin module.

Code

function ulogin_hook_info() {
  $hooks = array(
    'ulogin_username_alter',
  );
  return array_fill_keys($hooks, array(
    'group' => 'ulogin',
  ));
}