You are here

function domain_block_info in Domain Access 7.3

Same name and namespace in other branches
  1. 7.2 domain.module \domain_block_info()

Implements hook_block_info().

File

./domain.module, line 513
Core module functions for the Domain Access suite.

Code

function domain_block_info() {
  $blocks = array();
  $blocks['information'] = array(
    'info' => t('Domain access information'),
  );
  $blocks['server'] = array(
    'info' => t('Domain access server information'),
    'cache' => DRUPAL_NO_CACHE,
  );
  $blocks['switcher'] = array(
    'info' => t('Domain switcher'),
  );
  return $blocks;
}