You are here

function apachesolr_panels_block_view in Apache Solr Panels 7

Implements hook_block_view().

File

./apachesolr_panels.module, line 69
Integrates Apache Solr Search with Panels.

Code

function apachesolr_panels_block_view($delta) {
  if ($delta == 'search_form' && user_access('search content')) {
    $block['content'] = drupal_get_form('apachesolr_panels_search_block');
    $block['subject'] = t('Search');
    return $block;
  }
}