You are here

function auth0_block_info in Auth0 Single Sign On 7.2

Implements hook_block_info().

Define a block with the Auth0 Lock widget.

File

./auth0.module, line 1140

Code

function auth0_block_info() {
  $blocks['auth0_lock'] = array(
    'info' => t('Auth0 Lock widget'),
    'cache' => DRUPAL_CACHE_GLOBAL,
  );
  return $blocks;
}