You are here

function ajax_register_block_info in Ajax Login/Register 7.4

Implements hook_block_info().

File

./ajax_register.module, line 57

Code

function ajax_register_block_info() {

  // Block with three links (login, register, restore password).
  $blocks['ajax_register_block'] = array(
    'info' => t('Ajax Register links'),
    'cache' => DRUPAL_CACHE_GLOBAL,
  );
  return $blocks;
}