You are here

function document_block_info in Document 8.x

Same name and namespace in other branches
  1. 7 document.module \document_block_info()

Implementation of hook_block().

File

./document.module, line 541

Code

function document_block_info() {
  $blocks['document-search-block1'] = array(
    'info' => t('Document Search by author, keywords or type (radio selection)'),
  );
  $blocks['document-search-block2'] = array(
    'info' => t('Document Search by author, keywords or type (drop down type selection)'),
  );
  return $blocks;
}