function facetapi_ctools_block_info in Facet API 7
Same name and namespace in other branches
- 7.2 facetapi.block.inc \facetapi_ctools_block_info()
Implements hook_ctools_block_info().
See also
http://drupal.org/node/1669918
File
- ./
facetapi.block.inc, line 71 - Block realm code and hook implementations.
Code
function facetapi_ctools_block_info($module, $delta, &$info) {
// Give the Facet API blocks their own category.
$info['category'] = t('Facet API');
// Allow blocks to be used before the search results in Panels.
$info['render last'] = TRUE;
}