function document_block_info in Document 7
Same name and namespace in other branches
- 8.x 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;
}