You are here

function search_api_saved_searches_ctools_block_info in Search API Saved Searches 7

Implements hook_ctools_block_info().

File

./search_api_saved_searches.module, line 698
Offers the ability to save searches and be notified of new results.

Code

function search_api_saved_searches_ctools_block_info($module, $delta, &$info) {
  $info['category'] = t('Search API Saved Searches');

  // Allow blocks to be used before the search results in Panels.
  $info['render last'] = TRUE;
}